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-aa8