diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/AzSdk.RP.props b/sdk/peering/Microsoft.Azure.Management.Peering/AzSdk.RP.props index 0781d8c7067f9..f301c57309d1d 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/AzSdk.RP.props +++ b/sdk/peering/Microsoft.Azure.Management.Peering/AzSdk.RP.props @@ -1,7 +1,7 @@ - Peering_2020-04-01; + Peering_2020-01-01-preview; $(PackageTags);$(CommonTags);$(AzureApiTag); \ No newline at end of file diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/src/Generated/SdkInfo_PeeringManagementClient.cs b/sdk/peering/Microsoft.Azure.Management.Peering/src/Generated/SdkInfo_PeeringManagementClient.cs index 91dc56ee0d399..1a39846e3cea9 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/src/Generated/SdkInfo_PeeringManagementClient.cs +++ b/sdk/peering/Microsoft.Azure.Management.Peering/src/Generated/SdkInfo_PeeringManagementClient.cs @@ -36,16 +36,5 @@ public static IEnumerable> ApiInfo_PeeringManageme }.AsEnumerable(); } } - // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "v2"; - public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4413"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/peering/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=E:\\azure-sdk-for-net\\sdk"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "8b2e977ca30ce0d9b44e8f6b90d569c7a0334d59"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section } } - diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/src/Microsoft.Azure.Management.Peering.csproj b/sdk/peering/Microsoft.Azure.Management.Peering/src/Microsoft.Azure.Management.Peering.csproj index 9cbe92e117349..2a304c9911ee2 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/src/Microsoft.Azure.Management.Peering.csproj +++ b/sdk/peering/Microsoft.Azure.Management.Peering/src/Microsoft.Azure.Management.Peering.csproj @@ -7,12 +7,10 @@ Microsoft.Azure.Management.Peering Microsoft Azure Management Peering library Microsoft.Azure.Management.Peering - 2.1.0 + 2.0.1-preview @@ -23,4 +21,4 @@ - + \ No newline at end of file diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/src/Properties/AssemblyInfo.cs b/sdk/peering/Microsoft.Azure.Management.Peering/src/Properties/AssemblyInfo.cs index a43988e427fae..73c8e88ee7b3f 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/src/Properties/AssemblyInfo.cs +++ b/sdk/peering/Microsoft.Azure.Management.Peering/src/Properties/AssemblyInfo.cs @@ -7,8 +7,8 @@ [assembly: AssemblyTitle("Microsoft Azure Peering Management Library")] [assembly: AssemblyDescription("Provides Microsoft Azure Peering management functions for managing the Microsoft Azure Peering service.")] -[assembly: AssemblyVersion("2.1.0.0")] -[assembly: AssemblyFileVersion("2.1.0.0")] +[assembly: AssemblyVersion("2.0.0.1")] +[assembly: AssemblyFileVersion("2.0.0.1")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/PeeringTests.cs b/sdk/peering/Microsoft.Azure.Management.Peering/tests/PeeringTests.cs index d5f30f5900406..f7b38e5751679 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/PeeringTests.cs +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/PeeringTests.cs @@ -78,7 +78,7 @@ public PeeringTests() /// /// The api version latest. /// - public const string ApiVersionLatest = "2020-04-01"; + public const string ApiVersionLatest = "2020-01-01-preview"; /// /// The peering operations test. @@ -308,18 +308,9 @@ public void CreatePeeringService() try { - var prefix = new PeeringServicePrefix - { - Prefix = "34.56.10.0/24", - PeeringServicePrefixKey = TestUtilities.GenerateGuid().ToString() - }; - - var peeringServicePrefix = this.Client.Prefixes.CreateOrUpdate( - rgname, - name, - prefixName, - prefix.Prefix, - prefix.PeeringServicePrefixKey); + var prefix = new PeeringServicePrefix { Prefix = "10.10.10.0/24", PeeringServicePrefixKey = TestUtilities.GenerateGuid().ToString() }; + + var peeringServicePrefix = this.Client.Prefixes.CreateOrUpdate(rgname, name, prefixName, prefix.Prefix, prefix.PeeringServicePrefixKey); Assert.NotNull(peeringServicePrefix); Assert.Equal(prefixName, peeringServicePrefix.Name); @@ -328,11 +319,10 @@ public void CreatePeeringService() } catch (Exception ex) { - Assert.Contains("BadRequest", ex.Message); + Assert.Contains("NotFound", ex.Message); } finally { - Assert.True(this.DeletePeeringService(name, rgname)); } } } @@ -399,7 +389,7 @@ public void CreateGetListAndDeleteRegisteredPrefix() var rgname = this.CreateResourceGroup().Name; // Create Asn - var subId = this.CreatePeerAsn(asn, $"AS{asn}", isApproved: true, peerName: "FooBar"); + var subId = this.CreatePeerAsn(asn, $"AS{asn}", isApproved: true); // Set prefix var prefix = new PeeringRegisteredPrefix { Prefix = CreateIpv4Address(true) }; @@ -415,20 +405,21 @@ public void CreateGetListAndDeleteRegisteredPrefix() // Create Direct Peering var directConnection = new DirectConnection + { + ConnectionIdentifier = Guid.NewGuid().ToString(), + BandwidthInMbps = 10000, + PeeringDBFacilityId = + loc.Direct.PeeringFacilities + .FirstOrDefault(x => x.PeeringDBFacilityId == 99999) + ?.PeeringDBFacilityId, + SessionAddressProvider = SessionAddressProvider.Peer, + BgpSession = new BgpSession { - ConnectionIdentifier = Guid.NewGuid().ToString(), - BandwidthInMbps = 10000, - PeeringDBFacilityId = - loc.Direct.PeeringFacilities.FirstOrDefault(x => x.PeeringDBFacilityId == 99999) - ?.PeeringDBFacilityId, - SessionAddressProvider = SessionAddressProvider.Peer, - BgpSession = new BgpSession - { - SessionPrefixV4 = prefix.Prefix, MaxPrefixesAdvertisedV4 = 20000 - }, - UseForPeeringService = true - }; - + SessionPrefixV4 = prefix.Prefix, + MaxPrefixesAdvertisedV4 = 20000 + }, + UseForPeeringService = true + }; directPeeringProperties.Connections.Add(directConnection); var peeringModel = new PeeringModel { @@ -453,7 +444,6 @@ public void CreateGetListAndDeleteRegisteredPrefix() var resourceGroupName = this.GetResourceGroup(peering?.Id); var peeringName = this.GetPeeringName(peering?.Id); var registeredPrefixName = $"{peering?.Name}{prefixName}"; - var resource = this.Client.RegisteredPrefixes.CreateOrUpdate( resourceGroupName, peeringName, @@ -480,6 +470,7 @@ public void CreateGetListAndDeleteRegisteredPrefix() } catch (Exception ex) { + Assert.NotNull(ex.Message); } } @@ -495,7 +486,7 @@ public void CreateGetListAndDeleteRegisteredPrefix() /// The create get list and delete registered ans. /// [Fact] - public void CreateGetListAndDeleteRegisteredAsns() + public void CreateGetListAndDeleteRegisteredAns() { using (MockContext context = MockContext.Start(this.GetType().FullName)) { diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateDirectPeering.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateDirectPeering.json index 40fb5eb35cc37..80211cc16f208 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateDirectPeering.json +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateDirectPeering.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/res2568?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL3JlczI1Njg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/res5318?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL3JlczUzMTg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "029f5646-50e6-45ef-927d-db4a9c7dc0df" + "45069524-1305-4959-b552-963341e839ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "fdca0876-bf1d-445d-bbed-d0cc596a87c8" + "2e48ca7e-ab57-464f-ba6e-aa84d9e97fd1" ], "x-ms-correlation-request-id": [ - "fdca0876-bf1d-445d-bbed-d0cc596a87c8" + "2e48ca7e-ab57-464f-ba6e-aa84d9e97fd1" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200512T174150Z:fdca0876-bf1d-445d-bbed-d0cc596a87c8" + "NORTHEUROPE:20200305T173023Z:2e48ca7e-ab57-464f-ba6e-aa84d9e97fd1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 12 May 2020 17:41:50 GMT" + "Thu, 05 Mar 2020 17:30:22 GMT" ], "Content-Length": [ "170" @@ -63,23 +63,23 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res2568\",\r\n \"name\": \"res2568\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5318\",\r\n \"name\": \"res5318\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAzP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 65003,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc65003@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "39d29652-1e16-449c-a2c3-e62805303af5" + "05166f77-d18f-44a9-b470-801ea5004b72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -99,10 +99,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "e617711d-166d-4d0f-ae74-ccbf31d9736c" + "8eeeb6c6-9e0e-43be-b800-569ac313e7cf" ], "Date": [ - "Tue, 12 May 2020 17:41:50 GMT" + "Thu, 05 Mar 2020 17:30:23 GMT" ], "Content-Length": [ "436" @@ -115,19 +115,19 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAzP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8d9e0cdd-0bd1-4fb2-ba56-aebcf7fe0af3" + "4f713a85-b2fa-4d26-8148-56eb87fa2643" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -141,10 +141,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "2d1ed09c-1756-4f21-8ea6-c2644ef706bd" + "0827711b-27de-4371-8732-b247f4ef7a6a" ], "Date": [ - "Tue, 12 May 2020 17:41:50 GMT" + "Thu, 05 Mar 2020 17:30:23 GMT" ], "Content-Length": [ "437" @@ -157,19 +157,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAzP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a9234bc-06f4-4759-a644-bc0f4646cb10" + "57bf8b1f-1fc3-4a51-96f3-fadd0bc487e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -183,10 +183,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "48da6414-eede-4dff-a93f-a6b0ad52412c" + "685cc1c7-e5e4-4d8d-abee-17ab7ed12103" ], "Date": [ - "Tue, 12 May 2020 17:41:50 GMT" + "Thu, 05 Mar 2020 17:30:23 GMT" ], "Content-Length": [ "68" @@ -199,19 +199,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res2568/providers/Microsoft.Peering/peerings/direct_9304?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczI1NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85MzA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5318/providers/Microsoft.Peering/peerings/direct_1650?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczUzMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNjUwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "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\": 10000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"63.153.100.0/30\",\r\n \"maxPrefixesAdvertisedV4\": 20000\r\n },\r\n \"connectionIdentifier\": \"82aaea55-cd94-4275-bf58-022ab65675e7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"centralus\"\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\": 10000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"76.15.193.0/30\",\r\n \"maxPrefixesAdvertisedV4\": 20000\r\n },\r\n \"connectionIdentifier\": \"7095c751-7a3a-407c-ab60-ee5ed385dd8e\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"centralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6caa797a-7740-4fcc-aa2b-c9dbdaf88a53" + "c4cda843-915e-456b-8659-28b5127830b0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -220,7 +220,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "799" + "798" ] }, "ResponseHeaders": { @@ -231,35 +231,35 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "599dba90-1e26-458a-86de-5f53087a87d0" + "832b6c11-7ed5-462b-95d3-dad6cfe697e1" ], "Date": [ - "Tue, 12 May 2020 17:41:50 GMT" + "Thu, 05 Mar 2020 17:30:23 GMT" ], "Content-Length": [ - "1527" + "87" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"63.153.100.0/30\",\r\n \"microsoftSessionIPv4Address\": \"63.153.100.2\",\r\n \"peerSessionIPv4Address\": \"63.153.100.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"82aaea55-cd94-4275-bf58-022ab65675e7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"centralus\",\r\n \"eTag\": \"9644c315-0cdc-4bf0-816d-c722a27f8a49\",\r\n \"name\": \"direct_9304\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res2568/providers/Microsoft.Peering/peerings/direct_9304\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", - "StatusCode": 201 + "ResponseBody": "{\r\n \"code\": \"OperationNotSupported\",\r\n \"message\": \"Peering location not supported\"\r\n}", + "StatusCode": 405 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res2568/providers/Microsoft.Peering/peerings/direct_9304?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczI1NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85MzA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5318/providers/Microsoft.Peering/peerings/direct_1650?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczUzMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNjUwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3ea2b41-c7c7-4b7e-836d-ff36b428b3cc" + "a4cf9b7b-002b-441d-b36c-7072679965f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -273,35 +273,32 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "4f79ce48-c0c5-43fe-bdaf-9a614814b6d1" + "f1e22963-93cd-4836-b8f9-cedd4ad1e2cf" ], "Date": [ - "Tue, 12 May 2020 17:41:50 GMT" + "Thu, 05 Mar 2020 17:30:23 GMT" ], "Content-Length": [ - "1527" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Direct_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": false,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"63.153.100.0/30\",\r\n \"microsoftSessionIPv4Address\": \"63.153.100.2\",\r\n \"peerSessionIPv4Address\": \"63.153.100.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"82aaea55-cd94-4275-bf58-022ab65675e7\"\r\n }\r\n ],\r\n \"useForPeeringService\": false,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"centralus\",\r\n \"eTag\": \"9644c315-0cdc-4bf0-816d-c722a27f8a49\",\r\n \"name\": \"direct_9304\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res2568/providers/Microsoft.Peering/peerings/direct_9304\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res2568/providers/Microsoft.Peering/peerings/direct_9304?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczI1NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85MzA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5318/providers/Microsoft.Peering/peerings/direct_1650?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczUzMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNjUwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85db1127-e0df-4cc6-b41f-a225856d2069" + "9d344d9c-b5e2-415c-ad70-ee462cb41750" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -315,10 +312,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "af9b554f-4d40-4ff8-a5f0-f9ad71c097d2" + "589d0099-bfdb-477c-898f-7e57730d0d99" ], "Date": [ - "Tue, 12 May 2020 17:41:50 GMT" + "Thu, 05 Mar 2020 17:30:23 GMT" ], "Content-Length": [ "68" @@ -331,58 +328,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res2568/providers/Microsoft.Peering/peerings/direct_9304?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczI1NjgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85MzA0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "06491375-2a25-4a6b-9dde-f31cbadac901" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "08424e13-1975-44f1-9585-c44bc7222ee2" - ], - "Date": [ - "Tue, 12 May 2020 17:41:50 GMT" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65003?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAzP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef01268b-32f7-4ad7-8877-b728d7bf6620" + "8febe565-12ad-40e4-9ac5-04016e46cd4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -396,10 +354,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "ca899ced-37ce-40f8-9e89-6023d266d5ec" + "c4ccebc7-795b-462f-9736-b85f89c2bcb9" ], "Date": [ - "Tue, 12 May 2020 17:41:50 GMT" + "Thu, 05 Mar 2020 17:30:23 GMT" ], "Content-Length": [ "0" @@ -411,8 +369,8 @@ ], "Names": { "CreateDirectPeering": [ - "res2568", - "direct_9304" + "res5318", + "direct_1650" ] }, "Variables": { diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateExchangePeering.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateExchangePeering.json index ee95a0a2e31ea..cb833c3c22289 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateExchangePeering.json +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateExchangePeering.json @@ -1,22 +1,88 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6222?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzYyMjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/res9000?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL3JlczkwMDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 6222,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc6222@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"centralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b26bc067-5d32-4515-83b6-8832120ef5bd" + "9df494f6-85c3-4aa6-a535-2820465021cc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f1d08c06-cec1-44d2-a4ed-1df3df437f8a" + ], + "x-ms-correlation-request-id": [ + "f1d08c06-cec1-44d2-a4ed-1df3df437f8a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200127T222146Z:f1d08c06-cec1-44d2-a4ed-1df3df437f8a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 27 Jan 2020 22:21:45 GMT" + ], + "Content-Length": [ + "170" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res9000\",\r\n \"name\": \"res9000\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS2802?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzI4MDI/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2802,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc2802@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "507e8fdf-bb2c-41ac-956c-70556396d329" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,10 +99,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "80e7d779-3b52-46a4-b008-4f273f69ca46" + "0ff36cdd-d515-4dc8-a7d4-fd1d8e732c9f" ], "Date": [ - "Tue, 12 May 2020 17:41:19 GMT" + "Mon, 27 Jan 2020 22:21:46 GMT" ], "Content-Length": [ "432" @@ -45,26 +111,26 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 6222,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc6222@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS6222\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6222\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2802,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc2802@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS2802\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS2802\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6222?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzYyMjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS2802?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzI4MDI/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc1d2697-03ce-4c75-b34a-d665ca4b4184" + "44ac522b-16bb-414d-804b-e22e80089044" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -75,10 +141,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "6bb0f129-8f6a-49cd-92cd-5c9d4c47997d" + "47319830-707c-4268-b1a2-2817cd45a3f7" ], "Date": [ - "Tue, 12 May 2020 17:41:19 GMT" + "Mon, 27 Jan 2020 22:21:46 GMT" ], "Content-Length": [ "433" @@ -87,26 +153,26 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 6222,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc6222@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS6222\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6222\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 2802,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc2802@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS2802\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS2802\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6222?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzYyMjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS2802?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzI4MDI/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7686182-60bc-4ec2-9872-9d0e82f2e231" + "625d845d-a5dc-4a44-b1a7-edcb59b90a85" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -117,10 +183,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "ff9b36ee-b188-4b37-a37f-b9f3489cdc1d" + "431ce1ee-1020-43da-8f0e-a188cc3ad00e" ], "Date": [ - "Tue, 12 May 2020 17:41:21 GMT" + "Mon, 27 Jan 2020 22:22:36 GMT" ], "Content-Length": [ "68" @@ -133,22 +199,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res87/providers/Microsoft.Peering/peerings/exchangepeering6222?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9leGNoYW5nZXBlZXJpbmc2MjIyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res9000/providers/Microsoft.Peering/peerings/exchangepeering2802?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczkwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2V4Y2hhbmdlcGVlcmluZzI4MDI/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.150\",\r\n \"maxPrefixesAdvertisedV4\": 20000\r\n },\r\n \"connectionIdentifier\": \"1a879952-494f-4cf9-837e-006262579ae7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6222\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tfs_6161\": \"Active\"\r\n }\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"peerSessionIPv4Address\": \"10.12.97.151\",\r\n \"maxPrefixesAdvertisedV4\": 20000\r\n },\r\n \"connectionIdentifier\": \"764d85c6-803e-417e-866f-982faf76e54a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS2802\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tfs_3668\": \"Active\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "260087a3-8c91-4b5a-bc6f-81882ba79aec" + "5a727f66-ebe5-4637-b283-ca2d3a9b011c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -165,38 +231,38 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "a6ca3cc0-ba59-47b4-83c3-5bbaaeefddea" + "df0b655c-4a7b-487b-8d70-95799f1f72dc" ], "Date": [ - "Tue, 12 May 2020 17:41:19 GMT" + "Mon, 27 Jan 2020 22:21:46 GMT" ], "Content-Length": [ - "1351" + "1353" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.150\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1a879952-494f-4cf9-837e-006262579ae7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6222\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tfs_6161\": \"Active\"\r\n },\r\n \"eTag\": \"a64881b2-6fd3-4941-b97d-00d7d4385573\",\r\n \"name\": \"exchangepeering6222\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res87/providers/Microsoft.Peering/peerings/exchangepeering6222\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.151\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"764d85c6-803e-417e-866f-982faf76e54a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS2802\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tfs_3668\": \"Active\"\r\n },\r\n \"eTag\": \"a3dd0efc-c7b3-4d52-8641-af5f56d3e7bc\",\r\n \"name\": \"exchangepeering2802\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res9000/providers/Microsoft.Peering/peerings/exchangepeering2802\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res87/providers/Microsoft.Peering/peerings/exchangepeering6222?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9leGNoYW5nZXBlZXJpbmc2MjIyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res9000/providers/Microsoft.Peering/peerings/exchangepeering2802?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczkwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2V4Y2hhbmdlcGVlcmluZzI4MDI/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7337079a-0b79-4311-96ed-78c260e85842" + "84d0f9a1-8b80-4af1-ba30-23861ca9617e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -207,38 +273,38 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "380c4615-b237-411b-90fc-f9308535ca90" + "a258dfb6-6e08-4ce1-a94d-ba507cb69d17" ], "Date": [ - "Tue, 12 May 2020 17:41:21 GMT" + "Mon, 27 Jan 2020 22:21:46 GMT" ], "Content-Length": [ - "1351" + "1353" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.150\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"1a879952-494f-4cf9-837e-006262579ae7\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6222\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tfs_6161\": \"Active\"\r\n },\r\n \"eTag\": \"a64881b2-6fd3-4941-b97d-00d7d4385573\",\r\n \"name\": \"exchangepeering6222\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res87/providers/Microsoft.Peering/peerings/exchangepeering6222\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Basic_Exchange_Free\",\r\n \"tier\": \"Basic\",\r\n \"family\": \"Exchange\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"connections\": [\r\n {\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"10.12.97.128/26\",\r\n \"microsoftSessionIPv4Address\": \"10.12.97.129\",\r\n \"peerSessionIPv4Address\": \"10.12.97.151\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"764d85c6-803e-417e-866f-982faf76e54a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS2802\"\r\n }\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"tfs_3668\": \"Active\"\r\n },\r\n \"eTag\": \"a3dd0efc-c7b3-4d52-8641-af5f56d3e7bc\",\r\n \"name\": \"exchangepeering2802\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res9000/providers/Microsoft.Peering/peerings/exchangepeering2802\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res87/providers/Microsoft.Peering/peerings/exchangepeering6222?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9leGNoYW5nZXBlZXJpbmc2MjIyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res9000/providers/Microsoft.Peering/peerings/exchangepeering2802?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczkwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2V4Y2hhbmdlcGVlcmluZzI4MDI/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "919115b6-cbcb-449b-beb8-bbbb8af37456" + "4ab14782-d01f-4836-8516-73f675079d20" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -249,10 +315,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "ca21e4b4-fe17-4d62-9320-37c236e4a3f1" + "f372c669-7e62-4f89-8ae7-251b63b14d08" ], "Date": [ - "Tue, 12 May 2020 17:41:21 GMT" + "Mon, 27 Jan 2020 22:21:46 GMT" ], "Content-Length": [ "0" @@ -262,22 +328,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res87/providers/Microsoft.Peering/peerings/exchangepeering6222?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5ncy9leGNoYW5nZXBlZXJpbmc2MjIyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res9000/providers/Microsoft.Peering/peerings/exchangepeering2802?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczkwMDAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2V4Y2hhbmdlcGVlcmluZzI4MDI/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7f419d6-dda9-419a-b9ea-f83dcd8cc623" + "4f288d7b-6480-4cb8-a4d1-48a4340ae19a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -288,10 +354,289 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "8bcc709c-31aa-4a23-bbc1-1fd32d51ae08" + "588af5fd-bbc0-4edf-84c9-7dfd68814c4d" + ], + "Date": [ + "Mon, 27 Jan 2020 22:21:46 GMT" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/res9000?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL3JlczkwMDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "819509e6-0ab6-4b0d-b739-fa8cbfd924fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM5MDAwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "54143012-58fa-4279-90e2-b859dbd8afdd" + ], + "x-ms-correlation-request-id": [ + "54143012-58fa-4279-90e2-b859dbd8afdd" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200127T222149Z:54143012-58fa-4279-90e2-b859dbd8afdd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 27 Jan 2020 22:21:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM5MDAwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNU1EQXdMVU5GVGxSU1FVeFZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM5MDAwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14999" + ], + "x-ms-request-id": [ + "109eaf8f-9598-41cf-b5fe-8ae15aa2f4b1" + ], + "x-ms-correlation-request-id": [ + "109eaf8f-9598-41cf-b5fe-8ae15aa2f4b1" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200127T222204Z:109eaf8f-9598-41cf-b5fe-8ae15aa2f4b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 27 Jan 2020 22:22:04 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM5MDAwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNU1EQXdMVU5GVGxSU1FVeFZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://api-dogfood.resources.windows-int.net/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM5MDAwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-request-id": [ + "4c144067-14e7-4a32-b838-dd3b0b62918c" + ], + "x-ms-correlation-request-id": [ + "4c144067-14e7-4a32-b838-dd3b0b62918c" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200127T222220Z:4c144067-14e7-4a32-b838-dd3b0b62918c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 27 Jan 2020 22:22:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM5MDAwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNU1EQXdMVU5GVGxSU1FVeFZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-request-id": [ + "ca7cec64-b564-4878-b4cc-e369748aba47" + ], + "x-ms-correlation-request-id": [ + "ca7cec64-b564-4878-b4cc-e369748aba47" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200127T222235Z:ca7cec64-b564-4878-b4cc-e369748aba47" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 27 Jan 2020 22:22:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1SRVM5MDAwLUNFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFTUlZNNU1EQXdMVU5GVGxSU1FVeFZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpJbjA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-request-id": [ + "f885da1d-656e-44ef-a15f-41487a2b58aa" + ], + "x-ms-correlation-request-id": [ + "f885da1d-656e-44ef-a15f-41487a2b58aa" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200127T222235Z:f885da1d-656e-44ef-a15f-41487a2b58aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 12 May 2020 17:41:21 GMT" + "Mon, 27 Jan 2020 22:22:35 GMT" + ], + "Expires": [ + "-1" ], "Content-Length": [ "0" @@ -301,22 +646,85 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6222?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzYyMjI/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/res9000?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL3JlczkwMDA/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "73611f72-3051-4c82-a40a-0a221914a8ad" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-request-id": [ + "6139e436-5423-473a-b1cc-a1149fc3227a" + ], + "x-ms-correlation-request-id": [ + "6139e436-5423-473a-b1cc-a1149fc3227a" + ], + "x-ms-routing-request-id": [ + "NORTHEUROPE:20200127T222236Z:6139e436-5423-473a-b1cc-a1149fc3227a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 27 Jan 2020 22:22:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "99" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'res9000' could not be found.\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS2802?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzI4MDI/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76630d37-aa21-43e1-b271-0cc9e874fb36" + "c41316f4-c349-4389-a528-7073bf9d3dc2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -327,10 +735,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "b18ddff8-ecb7-4f48-9ebc-092ae73b758b" + "c4b15139-15f0-42c4-a573-82ebdf698076" ], "Date": [ - "Tue, 12 May 2020 17:41:21 GMT" + "Mon, 27 Jan 2020 22:22:36 GMT" ], "Content-Length": [ "0" @@ -342,17 +750,17 @@ ], "Names": { "CreateExchangePeering": [ - "06222" + "02802" ], "CreateResourceGroup": [ - "res87" + "res9000" ], "CreateExchangePeeringModel": [ - "tfs_6161" + "tfs_3668" ] }, "Variables": { "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "ipAddress": "150" + "ipAddress": "151" } } \ No newline at end of file diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetListAndDeleteRegisteredAns.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetListAndDeleteRegisteredAns.json new file mode 100644 index 0000000000000..61d8433d1b7c6 --- /dev/null +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetListAndDeleteRegisteredAns.json @@ -0,0 +1,655 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzU5ODk3P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59897,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc59897@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7cc9917-b76f-44da-80b0-207bb4a0cf27" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "265" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "f8279a40-2007-4311-9b53-c8d8a7635c02" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "436" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59897,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc59897@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS59897\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzU5ODk3P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3cb22c11-1aa3-4c92-a2ea-20f0ca0d0878" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "815f9399-9dba-496c-a9be-6a091f155205" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "437" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59897,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc59897@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS59897\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzU5ODk3P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "30e7167c-5eb8-4f48-beef-5b8f81e584bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "d21bdc9c-eea3-45ac-ba43-69ca44799786" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "437" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 59897,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc59897@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS59897\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzU5ODk3P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2bf1502-2d35-452a-9b74-ab876f6f36c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "c45d9574-b7a9-458b-86f8-d174e831ef08" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&directPeeringType=Edge&api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUVkZ2UmYXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec6e0574-227b-4aaf-8f1e-42bb5ad6d1f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "f72dca4f-b982-468e-9209-94bbe8876cd6" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "70079" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"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\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczc5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNDEyP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "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\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionIdentifier\": \"803b7493-ef91-4417-bb0f-8c3779417c91\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897\"\r\n },\r\n \"directPeeringType\": \"IxRs\"\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"local\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58d89a8c-e6fe-4ee3-8dcf-b2e7664684a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "663" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "db8ca97b-3c8d-4826-bd38-14158a668957" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "1156" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"803b7493-ef91-4417-bb0f-8c3779417c91\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897\"\r\n },\r\n \"directPeeringType\": \"IxRs\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"395777f5-d133-47c0-9aee-e63da677cfc9\",\r\n \"name\": \"direct_1412\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczc5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNDEyP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcce4a5a-dffa-4d51-b69f-6ca5c56e13a3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "a62dab58-8ce2-4107-ba7b-77d337f5b354" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "1156" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"803b7493-ef91-4417-bb0f-8c3779417c91\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897\"\r\n },\r\n \"directPeeringType\": \"IxRs\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"395777f5-d133-47c0-9aee-e63da677cfc9\",\r\n \"name\": \"direct_1412\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczc5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNDEyP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "68975e8f-9261-4d91-9d02-0997d6b3feb5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "7b8fd06f-7509-460a-a2fb-3453b5786dc7" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "1155" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"803b7493-ef91-4417-bb0f-8c3779417c91\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897\"\r\n },\r\n \"directPeeringType\": \"IxRs\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Deleting\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"d19f3cba-c5b2-4399-a8ad-f612215bd599\",\r\n \"name\": \"direct_1412\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412/registeredAsns/direct_1412_59897?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczc5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNDEyL3JlZ2lzdGVyZWRBc25zL2RpcmVjdF8xNDEyXzU5ODk3P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"asn\": 59897\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3662fcc6-13a9-4ce3-a5e9-616a66f49996" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "46" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "99d2e6d0-e20e-4a0a-8391-5e26a75eab45" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"asn\": 59897,\r\n \"peeringServicePrefixKey\": \"9b228e41-ccb3-44f7-b006-76b4f8a7a76f\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"5edf78c1-3b20-43b5-9f9b-fe18ebe2729f\",\r\n \"name\": \"direct_1412_59897\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412/registeredAsns/direct_1412_59897\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredAsns\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412/registeredAsns/direct_1412_59897?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczc5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNDEyL3JlZ2lzdGVyZWRBc25zL2RpcmVjdF8xNDEyXzU5ODk3P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "de9d0ef8-52c1-4b08-a1bd-8885b2f07263" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "2864fc2b-c4fe-485d-8e12-84725bb795cc" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"asn\": 59897,\r\n \"peeringServicePrefixKey\": \"9b228e41-ccb3-44f7-b006-76b4f8a7a76f\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"5edf78c1-3b20-43b5-9f9b-fe18ebe2729f\",\r\n \"name\": \"direct_1412_59897\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412/registeredAsns/direct_1412_59897\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredAsns\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412/registeredAsns/direct_1412_59897?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczc5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNDEyL3JlZ2lzdGVyZWRBc25zL2RpcmVjdF8xNDEyXzU5ODk3P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e226ea5b-d9c5-46c7-b0d0-bbd97a6eaf7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "1f86acca-7506-4209-8c66-c536fb719075" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "465" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"asn\": 59897,\r\n \"peeringServicePrefixKey\": \"9b228e41-ccb3-44f7-b006-76b4f8a7a76f\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"5edf78c1-3b20-43b5-9f9b-fe18ebe2729f\",\r\n \"name\": \"direct_1412_59897\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412/registeredAsns/direct_1412_59897\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredAsns\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412/registeredAsns?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczc5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNDEyL3JlZ2lzdGVyZWRBc25zP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a2c9f6d8-f151-4061-a1b4-ca29d66b059a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "bb27d93d-97be-4077-b9d1-ec24b40374f5" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "534" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"asn\": 59897,\r\n \"peeringServicePrefixKey\": \"9b228e41-ccb3-44f7-b006-76b4f8a7a76f\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"5edf78c1-3b20-43b5-9f9b-fe18ebe2729f\",\r\n \"name\": \"direct_1412_59897\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412/registeredAsns/direct_1412_59897\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredAsns\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412/registeredAsns/direct_1412_59897?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczc5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNDEyL3JlZ2lzdGVyZWRBc25zL2RpcmVjdF8xNDEyXzU5ODk3P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c64ae85b-672b-49c5-b394-a14c6299b9d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "43745959-6e0f-4e6b-8476-562607cf4877" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7908/providers/Microsoft.Peering/peerings/direct_1412?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3Jlczc5MDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8xNDEyP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4c78d9e4-09be-46f0-ab0f-11fb29173648" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "453910e2-c453-47b4-924e-fa494ecce077" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS59897?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzU5ODk3P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "020e407c-c501-40f1-8858-76531972de9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28325.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + ] + }, + "ResponseHeaders": { + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "WWW-Authenticate-dSTS": [ + "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" + ], + "x-ms-request-id": [ + "11f59ae1-685f-414f-952f-f94d4a593292" + ], + "Date": [ + "Thu, 05 Mar 2020 17:54:10 GMT" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "CreateResourceGroup": [ + "res7908" + ], + "CreateGetListAndDeleteRegisteredAns": [ + "direct_1412" + ] + }, + "Variables": { + "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", + "asnInteger": "59897" + } +} \ No newline at end of file diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetListAndDeleteRegisteredAsns.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetListAndDeleteRegisteredAsns.json deleted file mode 100644 index ccfbff61fe519..0000000000000 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetListAndDeleteRegisteredAsns.json +++ /dev/null @@ -1,655 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzk2ND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 964,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc964@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a8789b3d-11dd-4f63-96de-ad57ce23c623" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "261" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "0e165333-e267-4baf-ae1f-562909bfd76b" - ], - "Date": [ - "Tue, 12 May 2020 17:41:35 GMT" - ], - "Content-Length": [ - "428" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 964,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc964@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS964\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzk2ND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "54c369fe-1ca8-44de-8238-a6205d6c949f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "10ce8647-4f51-4a9a-934f-62bfbc5f6833" - ], - "Date": [ - "Tue, 12 May 2020 17:41:35 GMT" - ], - "Content-Length": [ - "429" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 964,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc964@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS964\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzk2ND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f85141c5-e04b-4b54-9525-68422a4801ad" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "5e988d7c-7577-4bb0-9160-66ae8feccdd2" - ], - "Date": [ - "Tue, 12 May 2020 17:41:35 GMT" - ], - "Content-Length": [ - "429" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 964,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc964@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS964\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzk2ND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cd88163f-929f-4b9c-9ae7-5848aa7c0153" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "72a42490-5a35-4a85-ad67-dfddecfa6ada" - ], - "Date": [ - "Tue, 12 May 2020 17:41:36 GMT" - ], - "Content-Length": [ - "68" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n}", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringLocations?kind=Direct&directPeeringType=Edge&api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUVkZ2UmYXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "725522f1-9ceb-45aa-a6fd-6ca0dfc8b760" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "ed0b5b79-24ad-4405-b905-feb488a4636c" - ], - "Date": [ - "Tue, 12 May 2020 17:41:35 GMT" - ], - "Content-Length": [ - "76394" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"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\": \"local\"\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\": \"local\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"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\": \"local\"\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\": \"local\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"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\": \"local\"\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\": \"local\"\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\": \"local\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU0MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8zMDAxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "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\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionIdentifier\": \"e56993d6-276d-47aa-9367-4651df10e99a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964\"\r\n },\r\n \"directPeeringType\": \"IxRs\"\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"local\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7cb70c63-0832-4e1f-9933-207fde5b9d73" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "661" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "82ed7fc9-7983-4f3b-ab89-7a77a99ad82f" - ], - "Date": [ - "Tue, 12 May 2020 17:41:35 GMT" - ], - "Content-Length": [ - "1154" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e56993d6-276d-47aa-9367-4651df10e99a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964\"\r\n },\r\n \"directPeeringType\": \"IxRs\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"fcb81336-645b-4416-9036-c13273ac6d95\",\r\n \"name\": \"direct_3001\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU0MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8zMDAxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "97c164ea-fe9d-4e36-944e-14f4e5b7ba11" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "fb0d7c63-8c33-401c-8df4-794c87d19c55" - ], - "Date": [ - "Tue, 12 May 2020 17:41:35 GMT" - ], - "Content-Length": [ - "1154" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e56993d6-276d-47aa-9367-4651df10e99a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964\"\r\n },\r\n \"directPeeringType\": \"IxRs\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"fcb81336-645b-4416-9036-c13273ac6d95\",\r\n \"name\": \"direct_3001\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU0MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8zMDAxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "385facfb-9e53-4f87-83a1-a439bd21655e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "83cebbec-d666-46b7-a764-c1d92ba0cc93" - ], - "Date": [ - "Tue, 12 May 2020 17:41:36 GMT" - ], - "Content-Length": [ - "1153" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"e56993d6-276d-47aa-9367-4651df10e99a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964\"\r\n },\r\n \"directPeeringType\": \"IxRs\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Deleting\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"d75196bd-c552-4b2f-9252-6b4c0e69bb7a\",\r\n \"name\": \"direct_3001\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001/registeredAsns/direct_3001_964?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU0MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8zMDAxL3JlZ2lzdGVyZWRBc25zL2RpcmVjdF8zMDAxXzk2ND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"asn\": 964\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cad91319-16e8-478e-b0c7-3538de378273" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "44" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "eb7df0dc-380b-4d60-966b-9b13592b2900" - ], - "Date": [ - "Tue, 12 May 2020 17:41:36 GMT" - ], - "Content-Length": [ - "459" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"asn\": 964,\r\n \"peeringServicePrefixKey\": \"8e047122-1f58-460f-85d3-e515987b37e5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"de15ea14-b170-436c-9696-94cc0f2ee0aa\",\r\n \"name\": \"direct_3001_964\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001/registeredAsns/direct_3001_964\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredAsns\"\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001/registeredAsns/direct_3001_964?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU0MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8zMDAxL3JlZ2lzdGVyZWRBc25zL2RpcmVjdF8zMDAxXzk2ND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "951237a2-e2d7-49ca-9640-944a289902ee" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "9357f493-6770-4adb-adb0-ba631aa370c5" - ], - "Date": [ - "Tue, 12 May 2020 17:41:36 GMT" - ], - "Content-Length": [ - "459" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"asn\": 964,\r\n \"peeringServicePrefixKey\": \"8e047122-1f58-460f-85d3-e515987b37e5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"de15ea14-b170-436c-9696-94cc0f2ee0aa\",\r\n \"name\": \"direct_3001_964\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001/registeredAsns/direct_3001_964\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredAsns\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001/registeredAsns/direct_3001_964?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU0MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8zMDAxL3JlZ2lzdGVyZWRBc25zL2RpcmVjdF8zMDAxXzk2ND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "97873e52-9ac3-4734-88a6-816e464c51a0" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "7e55d34c-dcb6-4471-80fc-6bcaeb0c2c83" - ], - "Date": [ - "Tue, 12 May 2020 17:41:36 GMT" - ], - "Content-Length": [ - "459" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"asn\": 964,\r\n \"peeringServicePrefixKey\": \"8e047122-1f58-460f-85d3-e515987b37e5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"de15ea14-b170-436c-9696-94cc0f2ee0aa\",\r\n \"name\": \"direct_3001_964\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001/registeredAsns/direct_3001_964\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredAsns\"\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001/registeredAsns?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU0MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8zMDAxL3JlZ2lzdGVyZWRBc25zP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "78aa5480-a98e-4343-953e-e35f67bc5569" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "36cc4113-2ac5-444f-8c96-61d24925642d" - ], - "Date": [ - "Tue, 12 May 2020 17:41:36 GMT" - ], - "Content-Length": [ - "528" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"asn\": 964,\r\n \"peeringServicePrefixKey\": \"8e047122-1f58-460f-85d3-e515987b37e5\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"de15ea14-b170-436c-9696-94cc0f2ee0aa\",\r\n \"name\": \"direct_3001_964\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001/registeredAsns/direct_3001_964\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredAsns\"\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001/registeredAsns/direct_3001_964?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU0MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8zMDAxL3JlZ2lzdGVyZWRBc25zL2RpcmVjdF8zMDAxXzk2ND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a510a3ca-8d45-4aea-88ae-199aff1bafaf" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "8828498c-4e60-4944-bcce-5cbc93874a87" - ], - "Date": [ - "Tue, 12 May 2020 17:41:36 GMT" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5414/providers/Microsoft.Peering/peerings/direct_3001?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU0MTQvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF8zMDAxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "401faad3-edf0-4763-b122-dc821736b640" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "d12426e9-e5e2-4d09-88f6-bf41cd109822" - ], - "Date": [ - "Tue, 12 May 2020 17:41:36 GMT" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS964?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzk2ND9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0f1a1104-85ab-4079-93fa-e9f015c697d2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "9a0c4aa3-63cc-4456-864b-e3b25d6a2b7c" - ], - "Date": [ - "Tue, 12 May 2020 17:41:36 GMT" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - } - ], - "Names": { - "CreateResourceGroup": [ - "res5414" - ], - "CreateGetListAndDeleteRegisteredAsns": [ - "direct_3001" - ] - }, - "Variables": { - "SubscriptionId": "3e919f9a-4e26-4736-aa8d-d596d9a49239", - "asnInteger": "964" - } -} \ No newline at end of file diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetListAndDeleteRegisteredPrefix.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetListAndDeleteRegisteredPrefix.json index 354dd4f84d917..d3792b1e4b273 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetListAndDeleteRegisteredPrefix.json +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetListAndDeleteRegisteredPrefix.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6737?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY3Mzc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS989?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzk4OT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 6737,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc6737@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"FooBar\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 989,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc989@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cef5d645-1720-466c-97bc-bcb9cb261ffe" + "8274b074-8e33-43e7-8fb7-f8ee65bf84bd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -22,7 +22,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "262" + "261" ] }, "ResponseHeaders": { @@ -33,35 +33,35 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "bd9394f9-a315-4d00-a46a-7c403b5fb9bc" + "7b4ad7a3-b8b4-4133-b074-1b7bf565e1cf" ], "Date": [ - "Tue, 12 May 2020 18:39:18 GMT" + "Fri, 28 Feb 2020 00:00:26 GMT" ], "Content-Length": [ - "431" + "428" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 6737,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc6737@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"FooBar\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS6737\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6737\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 989,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc989@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Pending\"\r\n },\r\n \"name\": \"AS989\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS989\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6737?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY3Mzc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS989?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzk4OT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1d351894-0a9a-4279-818d-7b4ad46beedb" + "d13d93b4-4a8d-46e8-a43b-0b8023972254" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -75,35 +75,35 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "553dbc38-b338-4ae4-a772-b318e11c2965" + "afe33fde-bc68-43f9-a7d7-ad15d9dbfe2f" ], "Date": [ - "Tue, 12 May 2020 18:39:18 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ - "432" + "429" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 6737,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc6737@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"FooBar\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS6737\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6737\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 989,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc989@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Approved\"\r\n },\r\n \"name\": \"AS989\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS989\",\r\n \"type\": \"Microsoft.Peering/peerAsns\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6737?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY3Mzc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS989?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzk4OT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "00a06e6a-28f1-49ea-aa31-7ef6373e987e" + "f56a5838-10b3-43e5-91e5-83aadf9a7921" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -117,10 +117,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "a32514a4-8f57-45d8-91b9-c26a04d9fbac" + "867feaca-f4d5-4fbd-b55c-b6cd4478975f" ], "Date": [ - "Tue, 12 May 2020 18:40:11 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ "68" @@ -133,19 +133,19 @@ "StatusCode": 404 }, { - "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-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmRpcmVjdFBlZXJpbmdUeXBlPUVkZ2UmYXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a38e5eb3-f089-4768-a1e7-a7b51863093f" + "ec6e0574-227b-4aaf-8f1e-42bb5ad6d1f2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -159,35 +159,35 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "a742778e-a2ea-4abb-8c67-18440729e283" + "f72dca4f-b982-468e-9209-94bbe8876cd6" ], "Date": [ - "Tue, 12 May 2020 18:39:18 GMT" + "Thu, 05 Mar 2020 17:54:10 GMT" ], "Content-Length": [ - "76394" + "70079" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"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\": \"local\"\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\": \"local\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"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\": \"local\"\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\": \"local\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"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\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczcyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85NTQ5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF80ODgwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "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\": 10000,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"169.225.51.0/30\",\r\n \"maxPrefixesAdvertisedV4\": 20000\r\n },\r\n \"connectionIdentifier\": \"ddc0947e-3d12-412d-88be-1d8460fdead4\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6737\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"local\"\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\": 10000,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionIdentifier\": \"5b67f329-7027-40be-bec3-045bfeb1116a\"\r\n }\r\n ],\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS989\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\"\r\n },\r\n \"location\": \"local\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1185d117-c5f5-4ff1-9ac1-f686802e4ed6" + "cf8db38c-47ce-4b3a-acb9-99f7346ef181" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -196,7 +196,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "795" + "661" ] }, "ResponseHeaders": { @@ -207,35 +207,35 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "56c6bc97-ffdd-4147-9558-c9b6dd67c44e" + "ad343f66-ca81-4833-8ebb-074f15c492b7" ], "Date": [ - "Tue, 12 May 2020 18:39:19 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ - "1524" + "1154" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"169.225.51.0/30\",\r\n \"microsoftSessionIPv4Address\": \"169.225.51.2\",\r\n \"peerSessionIPv4Address\": \"169.225.51.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc0947e-3d12-412d-88be-1d8460fdead4\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6737\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"a1509908-6ccd-49c2-8b1a-4ce30aed0ed7\",\r\n \"name\": \"direct_9549\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549\",\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\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"5b67f329-7027-40be-bec3-045bfeb1116a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS989\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"35dc7cb4-3f37-401d-9d12-e1b8ddcc8a10\",\r\n \"name\": \"direct_4880\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczcyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85NTQ5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF80ODgwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cc915e0-2099-4369-8fea-c6a9d04e0baa" + "e59eb5a8-6032-40a8-8228-2ac35d8906a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -249,35 +249,35 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "2da6e2b6-ac67-4d3d-b818-1087f22d0ed9" + "907e0490-7125-4c24-aba1-1b45a0080c73" ], "Date": [ - "Tue, 12 May 2020 18:39:19 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ - "1524" + "1154" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Direct_Free\",\r\n \"tier\": \"Premium\",\r\n \"family\": \"Direct\",\r\n \"size\": \"Free\"\r\n },\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"connections\": [\r\n {\r\n \"bandwidthInMbps\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Peer\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"bgpSession\": {\r\n \"sessionPrefixV4\": \"169.225.51.0/30\",\r\n \"microsoftSessionIPv4Address\": \"169.225.51.2\",\r\n \"peerSessionIPv4Address\": \"169.225.51.1\",\r\n \"sessionStateV4\": \"None\",\r\n \"sessionStateV6\": \"None\",\r\n \"maxPrefixesAdvertisedV4\": 20000,\r\n \"maxPrefixesAdvertisedV6\": 0\r\n },\r\n \"connectionIdentifier\": \"ddc0947e-3d12-412d-88be-1d8460fdead4\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6737\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"a1509908-6ccd-49c2-8b1a-4ce30aed0ed7\",\r\n \"name\": \"direct_9549\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549\",\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\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"5b67f329-7027-40be-bec3-045bfeb1116a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS989\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"35dc7cb4-3f37-401d-9d12-e1b8ddcc8a10\",\r\n \"name\": \"direct_4880\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczcyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85NTQ5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF80ODgwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0880fffc-0648-484a-b85e-9eeffcfc73da" + "db712968-765e-475a-9ecf-92b018162728" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -291,35 +291,35 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "b902c43a-3d22-4cef-a7cb-ac4c95b991cc" + "49bdfa9e-3bee-4589-89ef-995a81ebc17b" ], "Date": [ - "Tue, 12 May 2020 18:40:10 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ - "68" + "1153" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"code\": \"NotFound\",\r\n \"message\": \"Resource does not exist.\"\r\n}", - "StatusCode": 404 + "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\": 10000,\r\n \"provisionedBandwidthInMbps\": 0,\r\n \"sessionAddressProvider\": \"Microsoft\",\r\n \"useForPeeringService\": true,\r\n \"peeringDBFacilityId\": 99999,\r\n \"connectionState\": \"PendingApproval\",\r\n \"connectionIdentifier\": \"5b67f329-7027-40be-bec3-045bfeb1116a\"\r\n }\r\n ],\r\n \"useForPeeringService\": true,\r\n \"peerAsn\": {\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS989\"\r\n },\r\n \"directPeeringType\": \"Edge\"\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"provisioningState\": \"Deleting\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"edffbb1f-066c-4041-98e8-b525e659c029\",\r\n \"name\": \"direct_4880\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880\",\r\n \"type\": \"Microsoft.Peering/peerings\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549/registeredPrefixes/direct_9549prefix_5225?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczcyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85NTQ5L3JlZ2lzdGVyZWRQcmVmaXhlcy9kaXJlY3RfOTU0OXByZWZpeF81MjI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880/registeredPrefixes/direct_4880prefix_7725?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF80ODgwL3JlZ2lzdGVyZWRQcmVmaXhlcy9kaXJlY3RfNDg4MHByZWZpeF83NzI1P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"prefix\": \"75.158.71.0/30\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"prefix\": \"52.78.253.0/30\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0fd23836-4ad3-40e7-8f72-33856e23420f" + "84b88648-796e-4734-9e0f-c015b57fe7b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -339,10 +339,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "b31c1fee-5a9c-4d25-8a0c-1906a8c3e320" + "a1726920-b2c9-47cb-a866-ffeeef14dee3" ], "Date": [ - "Tue, 12 May 2020 18:39:38 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ "535" @@ -351,23 +351,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"prefix\": \"75.158.71.0/30\",\r\n \"prefixValidationState\": \"None\",\r\n \"peeringServicePrefixKey\": \"695ad15a-e667-4083-8d08-39c44ed29f40\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"1c0c4948-3c6b-46b3-a164-42185e085847\",\r\n \"name\": \"direct_9549prefix_5225\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549/registeredPrefixes/direct_9549prefix_5225\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredPrefixes\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"prefix\": \"52.78.253.0/30\",\r\n \"prefixValidationState\": \"None\",\r\n \"peeringServicePrefixKey\": \"268db2f9-29af-4aa0-becf-8d9d6923bbcd\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"435b4318-7245-4595-9f32-61d03423e6e9\",\r\n \"name\": \"direct_4880prefix_7725\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880/registeredPrefixes/direct_4880prefix_7725\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredPrefixes\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549/registeredPrefixes/direct_9549prefix_5225?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczcyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85NTQ5L3JlZ2lzdGVyZWRQcmVmaXhlcy9kaXJlY3RfOTU0OXByZWZpeF81MjI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880/registeredPrefixes/direct_4880prefix_7725?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF80ODgwL3JlZ2lzdGVyZWRQcmVmaXhlcy9kaXJlY3RfNDg4MHByZWZpeF83NzI1P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "383f85c2-d641-4e7c-b145-cc5385af9ccc" + "adee37f3-cb28-4241-a853-8e9fde749cbd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -381,10 +381,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "d1174519-9850-4dda-a18b-e120837602c3" + "5587f97e-d094-4626-869d-4781996345fd" ], "Date": [ - "Tue, 12 May 2020 18:39:39 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ "535" @@ -393,23 +393,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"prefix\": \"75.158.71.0/30\",\r\n \"prefixValidationState\": \"None\",\r\n \"peeringServicePrefixKey\": \"695ad15a-e667-4083-8d08-39c44ed29f40\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"1c0c4948-3c6b-46b3-a164-42185e085847\",\r\n \"name\": \"direct_9549prefix_5225\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549/registeredPrefixes/direct_9549prefix_5225\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredPrefixes\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"prefix\": \"52.78.253.0/30\",\r\n \"prefixValidationState\": \"None\",\r\n \"peeringServicePrefixKey\": \"268db2f9-29af-4aa0-becf-8d9d6923bbcd\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"435b4318-7245-4595-9f32-61d03423e6e9\",\r\n \"name\": \"direct_4880prefix_7725\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880/registeredPrefixes/direct_4880prefix_7725\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredPrefixes\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549/registeredPrefixes/direct_9549prefix_5225?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczcyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85NTQ5L3JlZ2lzdGVyZWRQcmVmaXhlcy9kaXJlY3RfOTU0OXByZWZpeF81MjI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880/registeredPrefixes/direct_4880prefix_7725?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF80ODgwL3JlZ2lzdGVyZWRQcmVmaXhlcy9kaXJlY3RfNDg4MHByZWZpeF83NzI1P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42d2deec-ee24-4727-aa2c-94717423e2a3" + "6afdf361-2bcb-41a2-9b71-db8f7241b0ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -423,10 +423,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "52f3cfa9-6a91-448e-8a5c-011e04e69449" + "8151c0f2-8406-4b6f-89bf-53e38c014234" ], "Date": [ - "Tue, 12 May 2020 18:39:39 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ "68" @@ -439,19 +439,19 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549/registeredPrefixes?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczcyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85NTQ5L3JlZ2lzdGVyZWRQcmVmaXhlcz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880/registeredPrefixes?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF80ODgwL3JlZ2lzdGVyZWRQcmVmaXhlcz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cc530e9-8b89-49c3-940a-3786aa6bf405" + "5f829f29-bbd4-4fc3-a74d-f873e1c92312" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -465,10 +465,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "e211ac23-30a8-4225-9db3-8c4fc06add9f" + "e9a2ec12-905d-4bf0-aa52-2c969a98edeb" ], "Date": [ - "Tue, 12 May 2020 18:39:39 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ "608" @@ -477,23 +477,23 @@ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"prefix\": \"75.158.71.0/30\",\r\n \"prefixValidationState\": \"None\",\r\n \"peeringServicePrefixKey\": \"695ad15a-e667-4083-8d08-39c44ed29f40\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"1c0c4948-3c6b-46b3-a164-42185e085847\",\r\n \"name\": \"direct_9549prefix_5225\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549/registeredPrefixes/direct_9549prefix_5225\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredPrefixes\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"prefix\": \"52.78.253.0/30\",\r\n \"prefixValidationState\": \"None\",\r\n \"peeringServicePrefixKey\": \"268db2f9-29af-4aa0-becf-8d9d6923bbcd\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"435b4318-7245-4595-9f32-61d03423e6e9\",\r\n \"name\": \"direct_4880prefix_7725\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880/registeredPrefixes/direct_4880prefix_7725\",\r\n \"type\": \"Microsoft.Peering/peerings/registeredPrefixes\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549/registeredPrefixes/direct_9549prefix_5225?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczcyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85NTQ5L3JlZ2lzdGVyZWRQcmVmaXhlcy9kaXJlY3RfOTU0OXByZWZpeF81MjI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880/registeredPrefixes/direct_4880prefix_7725?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF80ODgwL3JlZ2lzdGVyZWRQcmVmaXhlcy9kaXJlY3RfNDg4MHByZWZpeF83NzI1P2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51d8d294-e1b7-4145-acdc-818d312f5707" + "19062e04-a669-430e-a196-ad33adf5fb93" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -507,10 +507,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "54e100a3-e800-41d2-8b48-77c794f85d69" + "62fbb18f-c220-4e32-8dc1-d26da0fad52a" ], "Date": [ - "Tue, 12 May 2020 18:39:39 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ "0" @@ -520,19 +520,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res7220/providers/Microsoft.Peering/peerings/direct_9549?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczcyMjAvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF85NTQ5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res5661/providers/Microsoft.Peering/peerings/direct_4880?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczU2NjEvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdzL2RpcmVjdF80ODgwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c943b86-6f24-4231-859b-e392ba5a9d60" + "a6367212-3901-47e6-8681-6e2b04b48c6c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -546,10 +546,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "727c619c-d9cc-4cc0-81dc-b4d617afdb03" + "fa7702de-fedc-47aa-a1ca-3c11877f551f" ], "Date": [ - "Tue, 12 May 2020 18:40:10 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ "0" @@ -559,19 +559,19 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS6737?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY3Mzc/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS989?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzk4OT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b481b104-67b8-4357-8215-b3d9d9cfdb45" + "f157334e-7d2c-4fe0-81fb-ce61995dde7f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" @@ -585,10 +585,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "cad1921b-6f41-444c-a4f2-830aa5081a39" + "9e93068c-3802-4e82-a241-c7662365ed62" ], "Date": [ - "Tue, 12 May 2020 18:40:11 GMT" + "Fri, 28 Feb 2020 00:00:27 GMT" ], "Content-Length": [ "0" @@ -599,13 +599,13 @@ } ], "Names": { - "CreateGetListAndDeleteRegisteredPrefix": [ - "06737", - "prefix_5225", - "direct_9549" - ], "CreateResourceGroup": [ - "res7220" + "res5661" + ], + "CreateGetListAndDeleteRegisteredPrefix": [ + "0989", + "prefix_7725", + "direct_4880" ] }, "Variables": { diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetRemovePeerAsn.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetRemovePeerAsn.json index 10f5926891126..ba79dac18826a 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetRemovePeerAsn.json +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreateGetRemovePeerAsn.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65000?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65000?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 65000,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc65000@contoso.com\",\r\n \"phone\": \"8888988888\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso\",\r\n \"validationState\": \"Pending\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bb9fe746-77b1-4d42-a196-7cb5f5b14358" + "ad21f73b-23f0-4b6b-80df-7505791eb2a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,10 +33,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "d2e53b12-5d08-4cfb-9889-e6c09a7cccaf" + "ae5651d6-bb74-4abb-b6bc-1575c8641b5d" ], "Date": [ - "Tue, 12 May 2020 17:41:40 GMT" + "Fri, 24 Jan 2020 19:25:30 GMT" ], "Content-Length": [ "436" @@ -49,22 +49,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65000?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65000?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eeb91b8f-1ce9-4170-bd16-7e3d8ae8b90f" + "0e7a6166-5e0f-48fa-b76f-44586a9f9c34" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -75,10 +75,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "f071ae9c-1388-4e45-af9e-cc428a227091" + "5281e4c3-fd2d-4250-ba0e-1c60d6c71674" ], "Date": [ - "Tue, 12 May 2020 17:41:40 GMT" + "Fri, 24 Jan 2020 19:25:30 GMT" ], "Content-Length": [ "437" @@ -91,22 +91,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65000?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65000?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "491c44a1-275d-4c33-b274-1eed4c870051" + "3ef989f0-d03d-43c5-baf3-21422d297c77" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -117,10 +117,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "a0f8f191-8401-497f-a979-3d6db46cf0de" + "8194a32d-33f5-4a89-9657-2b7e66eac82c" ], "Date": [ - "Tue, 12 May 2020 17:41:40 GMT" + "Fri, 24 Jan 2020 19:25:30 GMT" ], "Content-Length": [ "437" @@ -133,22 +133,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65000?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65000?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7694d9fe-46e7-4990-aee9-739d5b34b70f" + "6b89ec53-4b84-49a4-81ed-d9c642fd6e5b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -159,10 +159,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "74b2ff71-fa1d-464a-b8bc-239ed5f57f9d" + "3030900b-076c-4b4f-8c83-f72b4c6aaca5" ], "Date": [ - "Tue, 12 May 2020 17:41:40 GMT" + "Fri, 24 Jan 2020 19:25:30 GMT" ], "Content-Length": [ "68" @@ -175,22 +175,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65000?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/AS65000?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9BUzY1MDAwP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eae98ecf-cb42-42a1-861e-6fbba60d9742" + "a1e6d362-846c-4c65-86a9-8235e6fcf466" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -201,10 +201,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "018f8c27-96e7-43e3-b1cc-353e9ce4dfca" + "c4059d9d-dc35-4907-a60d-240dfbfbc284" ], "Date": [ - "Tue, 12 May 2020 17:41:40 GMT" + "Fri, 24 Jan 2020 19:25:30 GMT" ], "Content-Length": [ "0" diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreatePeeringService.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreatePeeringService.json index ef718ebad9e04..f724160742973 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreatePeeringService.json +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/CreatePeeringService.json @@ -1,19 +1,19 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/res4548?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL3JlczQ1NDg/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourcegroups/res1619?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlZ3JvdXBzL3JlczE2MTk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"centralus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "239125da-3198-421c-80a3-6e7bbcb8a51f" + "927bf712-bdbb-44e6-a6cc-a4d5f2ca1c32" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "12d761c2-f423-46ff-8bd1-e2eaf509c08f" + "c40d5c82-bd7c-48b0-af22-af50ff3d7a9f" ], "x-ms-correlation-request-id": [ - "12d761c2-f423-46ff-8bd1-e2eaf509c08f" + "c40d5c82-bd7c-48b0-af22-af50ff3d7a9f" ], "x-ms-routing-request-id": [ - "NORTHEUROPE:20200512T190740Z:12d761c2-f423-46ff-8bd1-e2eaf509c08f" + "NORTHEUROPE:20200129T185553Z:c40d5c82-bd7c-48b0-af22-af50ff3d7a9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 12 May 2020 19:07:39 GMT" + "Wed, 29 Jan 2020 18:55:53 GMT" ], "Content-Length": [ "170" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res4548\",\r\n \"name\": \"res4548\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res1619\",\r\n \"name\": \"res1619\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUxvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZUxvY2F0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f40051b-1ad2-4ce6-a2b1-7f1ebbf7bf0e" + "0fa9de28-cc96-4661-a4a8-9a608f876ae9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -93,38 +93,38 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "5495fe8a-dfe3-471a-8ed2-6a1d7453d977" + "93b8af35-5e51-41ef-b86d-66809947aa36" ], "Date": [ - "Tue, 12 May 2020 19:07:40 GMT" + "Wed, 29 Jan 2020 18:55:53 GMT" ], "Content-Length": [ - "139276" + "470958" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Australian Capital Territory\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Albania\",\r\n \"state\": \"Elbasan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Elbasan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Elbasan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Albania\",\r\n \"state\": \"Durres\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Durres\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Durres\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Albania\",\r\n \"state\": \"Tirane\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tirane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tirane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Albania\",\r\n \"state\": \"Fier\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Fier\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fier\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Albania\",\r\n \"state\": \"Kukes\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kukes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kukes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Albania\",\r\n \"state\": \"Shkoder\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Shkoder\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shkoder\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Albania\",\r\n \"state\": \"Vlore\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vlore\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vlore\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Albania\",\r\n \"state\": \"Korce\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Korce\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Korce\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Albania\",\r\n \"state\": \"Lezhe\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lezhe\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lezhe\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Alger\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Alger\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alger\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Boumerdes\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Boumerdes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Boumerdes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Oran\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Oran\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oran\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Setif\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Setif\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Setif\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Annaba\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Annaba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Annaba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Batna\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Batna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Batna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Blida\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Blida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Chlef\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chlef\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chlef\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Constantine\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Constantine\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Constantine\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Sidi Bel Abbes\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sidi Bel Abbes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sidi Bel Abbes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Tlemcen\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tlemcen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tlemcen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Skikda\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Skikda\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Skikda\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Bejaia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bejaia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bejaia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Tiaret\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tiaret\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tiaret\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Mostaganem\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mostaganem\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mostaganem\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"M'sila\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"M'sila\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/M'sila\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Saida\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Saida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Tipaza\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tipaza\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tipaza\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Mascara\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mascara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mascara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Medea\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Medea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Medea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Algeria\",\r\n \"state\": \"Bouira\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bouira\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bouira\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Andorra\",\r\n \"state\": \"Andorra la Vella\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Andorra la Vella\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Andorra la Vella\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Argentina\",\r\n \"state\": \"Cordoba\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cordoba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cordoba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Argentina\",\r\n \"state\": \"Neuquen\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Neuquen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neuquen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Argentina\",\r\n \"state\": \"La Pampa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"La Pampa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/La Pampa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Argentina\",\r\n \"state\": \"Mendoza\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mendoza\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mendoza\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Argentina\",\r\n \"state\": \"San Juan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Juan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/San Juan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Argentina\",\r\n \"state\": \"Catamarca\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Catamarca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Catamarca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Argentina\",\r\n \"state\": \"San Luis\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Luis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/San Luis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Australia\",\r\n \"state\": \"Queensland\",\r\n \"azureRegion\": \"local\"\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\": \"New South Wales\",\r\n \"azureRegion\": \"local\"\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\": \"South Australia\",\r\n \"azureRegion\": \"local\"\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\": \"Victoria\",\r\n \"azureRegion\": \"local\"\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\": \"Australian Capital Territory\",\r\n \"azureRegion\": \"local\"\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\": \"Western Australia\",\r\n \"azureRegion\": \"local\"\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\": \"Australia\",\r\n \"state\": \"Tasmania\",\r\n \"azureRegion\": \"local\"\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\": \"Austria\",\r\n \"state\": \"Salzburg\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Salzburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salzburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Austria\",\r\n \"state\": \"Tirol\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tirol\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tirol\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Austria\",\r\n \"state\": \"Steiermark\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Steiermark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Steiermark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Austria\",\r\n \"state\": \"Wien\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Wien\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wien\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Austria\",\r\n \"state\": \"Vorarlberg\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vorarlberg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vorarlberg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Austria\",\r\n \"state\": \"Burgenland\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Burgenland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Burgenland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bahamas, The\",\r\n \"state\": \"City of Freeport\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"City of Freeport\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/City of Freeport\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belarus\",\r\n \"state\": \"Hrodzyenskaya Voblasts'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hrodzyenskaya Voblasts'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hrodzyenskaya Voblasts'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belarus\",\r\n \"state\": \"Brestskaya Voblasts'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brestskaya Voblasts'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brestskaya Voblasts'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belarus\",\r\n \"state\": \"Mahilyowskaya Voblasts'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mahilyowskaya Voblasts'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mahilyowskaya Voblasts'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belarus\",\r\n \"state\": \"Vitsyebskaya Voblasts'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vitsyebskaya Voblasts'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vitsyebskaya Voblasts'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belarus\",\r\n \"state\": \"Brestskaya Voblasts’\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brestskaya Voblasts’\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brestskaya Voblasts’\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belarus\",\r\n \"state\": \"Hrodzyenskaya Voblasts’\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hrodzyenskaya Voblasts’\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hrodzyenskaya Voblasts’\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belarus\",\r\n \"state\": \"Vitsyebskaya Voblasts’\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vitsyebskaya Voblasts’\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vitsyebskaya Voblasts’\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Belarus\",\r\n \"state\": \"Mahilyowskaya Voblasts’\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mahilyowskaya Voblasts’\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mahilyowskaya Voblasts’\",\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\": \"local\"\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\": \"Wallonia\",\r\n \"azureRegion\": \"local\"\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\": \"Belgium\",\r\n \"state\": \"Flanders\",\r\n \"azureRegion\": \"local\"\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\": \"Brazil\",\r\n \"state\": \"Sao Paulo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Brazil\",\r\n \"state\": \"Parana\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Parana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Parana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Brazil\",\r\n \"state\": \"Minas Gerais\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Minas Gerais\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Minas Gerais\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Brazil\",\r\n \"state\": \"Espirito Santo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Espirito Santo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Espirito Santo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Brazil\",\r\n \"state\": \"Goias\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Goias\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Goias\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Brazil\",\r\n \"state\": \"Rio de Janeiro\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Brazil\",\r\n \"state\": \"Santa Catarina\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santa Catarina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Santa Catarina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Dobrich\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dobrich\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dobrich\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Haskovo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Haskovo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Haskovo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Varna\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Varna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Varna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Pazardzhik\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pazardzhik\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pazardzhik\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Plovdiv\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Plovdiv\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Plovdiv\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Stara Zagora\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stara Zagora\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stara Zagora\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Blagoevgrad\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Blagoevgrad\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Blagoevgrad\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Burgas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Burgas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Burgas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Pleven\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pleven\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pleven\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Razgrad\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Razgrad\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Razgrad\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Ruse\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ruse\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ruse\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Shumen\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Shumen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shumen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Sliven\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sliven\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sliven\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Gabrovo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gabrovo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gabrovo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Silistra\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Silistra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Silistra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Vratsa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vratsa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vratsa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Pernik\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pernik\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pernik\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Vidin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vidin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vidin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Kyustendil\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kyustendil\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kyustendil\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Lovech\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lovech\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lovech\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Yambol\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Yambol\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yambol\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Bulgaria\",\r\n \"state\": \"Smolyan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Smolyan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Smolyan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cambodia\",\r\n \"state\": \"Tbong Khmum\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tbong Khmum\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tbong Khmum\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cambodia\",\r\n \"state\": \"Svay Rieng\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Svay Rieng\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Svay Rieng\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cambodia\",\r\n \"state\": \"Kampot\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kampot\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kampot\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Canada\",\r\n \"state\": \"Ontario\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ontario\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ontario\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Canada\",\r\n \"state\": \"Quebec\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Quebec\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Quebec\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Canada\",\r\n \"state\": \"British Columbia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"British Columbia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/British Columbia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Canada\",\r\n \"state\": \"Alberta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Alberta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alberta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Canada\",\r\n \"state\": \"New Brunswick\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New Brunswick\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Brunswick\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Canada\",\r\n \"state\": \"Nova Scotia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nova Scotia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nova Scotia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Canada\",\r\n \"state\": \"Prince Edward Island\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prince Edward Island\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Prince Edward Island\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Chile\",\r\n \"state\": \"Region Metropolitana\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Region Metropolitana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Region Metropolitana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Chile\",\r\n \"state\": \"Araucania\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Araucania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Araucania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Chile\",\r\n \"state\": \"Maule\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Maule\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maule\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Chile\",\r\n \"state\": \"Los Rios\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Los Rios\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Los Rios\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Chile\",\r\n \"state\": \"Valparaiso\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Valparaiso\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valparaiso\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Chile\",\r\n \"state\": \"Libertador General Bernardo O'Higgins\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Libertador General Bernardo O'Higgins\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Libertador General Bernardo O'Higgins\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Chile\",\r\n \"state\": \"Coquimbo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Coquimbo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coquimbo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Chile\",\r\n \"state\": \"Atacama\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Atacama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Atacama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"China\",\r\n \"state\": \"Guangdong\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Guangdong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Guangdong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"China\",\r\n \"state\": \"Fujian\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Fujian\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fujian\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"China\",\r\n \"state\": \"Jilin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jilin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jilin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"China\",\r\n \"state\": \"Shandong\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Shandong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Shandong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"China\",\r\n \"state\": \"Zhejiang\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zhejiang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zhejiang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"China\",\r\n \"state\": \"Liaoning\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Liaoning\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Liaoning\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"China\",\r\n \"state\": \"Jiangxi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jiangxi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jiangxi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"China\",\r\n \"state\": \"Guangxi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Guangxi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Guangxi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"China\",\r\n \"state\": \"Hunan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hunan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hunan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"China\",\r\n \"state\": \"Hainan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hainan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hainan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Valle del Cauca\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Valle del Cauca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valle del Cauca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Antioquia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Antioquia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antioquia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Atlantico\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Atlantico\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Atlantico\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Bolivar\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bolivar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bolivar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Boyaca\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Boyaca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Boyaca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Caldas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Caldas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caldas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Caqueta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Caqueta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caqueta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Casanare\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Casanare\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Casanare\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Cauca\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cauca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cauca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Cesar\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cesar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cesar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Cundinamarca\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cundinamarca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cundinamarca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Huila\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Huila\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Huila\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"La Guajira\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"La Guajira\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/La Guajira\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Magdalena\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Magdalena\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Magdalena\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Meta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Meta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Meta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Narino\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Narino\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Narino\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Norte de Santander\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Norte de Santander\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Norte de Santander\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Quindio\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Quindio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Quindio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Risaralda\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Risaralda\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Risaralda\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Santander\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santander\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Santander\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Sucre\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sucre\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sucre\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Tolima\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tolima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tolima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Arauca\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Arauca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arauca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Putumayo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Putumayo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Putumayo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Choco\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Choco\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Choco\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Colombia\",\r\n \"state\": \"Guaviare\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Guaviare\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Guaviare\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"La Habana\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"La Habana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/La Habana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Ciego de Avila\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ciego de Avila\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ciego de Avila\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Cienfuegos\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cienfuegos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cienfuegos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Matanzas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Matanzas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Matanzas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Holguin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Holguin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Holguin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Villa Clara\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Villa Clara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Villa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Artemisa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Artemisa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Artemisa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Santiago de Cuba\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santiago de Cuba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Santiago de Cuba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Camaguey\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Camaguey\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Camaguey\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Pinar del Rio\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pinar del Rio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pinar del Rio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Isla de la Juventud\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Isla de la Juventud\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isla de la Juventud\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Las Tunas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Las Tunas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Las Tunas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Granma\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Granma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Granma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Cuba\",\r\n \"state\": \"Sancti Spiritus\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sancti Spiritus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sancti Spiritus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Denmark\",\r\n \"state\": \"Hovedstaden\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Syddanmark\",\r\n \"azureRegion\": \"local\"\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\": \"Denmark\",\r\n \"state\": \"Sjaelland\",\r\n \"azureRegion\": \"local\"\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\": \"Ecuador\",\r\n \"state\": \"Pichincha\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pichincha\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pichincha\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ecuador\",\r\n \"state\": \"Imbabura\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Imbabura\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Imbabura\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ecuador\",\r\n \"state\": \"Santo Domingo de los Tsachilas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santo Domingo de los Tsachilas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Santo Domingo de los Tsachilas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ecuador\",\r\n \"state\": \"Esmeraldas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Esmeraldas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Esmeraldas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ecuador\",\r\n \"state\": \"Cotopaxi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cotopaxi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cotopaxi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ecuador\",\r\n \"state\": \"Sucumbios\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sucumbios\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sucumbios\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ecuador\",\r\n \"state\": \"Carchi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Carchi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Carchi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ecuador\",\r\n \"state\": \"Napo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Napo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Napo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Egypt\",\r\n \"state\": \"Matruh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Matruh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Matruh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Harjumaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Harjumaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Harjumaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Laane-Virumaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Laane-Virumaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Laane-Virumaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Ida-Virumaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ida-Virumaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ida-Virumaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Tartumaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tartumaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tartumaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Vorumaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vorumaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vorumaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Saaremaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Saaremaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saaremaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Parnumaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Parnumaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Parnumaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Jogevamaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jogevamaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jogevamaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Laanemaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Laanemaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Laanemaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Polvamaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Polvamaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Polvamaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Raplamaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Raplamaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Raplamaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Viljandimaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Viljandimaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Viljandimaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Valgamaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Valgamaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valgamaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Jarvamaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jarvamaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jarvamaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Estonia\",\r\n \"state\": \"Hiiumaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hiiumaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hiiumaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Uusimaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Uusimaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uusimaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Pohjanmaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pohjanmaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pohjanmaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Kainuu\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kainuu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kainuu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Pohjois-Pohjanmaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pohjois-Pohjanmaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pohjois-Pohjanmaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Pohjois-Savo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pohjois-Savo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pohjois-Savo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Varsinais-Suomi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Varsinais-Suomi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Varsinais-Suomi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Paijat-Hame\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Paijat-Hame\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Paijat-Hame\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Etela-Pohjanmaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Etela-Pohjanmaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Etela-Pohjanmaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Keski-Pohjanmaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Keski-Pohjanmaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Keski-Pohjanmaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Etela-Karjala\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Etela-Karjala\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Etela-Karjala\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Etela-Savo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Etela-Savo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Etela-Savo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Keski-Suomi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Keski-Suomi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Keski-Suomi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Kymenlaakso\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kymenlaakso\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kymenlaakso\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Pirkanmaa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pirkanmaa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pirkanmaa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Pohjois-Karjala\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pohjois-Karjala\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pohjois-Karjala\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Satakunta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Satakunta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Satakunta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Lappi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lappi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lappi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Finland\",\r\n \"state\": \"Kanta-Hame\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kanta-Hame\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kanta-Hame\",\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\": \"local\"\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\": \"Germany\",\r\n \"state\": \"Berlin\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Hamburg\",\r\n \"azureRegion\": \"local\"\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\": \"Saarland\",\r\n \"azureRegion\": \"local\"\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\": \"Bremen\",\r\n \"azureRegion\": \"local\"\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\": \"Schleswig-Holstein\",\r\n \"azureRegion\": \"local\"\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\": \"Greece\",\r\n \"state\": \"Anatoliki Makedonia kai Thraki\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Anatoliki Makedonia kai Thraki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Anatoliki Makedonia kai Thraki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Attiki\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Attiki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Attiki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Dytiki Ellada\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dytiki Ellada\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dytiki Ellada\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Dytiki Makedonia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dytiki Makedonia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dytiki Makedonia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Ionia Nisia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ionia Nisia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ionia Nisia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Kentriki Makedonia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kentriki Makedonia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kentriki Makedonia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Kriti\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kriti\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kriti\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Notio Aigaio\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Notio Aigaio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Notio Aigaio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Peloponnisos\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Peloponnisos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Peloponnisos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Sterea Ellada\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sterea Ellada\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sterea Ellada\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Thessalia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Thessalia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Thessalia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Ipeiros\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ipeiros\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ipeiros\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Greece\",\r\n \"state\": \"Voreio Aigaio\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Voreio Aigaio\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Voreio Aigaio\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Bacs-Kiskun\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bacs-Kiskun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bacs-Kiskun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Bekes\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bekes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bekes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Budapest\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Csongrad\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Csongrad\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Csongrad\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Fejer\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Fejer\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Fejer\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Heves\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Heves\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Heves\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Somogy\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Somogy\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Somogy\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Komarom-Esztergom\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Komarom-Esztergom\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Komarom-Esztergom\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Szabolcs-Szatmar-Bereg\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Szabolcs-Szatmar-Bereg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Szabolcs-Szatmar-Bereg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Pecs\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pecs\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pecs\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Pest\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pest\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pest\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Nograd\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nograd\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nograd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Gyor-Moson-Sopron\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gyor-Moson-Sopron\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gyor-Moson-Sopron\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Szeged\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Szeged\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Szeged\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Vas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Veszprem\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Veszprem\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Veszprem\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Debrecen\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Debrecen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Debrecen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Gyor\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gyor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gyor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Miskolc\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Miskolc\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miskolc\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Jasz-Nagykun-Szolnok\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jasz-Nagykun-Szolnok\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jasz-Nagykun-Szolnok\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Zala\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zala\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zala\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Hungary\",\r\n \"state\": \"Tolna\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tolna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tolna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Delhi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Delhi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Haryana\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Haryana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Haryana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Karnataka\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Karnataka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Karnataka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Madhya Pradesh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madhya Pradesh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Madhya Pradesh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Maharashtra\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Maharashtra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maharashtra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Gujarat\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gujarat\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gujarat\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Uttarakhand\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Uttarakhand\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uttarakhand\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Kerala\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kerala\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kerala\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Andhra Pradesh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Andhra Pradesh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Andhra Pradesh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Jammu and Kashmir\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jammu and Kashmir\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jammu and Kashmir\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Goa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Goa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Goa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Rajasthan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rajasthan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rajasthan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Uttar Pradesh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Uttar Pradesh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uttar Pradesh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Himachal Pradesh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Himachal Pradesh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Himachal Pradesh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Chhattisgarh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chhattisgarh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chhattisgarh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Chandigarh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chandigarh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chandigarh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Puducherry\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Puducherry\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Puducherry\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Dadra and Nagar Haveli\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dadra and Nagar Haveli\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dadra and Nagar Haveli\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"India\",\r\n \"state\": \"Daman and Diu\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Daman and Diu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Daman and Diu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Jawa Barat\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jawa Barat\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jawa Barat\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Jawa Tengah\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jawa Tengah\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jawa Tengah\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Banten\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Banten\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Banten\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Sumatera Utara\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sumatera Utara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sumatera Utara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Riau\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Riau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Riau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Kepulauan Riau\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kepulauan Riau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kepulauan Riau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Lampung\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lampung\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lampung\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Jawa Timur\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jawa Timur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jawa Timur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Yogyakarta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Yogyakarta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yogyakarta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Jambi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jambi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jambi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Sumatera Selatan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sumatera Selatan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sumatera Selatan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Sumatera Barat\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sumatera Barat\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sumatera Barat\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Aceh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Aceh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aceh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Kalimantan Barat\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kalimantan Barat\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kalimantan Barat\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Indonesia\",\r\n \"state\": \"Bengkulu\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bengkulu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bengkulu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Dublin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Carlow\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Carlow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Carlow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Cork\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cork\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cork\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Donegal\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Donegal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Donegal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Galway\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Galway\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Galway\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Kerry\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kerry\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kerry\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Kildare\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kildare\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kildare\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Limerick\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Limerick\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Limerick\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Louth\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Louth\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Louth\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Sligo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sligo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sligo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Tipperary\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tipperary\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tipperary\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Waterford\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Waterford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Waterford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Westmeath\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Westmeath\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Westmeath\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Wexford\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Wexford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wexford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Wicklow\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Wicklow\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wicklow\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Monaghan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Monaghan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Monaghan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Cavan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cavan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cavan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Offaly\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Offaly\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Offaly\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Mayo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mayo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mayo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Longford\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Longford\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Longford\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Clare\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Clare\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Clare\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Laois\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Laois\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Laois\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Meath\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Meath\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Meath\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Kilkenny\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kilkenny\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kilkenny\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Roscommon\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Roscommon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Roscommon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ireland\",\r\n \"state\": \"Leitrim\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Leitrim\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leitrim\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Lombardy\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lombardy\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lombardy\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Veneto\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Veneto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Veneto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Emilia-Romagna\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Emilia-Romagna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Emilia-Romagna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Marche\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marche\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marche\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Valle d'Aosta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Valle d'Aosta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valle d'Aosta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Tuscany\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tuscany\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tuscany\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Piedmont\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Piedmont\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Piedmont\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Puglia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Puglia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Puglia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Campania\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Campania\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Campania\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Trentino-Alto Adige\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Trentino-Alto Adige\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trentino-Alto Adige\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Sardegna\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sardegna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sardegna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Molise\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Molise\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Molise\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Calabria\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Calabria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Calabria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Abruzzo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Abruzzo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Abruzzo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Umbria\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Umbria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Umbria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Basilicata\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Basilicata\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Basilicata\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Friuli-Venezia Giulia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Friuli-Venezia Giulia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Friuli-Venezia Giulia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Italy\",\r\n \"state\": \"Valle d’Aosta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Valle d’Aosta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valle d’Aosta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Japan\",\r\n \"state\": \"Fukuoka\",\r\n \"azureRegion\": \"local\"\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\": \"Nagasaki\",\r\n \"azureRegion\": \"local\"\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\": \"Saga\",\r\n \"azureRegion\": \"local\"\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\": \"Tokyo\",\r\n \"azureRegion\": \"local\"\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\": \"Aichi\",\r\n \"azureRegion\": \"local\"\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\": \"Mie\",\r\n \"azureRegion\": \"local\"\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\": \"Gifu\",\r\n \"azureRegion\": \"local\"\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\": \"Hiroshima\",\r\n \"azureRegion\": \"local\"\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\": \"Shizuoka\",\r\n \"azureRegion\": \"local\"\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\": \"Kanagawa\",\r\n \"azureRegion\": \"local\"\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\": \"Osaka\",\r\n \"azureRegion\": \"local\"\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\": \"Akita\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Fukushima\",\r\n \"azureRegion\": \"local\"\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\": \"Gunma\",\r\n \"azureRegion\": \"local\"\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\": \"Hyogo\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Iwate\",\r\n \"azureRegion\": \"local\"\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\": \"Kumamoto\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Miyagi\",\r\n \"azureRegion\": \"local\"\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\": \"Nagano\",\r\n \"azureRegion\": \"local\"\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\": \"Niigata\",\r\n \"azureRegion\": \"local\"\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\": \"Okayama\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Saitama\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Tochigi\",\r\n \"azureRegion\": \"local\"\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\": \"Tottori\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Yamagata\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Japan\",\r\n \"state\": \"Shimane\",\r\n \"azureRegion\": \"local\"\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\": \"Ehime\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Kagawa\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Kochi\",\r\n \"azureRegion\": \"local\"\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\": \"Miyazaki\",\r\n \"azureRegion\": \"local\"\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\": \"Nara\",\r\n \"azureRegion\": \"local\"\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\": \"Oita\",\r\n \"azureRegion\": \"local\"\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\": \"Tokushima\",\r\n \"azureRegion\": \"local\"\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\": \"Wakayama\",\r\n \"azureRegion\": \"local\"\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\": \"Ishikawa\",\r\n \"azureRegion\": \"local\"\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\": \"Korea, South\",\r\n \"state\": \"Sejong\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sejong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sejong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Riga\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Riga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Riga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Cesu Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cesu Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cesu Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Dobeles Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dobeles Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dobeles Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Ogres Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ogres Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ogres Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Saldus Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Saldus Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saldus Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Talsu Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Talsu Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Talsu Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Liepaja\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Liepaja\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Liepaja\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Valmiera\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Valmiera\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valmiera\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Tukuma Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tukuma Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tukuma Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Bauskas Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bauskas Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bauskas Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Daugavpils Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Daugavpils Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Daugavpils Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Kuldigas Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuldigas Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kuldigas Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Vilanu Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vilanu Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vilanu Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Kraslavas Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kraslavas Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kraslavas Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Lubanas Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lubanas Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lubanas Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Viesites Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Viesites Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Viesites Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Madonas Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madonas Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Madonas Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Kandavas Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kandavas Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kandavas Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Livanu Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Livanu Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Livanu Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Jurmala\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jurmala\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jurmala\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Gulbenes Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gulbenes Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gulbenes Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Valkas Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Valkas Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valkas Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Ludzas Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ludzas Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ludzas Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Latvia\",\r\n \"state\": \"Olaines Novads\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Olaines Novads\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Olaines Novads\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Lesotho\",\r\n \"state\": \"Maseru\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Maseru\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maseru\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Lesotho\",\r\n \"state\": \"Mohale's Hoek\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mohale's Hoek\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mohale's Hoek\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Lesotho\",\r\n \"state\": \"Mohale’s Hoek\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mohale’s Hoek\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mohale’s Hoek\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Liechtenstein\",\r\n \"state\": \"Vaduz\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vaduz\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vaduz\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Liechtenstein\",\r\n \"state\": \"Ruggell\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ruggell\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ruggell\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Liechtenstein\",\r\n \"state\": \"Eschen\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Eschen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eschen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Liechtenstein\",\r\n \"state\": \"Gamprin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gamprin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gamprin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Liechtenstein\",\r\n \"state\": \"Balzers\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Balzers\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Balzers\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Liechtenstein\",\r\n \"state\": \"Schaan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Schaan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Schaan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Liechtenstein\",\r\n \"state\": \"Triesen\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Triesen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Triesen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Liechtenstein\",\r\n \"state\": \"Mauren\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mauren\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mauren\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Liechtenstein\",\r\n \"state\": \"Triesenberg\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Triesenberg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Triesenberg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Luxembourg\",\r\n \"state\": \"Luxembourg\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Luxembourg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luxembourg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Luxembourg\",\r\n \"state\": \"Grevenmacher\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Grevenmacher\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grevenmacher\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Luxembourg\",\r\n \"state\": \"Diekirch\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Diekirch\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Diekirch\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Ohrid\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ohrid\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ohrid\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Struga\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Struga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Struga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Kratovo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kratovo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kratovo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Kumanovo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kumanovo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kumanovo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Prilep\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prilep\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Prilep\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Bitola\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bitola\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bitola\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Negotino\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Negotino\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negotino\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Stip\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stip\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stip\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Strumica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Strumica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Strumica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Sveti Nikole\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sveti Nikole\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sveti Nikole\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Veles\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Veles\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Veles\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Tetovo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tetovo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tetovo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Gevgelija\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gevgelija\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gevgelija\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Gostivar\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gostivar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gostivar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Resen\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Resen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Resen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Kocani\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kocani\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kocani\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Radovis\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Radovis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Radovis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Probistip\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Probistip\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Probistip\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Berovo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Berovo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Berovo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Makedonska Kamenica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Makedonska Kamenica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Makedonska Kamenica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Vinica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vinica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vinica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Delcevo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Delcevo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Delcevo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Debar\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Debar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Debar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Kicevo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kicevo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kicevo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Valandovo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Valandovo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valandovo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Macedonia\",\r\n \"state\": \"Aracinovo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Aracinovo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aracinovo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Malaysia\",\r\n \"state\": \"Selangor\",\r\n \"azureRegion\": \"local\"\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\": \"Kuala Lumpur \",\r\n \"azureRegion\": \"local\"\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\": \"Johor\",\r\n \"azureRegion\": \"local\"\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\": \"Kelantan\",\r\n \"azureRegion\": \"local\"\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\": \"Negeri Sembilan\",\r\n \"azureRegion\": \"local\"\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\": \"Kedah\",\r\n \"azureRegion\": \"local\"\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\": \"Perlis\",\r\n \"azureRegion\": \"local\"\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\": \"Pahang\",\r\n \"azureRegion\": \"local\"\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\": \"Melaka\",\r\n \"azureRegion\": \"local\"\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\": \"Perak\",\r\n \"azureRegion\": \"local\"\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\": \"Pulau Pinang\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Terengganu\",\r\n \"azureRegion\": \"local\"\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\": \"Mexico\",\r\n \"state\": \"Mexico\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Nuevo Leon\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nuevo Leon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nuevo Leon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Aguascalientes\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Aguascalientes\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aguascalientes\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Chihuahua\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chihuahua\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chihuahua\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Hidalgo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hidalgo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hidalgo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Baja California\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Baja California\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Baja California\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Puebla\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Puebla\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Puebla\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Coahuila de Zaragoza\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Coahuila de Zaragoza\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Coahuila de Zaragoza\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Durango\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Durango\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Durango\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Guanajuato\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Guanajuato\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Guanajuato\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Jalisco\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jalisco\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jalisco\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Michoacan de Ocampo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Michoacan de Ocampo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Michoacan de Ocampo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Morelos\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Morelos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Morelos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"San Luis Potosi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Luis Potosi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/San Luis Potosi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Sonora\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sonora\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sonora\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Tamaulipas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tamaulipas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tamaulipas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Zacatecas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zacatecas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zacatecas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Colima\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Colima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Colima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Guerrero\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Guerrero\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Guerrero\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Nayarit\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nayarit\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nayarit\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Oaxaca\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Oaxaca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oaxaca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mexico\",\r\n \"state\": \"Tlaxcala\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tlaxcala\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tlaxcala\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Bender\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bender\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bender\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Chisinau\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chisinau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chisinau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Stinga Nistrului\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stinga Nistrului\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stinga Nistrului\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Orhei\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Orhei\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Orhei\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Straseni\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Straseni\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Straseni\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Soroca\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Soroca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Soroca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Drochia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Drochia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Drochia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Anenii Noi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Anenii Noi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Anenii Noi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Cahul\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cahul\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cahul\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Nisporeni\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nisporeni\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nisporeni\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Gagauzia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gagauzia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gagauzia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Taraclia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taraclia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taraclia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Ialoveni\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ialoveni\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ialoveni\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Stefan-Voda\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stefan-Voda\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Stefan-Voda\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Floresti\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Floresti\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Floresti\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Balti\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Balti\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Balti\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Causeni\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Causeni\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Causeni\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Moldova\",\r\n \"state\": \"Criuleni\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Criuleni\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Criuleni\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Montenegro\",\r\n \"state\": \"Podgorica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Podgorica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Podgorica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Montenegro\",\r\n \"state\": \"Tivat\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tivat\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tivat\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Montenegro\",\r\n \"state\": \"Kotor\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kotor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kotor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Montenegro\",\r\n \"state\": \"Bar\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Montenegro\",\r\n \"state\": \"Ulcinj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ulcinj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ulcinj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Montenegro\",\r\n \"state\": \"Budva\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Budva\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Budva\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Montenegro\",\r\n \"state\": \"Bijelo Polje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bijelo Polje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bijelo Polje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Montenegro\",\r\n \"state\": \"Niksic\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Niksic\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Niksic\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Montenegro\",\r\n \"state\": \"Herceg Novi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Herceg Novi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Herceg Novi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Montenegro\",\r\n \"state\": \"Cetinje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cetinje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cetinje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Morocco\",\r\n \"state\": \"Oriental\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Oriental\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oriental\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mozambique\",\r\n \"state\": \"Maputo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Maputo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maputo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Mozambique\",\r\n \"state\": \"Inhambane\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Inhambane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Inhambane\",\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\": \"local\"\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\": \"Drenthe\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Gelderland\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Overijssel\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Wellington\",\r\n \"azureRegion\": \"local\"\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\": \"Bay of Plenty\",\r\n \"azureRegion\": \"local\"\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\": \"Hawke's Bay\",\r\n \"azureRegion\": \"local\"\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\": \"Taranaki\",\r\n \"azureRegion\": \"local\"\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\": \"Canterbury\",\r\n \"azureRegion\": \"local\"\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\": \"Waikato\",\r\n \"azureRegion\": \"local\"\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\": \"Manawatu-Wanganui\",\r\n \"azureRegion\": \"local\"\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\": \"Northland\",\r\n \"azureRegion\": \"local\"\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\": \"West Coast\",\r\n \"azureRegion\": \"local\"\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\": \"Norway\",\r\n \"state\": \"Oslo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Oslo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oslo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Akershus\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Akershus\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Akershus\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Hedmark\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hedmark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hedmark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Vest-Agder\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vest-Agder\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vest-Agder\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Aust-Agder\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Aust-Agder\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aust-Agder\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Buskerud\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Buskerud\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buskerud\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Hordaland\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hordaland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hordaland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"More og Romsdal\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"More og Romsdal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/More og Romsdal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Oppland\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Oppland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oppland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Ostfold\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ostfold\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ostfold\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Rogaland\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rogaland\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rogaland\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Sogn og Fjordane\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sogn og Fjordane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sogn og Fjordane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Telemark\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Telemark\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Telemark\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Norway\",\r\n \"state\": \"Vestfold\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vestfold\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vestfold\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Pakistan\",\r\n \"state\": \"Punjab\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Punjab\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Punjab\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Pakistan\",\r\n \"state\": \"Islamabad\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Islamabad\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Islamabad\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Panama\",\r\n \"state\": \"Herrera\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Herrera\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Herrera\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Panama\",\r\n \"state\": \"Los Santos\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Los Santos\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Los Santos\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Panama\",\r\n \"state\": \"Panama\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Panama\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Panama\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Panama\",\r\n \"state\": \"Darien\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Darien\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Darien\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Isabela\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Isabela\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isabela\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Negros Oriental\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Negros Oriental\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negros Oriental\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Zamboanga del Sur\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zamboanga del Sur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zamboanga del Sur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Aklan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Aklan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aklan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Batangas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Batangas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Batangas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Cebu\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cebu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cebu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Eastern Samar\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Eastern Samar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eastern Samar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Quezon\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Quezon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Quezon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Albay\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Albay\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Albay\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Laguna\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Laguna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Laguna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Misamis Oriental\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Misamis Oriental\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Misamis Oriental\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Marinduque\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marinduque\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Marinduque\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Lanao del Norte\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lanao del Norte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lanao del Norte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Bulacan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bulacan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bulacan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Benguet\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Benguet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Benguet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Dinagat Islands\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dinagat Islands\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dinagat Islands\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Nueva Ecija\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nueva Ecija\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nueva Ecija\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Surigao del Norte\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Surigao del Norte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Surigao del Norte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Cavite\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cavite\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cavite\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Iloilo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Iloilo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iloilo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Abra\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Abra\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Abra\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Pampanga\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pampanga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pampanga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Zambales\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zambales\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zambales\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Bataan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bataan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bataan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Misamis Occidental\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Misamis Occidental\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Misamis Occidental\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Pangasinan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pangasinan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pangasinan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Tarlac\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tarlac\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tarlac\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Capiz\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Capiz\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Capiz\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Rizal\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rizal\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rizal\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Ilocos Sur\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ilocos Sur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ilocos Sur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Camarines Norte\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Camarines Norte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Camarines Norte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Apayao\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Apayao\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Apayao\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Biliran\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Biliran\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Biliran\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Romblon\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Romblon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Romblon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Agusan del Norte\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Agusan del Norte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Agusan del Norte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Negros Occidental\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Negros Occidental\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Negros Occidental\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Zamboanga del Norte\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zamboanga del Norte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zamboanga del Norte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Masbate\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Masbate\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Masbate\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Northern Samar\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Northern Samar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Northern Samar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Ilocos Norte\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ilocos Norte\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ilocos Norte\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Cagayan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cagayan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cagayan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Nueva Vizcaya\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nueva Vizcaya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nueva Vizcaya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Philippines\",\r\n \"state\": \"Antique\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Antique\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antique\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Lubelskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lubelskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lubelskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Slaskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Slaskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slaskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Mazowieckie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mazowieckie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mazowieckie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Kujawsko-Pomorskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kujawsko-Pomorskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kujawsko-Pomorskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Dolnoslaskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dolnoslaskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dolnoslaskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Lodzkie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lodzkie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lodzkie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Lubuskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lubuskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lubuskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Malopolskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Malopolskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Malopolskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Opolskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Opolskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Opolskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Podkarpackie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Podkarpackie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Podkarpackie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Podlaskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Podlaskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Podlaskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Pomorskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pomorskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pomorskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Swietokrzyskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Swietokrzyskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Swietokrzyskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Warminsko-Mazurskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Warminsko-Mazurskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Warminsko-Mazurskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Wielkopolskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Wielkopolskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Wielkopolskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Poland\",\r\n \"state\": \"Zachodniopomorskie\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zachodniopomorskie\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zachodniopomorskie\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Portugal\",\r\n \"state\": \"Coimbra\",\r\n \"azureRegion\": \"local\"\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\": \"Porto\",\r\n \"azureRegion\": \"local\"\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\": \"Viana do Castelo\",\r\n \"azureRegion\": \"local\"\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\": \"Aveiro\",\r\n \"azureRegion\": \"local\"\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\": \"Braga\",\r\n \"azureRegion\": \"local\"\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\": \"Faro\",\r\n \"azureRegion\": \"local\"\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\": \"Leiria\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Santarem\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Viseu\",\r\n \"azureRegion\": \"local\"\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\": \"Portugal\",\r\n \"state\": \"Beja\",\r\n \"azureRegion\": \"local\"\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\": \"Castelo Branco\",\r\n \"azureRegion\": \"local\"\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\": \"Evora\",\r\n \"azureRegion\": \"local\"\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\": \"Guarda\",\r\n \"azureRegion\": \"local\"\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\": \"Portalegre\",\r\n \"azureRegion\": \"local\"\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\": \"Braganca\",\r\n \"azureRegion\": \"local\"\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\": \"Vila Real\",\r\n \"azureRegion\": \"local\"\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\": \"Romania\",\r\n \"state\": \"Braila\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Braila\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Braila\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Brasov\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brasov\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brasov\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Bucuresti\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bucuresti\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bucuresti\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Cluj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cluj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cluj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Mures\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mures\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mures\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Timis\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Timis\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Timis\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Iasi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Iasi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Iasi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Dolj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dolj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dolj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Bacau\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bacau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bacau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Bistrita-Nasaud\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bistrita-Nasaud\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bistrita-Nasaud\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Galati\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Galati\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Galati\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Maramures\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Maramures\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maramures\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Vaslui\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vaslui\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vaslui\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Calarasi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Calarasi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Calarasi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Satu Mare\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Satu Mare\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Satu Mare\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Teleorman\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Teleorman\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Teleorman\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Giurgiu\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Giurgiu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Giurgiu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Constanta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Constanta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Constanta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Caras-Severin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Caras-Severin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Caras-Severin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Neamt\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Neamt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Neamt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Prahova\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prahova\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Prahova\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Covasna\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Covasna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Covasna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Sibiu\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sibiu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sibiu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Arad\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Arad\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arad\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Buzau\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Buzau\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buzau\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Dambovita\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dambovita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dambovita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Gorj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gorj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gorj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Harghita\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Harghita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Harghita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Ialomita\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ialomita\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ialomita\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Tulcea\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tulcea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tulcea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Hunedoara\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hunedoara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hunedoara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Botosani\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Botosani\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Botosani\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Arges\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Arges\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Arges\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Suceava\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Suceava\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Suceava\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Vrancea\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vrancea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vrancea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Valcea\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Valcea\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valcea\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Alba\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Alba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Alba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Bihor\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bihor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bihor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Mehedinti\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mehedinti\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mehedinti\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Olt\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Olt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Olt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Romania\",\r\n \"state\": \"Salaj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Salaj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salaj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Moskva\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moskva\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moskva\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Penzenskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Penzenskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Penzenskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Primorskiy Kray\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Primorskiy Kray\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Primorskiy Kray\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Nizhegorodskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nizhegorodskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nizhegorodskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Sankt-Peterburg\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sankt-Peterburg\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sankt-Peterburg\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Belgorodskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Belgorodskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Belgorodskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Bryanskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bryanskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bryanskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Chuvashiya\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chuvashiya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chuvashiya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Ivanovskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ivanovskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ivanovskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Kaliningradskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kaliningradskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kaliningradskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Kaluzhskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kaluzhskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kaluzhskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Kareliya\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kareliya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kareliya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Kirovskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kirovskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirovskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Kostromskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kostromskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kostromskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Kurskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kurskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kurskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Leningradskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Leningradskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Leningradskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Lipetskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lipetskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lipetskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Mariy-El\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mariy-El\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mariy-El\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Mordoviya\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mordoviya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mordoviya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Moskovskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moskovskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moskovskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Novgorodskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Novgorodskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Novgorodskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Orlovskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Orlovskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Orlovskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Pskovskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pskovskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pskovskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Ryazanskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ryazanskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ryazanskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Saratovskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Saratovskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Saratovskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Smolenskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Smolenskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Smolenskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Tambovskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tambovskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tambovskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Tatarstan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tatarstan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tatarstan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Tul'skaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tul'skaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tul'skaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Tverskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tverskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tverskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Ul'yanovskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ul'yanovskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ul'yanovskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Vladimirskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vladimirskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vladimirskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Vologodskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vologodskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vologodskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Voronezhskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Voronezhskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Voronezhskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Russia\",\r\n \"state\": \"Yaroslavskaya Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Yaroslavskaya Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yaroslavskaya Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"San Marino\",\r\n \"state\": \"San Marino Citta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Marino Citta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/San Marino Citta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"San Marino\",\r\n \"state\": \"Serravalle\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Serravalle\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Serravalle\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovakia\",\r\n \"state\": \"Bratislavsky\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bratislavsky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bratislavsky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovakia\",\r\n \"state\": \"Nitriansky\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nitriansky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nitriansky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovakia\",\r\n \"state\": \"Trnavsky\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Trnavsky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trnavsky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovakia\",\r\n \"state\": \"Kosicky\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kosicky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kosicky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovakia\",\r\n \"state\": \"Zilinsky\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zilinsky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zilinsky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovakia\",\r\n \"state\": \"Banskobystricky\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Banskobystricky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Banskobystricky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovakia\",\r\n \"state\": \"Presovsky\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Presovsky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Presovsky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovakia\",\r\n \"state\": \"Trenciansky\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Trenciansky\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trenciansky\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ljubljana\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ljubljana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ljubljana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Bohinj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bohinj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bohinj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Krsko\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Krsko\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Krsko\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Piran\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Piran\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Piran\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Vrhnika\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vrhnika\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vrhnika\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Celje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Celje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Celje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Kranj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kranj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kranj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Litija\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Litija\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Litija\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Maribor\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Maribor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maribor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Nova Gorica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nova Gorica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nova Gorica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Novo Mesto\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Novo Mesto\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Novo Mesto\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Zagorje ob Savi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zagorje ob Savi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zagorje ob Savi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Velenje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Velenje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Velenje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Koper\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Koper\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Koper\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ravne na Koroskem\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ravne na Koroskem\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ravne na Koroskem\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Jesenice\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jesenice\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jesenice\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Izola\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Izola\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Izola\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Radovljica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Radovljica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Radovljica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Selnica ob Dravi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Selnica ob Dravi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Selnica ob Dravi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Zalec\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zalec\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zalec\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Dol pri Ljubljani\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dol pri Ljubljani\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dol pri Ljubljani\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Kidricevo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kidricevo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kidricevo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Domzale\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Domzale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Domzale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ilirska Bistrica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ilirska Bistrica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ilirska Bistrica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Kamnik\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kamnik\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kamnik\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Postojna\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Postojna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Postojna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sevnica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sevnica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sevnica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Trzin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Trzin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trzin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Gorenja Vas-Poljane\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gorenja Vas-Poljane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gorenja Vas-Poljane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Idrija\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Idrija\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Idrija\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ajdovscina\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ajdovscina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ajdovscina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Cerknica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cerknica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cerknica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Hrastnik\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hrastnik\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hrastnik\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Crensovci\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Crensovci\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Crensovci\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Zrece\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zrece\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zrece\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sezana\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sezana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sezana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Logatec\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Logatec\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Logatec\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Radece\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Radece\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Radece\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Radenci\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Radenci\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Radenci\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Bovec\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bovec\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bovec\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Tolmin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tolmin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tolmin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Trbovlje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Trbovlje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trbovlje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Skofja Loka\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Skofja Loka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Skofja Loka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Crnomelj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Crnomelj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Crnomelj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Hrpelje-Kozina\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hrpelje-Kozina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hrpelje-Kozina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sostanj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sostanj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sostanj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Lukovica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lukovica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lukovica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Store\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Store\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Store\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Trzic\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Trzic\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trzic\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Medvode\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Medvode\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Medvode\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Pesnica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pesnica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pesnica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Beltinci\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Beltinci\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Beltinci\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Grosuplje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Grosuplje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grosuplje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Rogaska Slatina\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rogaska Slatina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rogaska Slatina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sencur\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sencur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sencur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sredisce ob Dravi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sredisce ob Dravi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sredisce ob Dravi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Cerklje na Gorenjskem\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cerklje na Gorenjskem\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cerklje na Gorenjskem\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ziri\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ziri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ziri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Lasko\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lasko\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lasko\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Bled\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bled\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bled\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ptuj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ptuj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ptuj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sempeter-Vrtojba\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sempeter-Vrtojba\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sempeter-Vrtojba\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Zuzemberk\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zuzemberk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zuzemberk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Naklo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Naklo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Naklo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Murska Sobota\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Murska Sobota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Murska Sobota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Dobje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dobje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dobje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Dravograd\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dravograd\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dravograd\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Kungota\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kungota\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kungota\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Lendava\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lendava\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lendava\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ljutomer\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ljutomer\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ljutomer\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sentilj\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sentilj\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sentilj\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Vojnik\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vojnik\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vojnik\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Slovenske Konjice\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Slovenske Konjice\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slovenske Konjice\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Menges\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Menges\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Menges\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Miklavz na Dravskem Polju\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Miklavz na Dravskem Polju\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Miklavz na Dravskem Polju\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Lovrenc na Pohorju\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lovrenc na Pohorju\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lovrenc na Pohorju\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Borovnica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Borovnica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Borovnica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Braslovce\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Braslovce\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Braslovce\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Dobrova-Polhov Gradec\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dobrova-Polhov Gradec\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dobrova-Polhov Gradec\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Gornja Radgona\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gornja Radgona\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gornja Radgona\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Duplek\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Duplek\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Duplek\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Kocevje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kocevje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kocevje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Moravce\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moravce\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moravce\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Slovenj Gradec\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Slovenj Gradec\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slovenj Gradec\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Tabor\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tabor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tabor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Hoce-Slivnica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hoce-Slivnica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hoce-Slivnica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Jursinci\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jursinci\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Jursinci\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Metlika\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Metlika\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Metlika\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ormoz\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ormoz\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ormoz\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Slovenska Bistrica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Slovenska Bistrica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Slovenska Bistrica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Zirovnica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zirovnica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zirovnica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Oplotnica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Oplotnica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Oplotnica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Loska Dolina\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Loska Dolina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Loska Dolina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Prevalje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prevalje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Prevalje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Lenart\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lenart\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lenart\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Komenda\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Komenda\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Komenda\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Mirna Pec\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mirna Pec\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mirna Pec\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Trebnje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Trebnje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trebnje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Pivka\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pivka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pivka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sentjernej\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sentjernej\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sentjernej\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Smartno ob Paki\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Smartno ob Paki\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Smartno ob Paki\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Podcetrtek\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Podcetrtek\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Podcetrtek\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Starse\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Starse\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Starse\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Benedikt\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Benedikt\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Benedikt\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Podvelka\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Podvelka\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Podvelka\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Brezice\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brezice\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brezice\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Kozje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kozje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kozje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Mislinja\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mislinja\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mislinja\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Kostel\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kostel\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kostel\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Velike Lasce\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Velike Lasce\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Velike Lasce\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sentjur\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sentjur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sentjur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Brezovica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brezovica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brezovica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Cirkulane\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cirkulane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cirkulane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Mozirje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mozirje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mozirje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Polzela\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Polzela\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Polzela\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Brda\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brda\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Brda\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Crna na Koroskem\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Crna na Koroskem\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Crna na Koroskem\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Divaca\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Divaca\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Divaca\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Nazarje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nazarje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nazarje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Zavrc\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zavrc\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zavrc\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Rogasovci\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rogasovci\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rogasovci\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Dobrepolje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dobrepolje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dobrepolje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Poljcane\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Poljcane\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Poljcane\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Mezica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mezica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mezica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Gorje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gorje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gorje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ribnica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ribnica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ribnica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Vipava\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vipava\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vipava\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Grad\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Grad\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Grad\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Straza\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Straza\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Straza\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Cerkvenjak\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cerkvenjak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cerkvenjak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sveti Tomaz\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sveti Tomaz\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sveti Tomaz\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Turnisce\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Turnisce\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Turnisce\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Markovci\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Markovci\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Markovci\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Preddvor\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Preddvor\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Preddvor\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Zetale\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zetale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zetale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Radlje ob Dravi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Radlje ob Dravi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Radlje ob Dravi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Gorisnica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gorisnica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gorisnica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ivancna Gorica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ivancna Gorica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ivancna Gorica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Skofljica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Skofljica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Skofljica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Horjul\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Horjul\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Horjul\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Puconci\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Puconci\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Puconci\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Cankova\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cankova\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cankova\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Odranci\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Odranci\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Odranci\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Trnovska Vas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Trnovska Vas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trnovska Vas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Race-Fram\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Race-Fram\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Race-Fram\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Majsperk\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Majsperk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Majsperk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Salovci\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Salovci\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Salovci\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Hajdina\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hajdina\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hajdina\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Dolenjske Toplice\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dolenjske Toplice\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dolenjske Toplice\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Gornji Petrovci\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Gornji Petrovci\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Gornji Petrovci\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Moravske Toplice\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moravske Toplice\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Moravske Toplice\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Dobrna\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dobrna\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Dobrna\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Luce\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Luce\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Luce\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Podlehnik\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Podlehnik\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Podlehnik\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Vitanje\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vitanje\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vitanje\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Kobarid\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kobarid\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kobarid\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Komen\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Komen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Komen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Bistrica ob Sotli\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bistrica ob Sotli\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bistrica ob Sotli\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Kuzma\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuzma\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kuzma\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Sodrazica\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sodrazica\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sodrazica\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Ig\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ig\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ig\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Videm\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Videm\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Videm\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Slovenia\",\r\n \"state\": \"Rence-Vogrsko\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rence-Vogrsko\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rence-Vogrsko\",\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\": \"local\"\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\": \"local\"\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\": \"Northern Cape\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"South Africa\",\r\n \"state\": \"Eastern Cape\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Limpopo\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Spain\",\r\n \"state\": \"Madrid\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Andalusia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Andalusia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Andalusia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Galicia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Galicia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Galicia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Castille-La Mancha\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Castille-La Mancha\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Castille-La Mancha\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Valencia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Valencia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Valencia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Catalonia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Catalonia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Catalonia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"La Rioja\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"La Rioja\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/La Rioja\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Murcia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Murcia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Murcia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Castille-Leon\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Castille-Leon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Castille-Leon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Aragon\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Aragon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aragon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Asturias\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Asturias\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Asturias\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Extremadura\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Extremadura\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Extremadura\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Cantabria\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cantabria\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cantabria\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Melilla\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Melilla\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Melilla\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Spain\",\r\n \"state\": \"Ceuta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ceuta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ceuta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Sri Lanka\",\r\n \"state\": \"Southern\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Southern\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Southern\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Sri Lanka\",\r\n \"state\": \"North Central\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"North Central\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/North Central\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Sri Lanka\",\r\n \"state\": \"Sabaragamuwa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sabaragamuwa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sabaragamuwa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Sri Lanka\",\r\n \"state\": \"Uva\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Uva\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uva\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Swaziland\",\r\n \"state\": \"Hhohho\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hhohho\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hhohho\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Swaziland\",\r\n \"state\": \"Manzini\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manzini\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manzini\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Swaziland\",\r\n \"state\": \"Lubombo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lubombo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lubombo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Switzerland\",\r\n \"state\": \"Geneve\",\r\n \"azureRegion\": \"local\"\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\": \"Basel-Stadt\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Vaud\",\r\n \"azureRegion\": \"local\"\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\": \"Sankt Gallen\",\r\n \"azureRegion\": \"local\"\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\": \"Solothurn\",\r\n \"azureRegion\": \"local\"\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\": \"Ticino\",\r\n \"azureRegion\": \"local\"\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\": \"Basel-Landschaft\",\r\n \"azureRegion\": \"local\"\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\": \"Schwyz\",\r\n \"azureRegion\": \"local\"\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\": \"Zug\",\r\n \"azureRegion\": \"local\"\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\": \"Valais\",\r\n \"azureRegion\": \"local\"\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\": \"Aargau\",\r\n \"azureRegion\": \"local\"\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\": \"Nidwalden\",\r\n \"azureRegion\": \"local\"\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\": \"Thurgau\",\r\n \"azureRegion\": \"local\"\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\": \"Luzern\",\r\n \"azureRegion\": \"local\"\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\": \"Uri\",\r\n \"azureRegion\": \"local\"\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\": \"Neuchatel\",\r\n \"azureRegion\": \"local\"\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\": \"Schaffhausen\",\r\n \"azureRegion\": \"local\"\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\": \"Fribourg\",\r\n \"azureRegion\": \"local\"\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\": \"Appenzell Ausserrhoden\",\r\n \"azureRegion\": \"local\"\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\": \"Obwalden\",\r\n \"azureRegion\": \"local\"\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\": \"Jura\",\r\n \"azureRegion\": \"local\"\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\": \"Glarus\",\r\n \"azureRegion\": \"local\"\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\": \"Appenzell Innerrhoden\",\r\n \"azureRegion\": \"local\"\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\": \"Taiwan\",\r\n \"state\": \"Kaohsiung\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kaohsiung\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kaohsiung\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Taiwan\",\r\n \"state\": \"New Taipei\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New Taipei\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/New Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Taiwan\",\r\n \"state\": \"Taichung\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taichung\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taichung\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Taiwan\",\r\n \"state\": \"Tainan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tainan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tainan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Taiwan\",\r\n \"state\": \"Taipei\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Lampang\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lampang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lampang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Loei\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Loei\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Loei\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Ang Thong\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ang Thong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ang Thong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Buriram\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Buriram\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Buriram\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Chachoengsao\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chachoengsao\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chachoengsao\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Chai Nat\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chai Nat\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chai Nat\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Chaiyaphum\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chaiyaphum\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chaiyaphum\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Kalasin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kalasin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kalasin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Kanchanaburi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kanchanaburi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kanchanaburi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Khon Kaen\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Khon Kaen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Khon Kaen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Krabi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Krabi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Krabi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Lop Buri\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lop Buri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lop Buri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Nakhon Pathom\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nakhon Pathom\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nakhon Pathom\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Nakhon Ratchasima\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nakhon Ratchasima\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nakhon Ratchasima\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Narathiwat\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Narathiwat\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Narathiwat\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Phangnga\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phangnga\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Phangnga\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Phetchabun\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phetchabun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Phetchabun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Phrae\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phrae\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Phrae\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Phuket\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phuket\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Phuket\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Prachin Buri\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prachin Buri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Prachin Buri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Ranong\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ranong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ranong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Ratchaburi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ratchaburi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ratchaburi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Roi Et\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Roi Et\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Roi Et\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Samut Sakhon\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Samut Sakhon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Samut Sakhon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Samut Songkhram\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Samut Songkhram\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Samut Songkhram\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Songkhla\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Songkhla\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Songkhla\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Sukhothai\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sukhothai\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sukhothai\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Suphan Buri\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Suphan Buri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Suphan Buri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Surat Thani\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Surat Thani\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Surat Thani\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Trang\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Trang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Ubon Ratchathani\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ubon Ratchathani\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ubon Ratchathani\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Udon Thani\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Udon Thani\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Udon Thani\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Chumphon\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chumphon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chumphon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Pathum Thani\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Nonthaburi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nonthaburi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nonthaburi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Kamphaeng Phet\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kamphaeng Phet\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kamphaeng Phet\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Rayong\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rayong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rayong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Sara Buri\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sara Buri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sara Buri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Chiang Mai\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chiang Mai\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chiang Mai\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Phra Nakhon Si Ayutthaya\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phra Nakhon Si Ayutthaya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Phra Nakhon Si Ayutthaya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Chon Buri\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chon Buri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chon Buri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Samut Prakan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Samut Prakan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Samut Prakan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Phayao\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phayao\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Phayao\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Phitsanulok\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phitsanulok\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Phitsanulok\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Bueng Kan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bueng Kan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bueng Kan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Nakhon Sawan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nakhon Sawan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nakhon Sawan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Maha Sarakham\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Maha Sarakham\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Maha Sarakham\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Satun\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Satun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Satun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Surin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Surin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Surin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Nakhon Nayok\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nakhon Nayok\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nakhon Nayok\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Mukdahan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mukdahan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mukdahan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Mae Hong Son\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mae Hong Son\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mae Hong Son\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Tak\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Sisaket\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sisaket\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sisaket\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Prachuap Khiri Khan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prachuap Khiri Khan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Prachuap Khiri Khan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Chiang Rai\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chiang Rai\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chiang Rai\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Nong Bua Lamphu\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nong Bua Lamphu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nong Bua Lamphu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Uthai Thani\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Uthai Thani\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uthai Thani\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Yasothon\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Yasothon\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yasothon\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Phetchaburi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phetchaburi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Phetchaburi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Phichit\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phichit\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Phichit\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Nakhon Si Thammarat\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nakhon Si Thammarat\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nakhon Si Thammarat\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Amnat Charoen\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Amnat Charoen\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Amnat Charoen\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Lamphun\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lamphun\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lamphun\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Yala\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Yala\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yala\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Sing Buri\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sing Buri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sing Buri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Uttaradit\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Uttaradit\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Uttaradit\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Pattani\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pattani\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Pattani\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Chanthaburi\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chanthaburi\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chanthaburi\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Nan\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nan\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nan\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Sa Kaeo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sa Kaeo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sa Kaeo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Thailand\",\r\n \"state\": \"Phatthalung\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phatthalung\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Phatthalung\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Ankara\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ankara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ankara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Istanbul\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Istanbul\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Istanbul\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Antalya\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Antalya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Antalya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Aydin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Aydin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Aydin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Balikesir\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Balikesir\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Balikesir\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Bartin\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bartin\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bartin\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Bursa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bursa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bursa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Denizli\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Denizli\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Denizli\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Eskisehir\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Eskisehir\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Eskisehir\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Izmir\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Izmir\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Izmir\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Kirklareli\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kirklareli\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirklareli\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Kocaeli\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kocaeli\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kocaeli\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Konya\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Konya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Konya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Manisa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manisa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Manisa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Mugla\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mugla\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mugla\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Sakarya\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sakarya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sakarya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Tekirdag\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tekirdag\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tekirdag\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Afyonkarahisar\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Afyonkarahisar\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Afyonkarahisar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Canakkale\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Canakkale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Canakkale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Duzce\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Duzce\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Duzce\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Isparta\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Isparta\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Isparta\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Karabuk\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Karabuk\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Karabuk\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Kutahya\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kutahya\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kutahya\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Sinop\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sinop\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sinop\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Zonguldak\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zonguldak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zonguldak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Kirikkale\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kirikkale\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirikkale\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Yalova\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Yalova\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Yalova\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Cankiri\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cankiri\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cankiri\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Kastamonu\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kastamonu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kastamonu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Bilecik\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bilecik\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bilecik\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Bolu\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bolu\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bolu\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Burdur\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Burdur\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Burdur\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Edirne\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Edirne\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Edirne\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Turkey\",\r\n \"state\": \"Usak\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Usak\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Usak\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Kirovohrads'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kirovohrads'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kirovohrads'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Kharkivs'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kharkivs'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kharkivs'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"L'vivs'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"L'vivs'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/L'vivs'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Rivnens'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rivnens'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Rivnens'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Zaporiz'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zaporiz'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zaporiz'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Odes'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Odes'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Odes'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Zakarpats'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zakarpats'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zakarpats'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Khmel'nyts'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Khmel'nyts'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Khmel'nyts'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Poltavs'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Poltavs'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Poltavs'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Chernihivs'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chernihivs'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chernihivs'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Cherkas'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cherkas'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Cherkas'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Sums'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sums'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Sums'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Mykolayivs'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mykolayivs'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Mykolayivs'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Khersons'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Khersons'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Khersons'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Ivano-Frankivs'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ivano-Frankivs'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ivano-Frankivs'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Ternopil's'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ternopil's'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ternopil's'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Volyns'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Volyns'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Volyns'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Zhytomyrs'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zhytomyrs'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zhytomyrs'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Chernivets'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chernivets'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Chernivets'ka Oblast'\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Ukraine\",\r\n \"state\": \"Vinnyts'ka Oblast'\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vinnyts'ka Oblast'\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vinnyts'ka Oblast'\",\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\": \"local\"\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\": \"Wokingham\",\r\n \"azureRegion\": \"local\"\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\": \"Hertfordshire\",\r\n \"azureRegion\": \"local\"\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\": \"Glasgow City\",\r\n \"azureRegion\": \"local\"\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\": \"Bridgend\",\r\n \"azureRegion\": \"local\"\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\": \"Edinburgh, City of\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Slough\",\r\n \"azureRegion\": \"local\"\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\": \"Calderdale\",\r\n \"azureRegion\": \"local\"\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\": \"East Riding of Yorkshire\",\r\n \"azureRegion\": \"local\"\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\": \"Kingston upon Hull, City of\",\r\n \"azureRegion\": \"local\"\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\": \"Leeds\",\r\n \"azureRegion\": \"local\"\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\": \"Milton Keynes\",\r\n \"azureRegion\": \"local\"\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\": \"Nottingham\",\r\n \"azureRegion\": \"local\"\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\": \"Wakefield\",\r\n \"azureRegion\": \"local\"\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\": \"Central Bedfordshire\",\r\n \"azureRegion\": \"local\"\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\": \"Solihull\",\r\n \"azureRegion\": \"local\"\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\": \"Barnsley\",\r\n \"azureRegion\": \"local\"\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\": \"Bedford\",\r\n \"azureRegion\": \"local\"\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\": \"Blackburn with Darwen\",\r\n \"azureRegion\": \"local\"\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\": \"Blaenau Gwent\",\r\n \"azureRegion\": \"local\"\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\": \"Bristol, City of\",\r\n \"azureRegion\": \"local\"\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\": \"Cardiff\",\r\n \"azureRegion\": \"local\"\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\": \"Cornwall\",\r\n \"azureRegion\": \"local\"\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\": \"Derby\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Devon\",\r\n \"azureRegion\": \"local\"\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\": \"Essex\",\r\n \"azureRegion\": \"local\"\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\": \"Gloucestershire\",\r\n \"azureRegion\": \"local\"\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\": \"Hampshire\",\r\n \"azureRegion\": \"local\"\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\": \"Highland\",\r\n \"azureRegion\": \"local\"\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\": \"Kent\",\r\n \"azureRegion\": \"local\"\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\": \"Knowsley\",\r\n \"azureRegion\": \"local\"\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\": \"Lancashire\",\r\n \"azureRegion\": \"local\"\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\": \"Leicester\",\r\n \"azureRegion\": \"local\"\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\": \"Lincolnshire\",\r\n \"azureRegion\": \"local\"\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\": \"Liverpool\",\r\n \"azureRegion\": \"local\"\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\": \"Luton\",\r\n \"azureRegion\": \"local\"\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\": \"Medway\",\r\n \"azureRegion\": \"local\"\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\": \"Monmouthshire\",\r\n \"azureRegion\": \"local\"\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\": \"Oxfordshire\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Rochdale\",\r\n \"azureRegion\": \"local\"\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\": \"Sandwell\",\r\n \"azureRegion\": \"local\"\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\": \"Sefton\",\r\n \"azureRegion\": \"local\"\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\": \"Somerset\",\r\n \"azureRegion\": \"local\"\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\": \"Stirling\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Stoke-on-Trent\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Torbay\",\r\n \"azureRegion\": \"local\"\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\": \"Trafford\",\r\n \"azureRegion\": \"local\"\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\": \"Warrington\",\r\n \"azureRegion\": \"local\"\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\": \"West Sussex\",\r\n \"azureRegion\": \"local\"\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\": \"Wiltshire\",\r\n \"azureRegion\": \"local\"\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\": \"Worcestershire\",\r\n \"azureRegion\": \"local\"\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\": \"York\",\r\n \"azureRegion\": \"local\"\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 Kingdom\",\r\n \"state\": \"Brighton and Hove\",\r\n \"azureRegion\": \"local\"\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\": \"East Sussex\",\r\n \"azureRegion\": \"local\"\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\": \"Bath and North East Somerset\",\r\n \"azureRegion\": \"local\"\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\": \"Birmingham\",\r\n \"azureRegion\": \"local\"\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\": \"Blackpool\",\r\n \"azureRegion\": \"local\"\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\": \"Bolton\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Buckinghamshire\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Cambridgeshire\",\r\n \"azureRegion\": \"local\"\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\": \"Carmarthenshire\",\r\n \"azureRegion\": \"local\"\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\": \"Ceredigion\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Conwy\",\r\n \"azureRegion\": \"local\"\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\": \"Coventry\",\r\n \"azureRegion\": \"local\"\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\": \"Cumbria\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Doncaster\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Dundee City\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Flintshire\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Gwynedd\",\r\n \"azureRegion\": \"local\"\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\": \"Halton\",\r\n \"azureRegion\": \"local\"\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\": \"Hartlepool\",\r\n \"azureRegion\": \"local\"\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\": \"Herefordshire\",\r\n \"azureRegion\": \"local\"\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\": \"Isle of Anglesey\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Kirklees\",\r\n \"azureRegion\": \"local\"\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\": \"Merthyr Tydfil\",\r\n \"azureRegion\": \"local\"\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\": \"Redcar and Cleveland\",\r\n \"azureRegion\": \"local\"\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\": \"Neath Port Talbot\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Newport\",\r\n \"azureRegion\": \"local\"\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\": \"Norfolk\",\r\n \"azureRegion\": \"local\"\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 East Lincolnshire\",\r\n \"azureRegion\": \"local\"\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 Lincolnshire\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Oldham\",\r\n \"azureRegion\": \"local\"\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\": \"Peterborough\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Rhondda Cynon Taff\",\r\n \"azureRegion\": \"local\"\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\": \"Rotherham\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Sheffield\",\r\n \"azureRegion\": \"local\"\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\": \"Shropshire\",\r\n \"azureRegion\": \"local\"\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\": \"South Gloucestershire\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Sunderland\",\r\n \"azureRegion\": \"local\"\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\": \"Swansea\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"Torfaen\",\r\n \"azureRegion\": \"local\"\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\": \"Walsall\",\r\n \"azureRegion\": \"local\"\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\": \"Warwickshire\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Wigan\",\r\n \"azureRegion\": \"local\"\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\": \"Windsor and Maidenhead\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Wolverhampton\",\r\n \"azureRegion\": \"local\"\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\": \"Wrexham\",\r\n \"azureRegion\": \"local\"\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\": \"Belfast\",\r\n \"azureRegion\": \"local\"\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\": \"Clackmannanshire\",\r\n \"azureRegion\": \"local\"\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\": \"Falkirk\",\r\n \"azureRegion\": \"local\"\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\": \"Midlothian\",\r\n \"azureRegion\": \"local\"\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\": \"Aberdeen City\",\r\n \"azureRegion\": \"local\"\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\": \"South Ayrshire\",\r\n \"azureRegion\": \"local\"\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\": \"Moray\",\r\n \"azureRegion\": \"local\"\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\": \"Orkney Islands\",\r\n \"azureRegion\": \"local\"\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\": \"Antrim and Newtownabbey\",\r\n \"azureRegion\": \"local\"\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\": \"Argyll and Bute\",\r\n \"azureRegion\": \"local\"\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\": \"Dumfries and Galloway\",\r\n \"azureRegion\": \"local\"\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\": \"East Dunbartonshire\",\r\n \"azureRegion\": \"local\"\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\": \"Lisburn and Castlereagh\",\r\n \"azureRegion\": \"local\"\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\": \"Mid Ulster\",\r\n \"azureRegion\": \"local\"\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\": \"North Lanarkshire\",\r\n \"azureRegion\": \"local\"\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\": \"Fermanagh and Omagh\",\r\n \"azureRegion\": \"local\"\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\": \"Perth and Kinross\",\r\n \"azureRegion\": \"local\"\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\": \"Isles of Scilly\",\r\n \"azureRegion\": \"local\"\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\": \"Inverclyde\",\r\n \"azureRegion\": \"local\"\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\": \"East Lothian\",\r\n \"azureRegion\": \"local\"\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\": \"Fife\",\r\n \"azureRegion\": \"local\"\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\": \"West Lothian\",\r\n \"azureRegion\": \"local\"\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\": \"Angus\",\r\n \"azureRegion\": \"local\"\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\": \"Armagh, Banbridge and Craigavon\",\r\n \"azureRegion\": \"local\"\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\": \"East Ayrshire\",\r\n \"azureRegion\": \"local\"\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 Renfrewshire\",\r\n \"azureRegion\": \"local\"\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\": \"North Ayrshire\",\r\n \"azureRegion\": \"local\"\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\": \"Renfrewshire\",\r\n \"azureRegion\": \"local\"\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\": \"West Dunbartonshire\",\r\n \"azureRegion\": \"local\"\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\": \"Mid and East Antrim\",\r\n \"azureRegion\": \"local\"\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\": \"Shetland Islands\",\r\n \"azureRegion\": \"local\"\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\": \"Derry and Strabane\",\r\n \"azureRegion\": \"local\"\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\": \"Causeway Coast and Glens\",\r\n \"azureRegion\": \"local\"\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 States\",\r\n \"state\": \"New York\",\r\n \"azureRegion\": \"local\"\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\": \"Georgia\",\r\n \"azureRegion\": \"local\"\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\": \"Virginia\",\r\n \"azureRegion\": \"local\"\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\": \"California\",\r\n \"azureRegion\": \"local\"\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\": \"Minnesota\",\r\n \"azureRegion\": \"local\"\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\": \"Maine\",\r\n \"azureRegion\": \"local\"\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\": \"Massachusetts\",\r\n \"azureRegion\": \"local\"\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\": \"New Hampshire\",\r\n \"azureRegion\": \"local\"\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\": \"Rhode Island\",\r\n \"azureRegion\": \"local\"\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\": \"Florida\",\r\n \"azureRegion\": \"local\"\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\": \"Wisconsin\",\r\n \"azureRegion\": \"local\"\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\": \"North Carolina\",\r\n \"azureRegion\": \"local\"\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\": \"South Carolina\",\r\n \"azureRegion\": \"local\"\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\": \"Ohio\",\r\n \"azureRegion\": \"local\"\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\": \"Illinois\",\r\n \"azureRegion\": \"local\"\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\": \"Alabama\",\r\n \"azureRegion\": \"local\"\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\": \"District of Columbia\",\r\n \"azureRegion\": \"local\"\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\": \"Texas\",\r\n \"azureRegion\": \"local\"\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\": \"Hawaii\",\r\n \"azureRegion\": \"local\"\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\": \"Louisiana\",\r\n \"azureRegion\": \"local\"\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\": \"New Mexico\",\r\n \"azureRegion\": \"local\"\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\": \"Tennessee\",\r\n \"azureRegion\": \"local\"\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\": \"Colorado\",\r\n \"azureRegion\": \"local\"\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\": \"Nebraska\",\r\n \"azureRegion\": \"local\"\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\": \"local\"\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\": \"Oregon\",\r\n \"azureRegion\": \"local\"\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\": \"Michigan\",\r\n \"azureRegion\": \"local\"\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\": \"Washington\",\r\n \"azureRegion\": \"local\"\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\": \"Idaho\",\r\n \"azureRegion\": \"local\"\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\": \"Maryland\",\r\n \"azureRegion\": \"local\"\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\": \"Utah\",\r\n \"azureRegion\": \"local\"\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\": \"Pennsylvania\",\r\n \"azureRegion\": \"local\"\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\": \"Connecticut\",\r\n \"azureRegion\": \"local\"\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\": \"Iowa\",\r\n \"azureRegion\": \"local\"\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\": \"Arizona\",\r\n \"azureRegion\": \"local\"\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\": \"Indiana\",\r\n \"azureRegion\": \"local\"\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\": \"Kansas\",\r\n \"azureRegion\": \"local\"\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\": \"Missouri\",\r\n \"azureRegion\": \"local\"\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\": \"New Jersey\",\r\n \"azureRegion\": \"local\"\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\": \"Arkansas\",\r\n \"azureRegion\": \"local\"\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\": \"Mississippi\",\r\n \"azureRegion\": \"local\"\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\": \"South Dakota\",\r\n \"azureRegion\": \"local\"\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\": \"Wyoming\",\r\n \"azureRegion\": \"local\"\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 \"properties\": {\r\n \"country\": \"United States\",\r\n \"state\": \"Delaware\",\r\n \"azureRegion\": \"local\"\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\": \"Vermont\",\r\n \"azureRegion\": \"local\"\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\": \"Kentucky\",\r\n \"azureRegion\": \"local\"\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\": \"West Virginia\",\r\n \"azureRegion\": \"local\"\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\": \"Oklahoma\",\r\n \"azureRegion\": \"local\"\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\": \"Montana\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Montana\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Montana\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Venezuela\",\r\n \"state\": \"Zulia\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zulia\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Zulia\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Venezuela\",\r\n \"state\": \"Lara\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lara\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lara\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Venezuela\",\r\n \"state\": \"Merida\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Merida\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Merida\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Venezuela\",\r\n \"state\": \"Tachira\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tachira\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tachira\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Venezuela\",\r\n \"state\": \"Barinas\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Barinas\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Barinas\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Venezuela\",\r\n \"state\": \"Trujillo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Trujillo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Trujillo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Venezuela\",\r\n \"state\": \"Portuguesa\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Portuguesa\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Portuguesa\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Lang Son\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lang Son\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Lang Son\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Tay Ninh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tay Ninh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tay Ninh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Vinh Long\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vinh Long\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Vinh Long\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Ha Tinh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ha Tinh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ha Tinh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Soc Trang\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Soc Trang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Soc Trang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Ho Chi Minh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ho Chi Minh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Ho Chi Minh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Hai Phong\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hai Phong\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Hai Phong\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Nghe An\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Nghe An\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Nghe An\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Quang Ninh\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Quang Ninh\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Quang Ninh\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Kien Giang\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kien Giang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Kien Giang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Vietnam\",\r\n \"state\": \"Tien Giang\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tien Giang\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Tien Giang\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Zimbabwe\",\r\n \"state\": \"Bulawayo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bulawayo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Bulawayo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Zimbabwe\",\r\n \"state\": \"Masvingo\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Masvingo\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Masvingo\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n },\r\n {\r\n \"properties\": {\r\n \"country\": \"Zimbabwe\",\r\n \"state\": \"Matabeleland South\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Matabeleland South\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceLocations/Matabeleland South\",\r\n \"type\": \"Microsoft.Peering/peeringServiceLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceProviders?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peeringServiceProviders?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nU2VydmljZVByb3ZpZGVycz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31bd60c0-957a-44ae-8110-109cdc5d55f1" + "9d2cb25e-f0ed-4c94-bcdd-3c8608a204e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -135,38 +135,38 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "58ea7dbe-1ebe-492c-8a0d-38f220f3629c" + "e6390038-0f42-45d2-97d6-626f2ff1a779" ], "Date": [ - "Tue, 12 May 2020 19:07:40 GMT" + "Wed, 29 Jan 2020 18:55:53 GMT" ], "Content-Length": [ - "1536" + "1749" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Cogent Communications Inc.\"\r\n },\r\n \"name\": \"Cogent Communications Inc.\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"CenturyLink\"\r\n },\r\n \"name\": \"CenturyLink\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Verizon Communications Inc.\"\r\n },\r\n \"name\": \"Verizon Communications Inc.\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Level 3 Communications LLC\"\r\n },\r\n \"name\": \"Level 3 Communications LLC\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"AT T\"\r\n },\r\n \"name\": \"AT T\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Akami Int.\"\r\n },\r\n \"name\": \"Akami Int.\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"FooBar\"\r\n },\r\n \"name\": \"FooBar\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"NTT\"\r\n },\r\n \"name\": \"NTT\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Cogent Communications Inc.\"\r\n },\r\n \"name\": \"Cogent Communications Inc.\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"CenturyLink\"\r\n },\r\n \"name\": \"CenturyLink\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Verizon Communications Inc.\"\r\n },\r\n \"name\": \"Verizon Communications Inc.\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Level 3 Communications LLC\"\r\n },\r\n \"name\": \"Level 3 Communications LLC\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"AT T\"\r\n },\r\n \"name\": \"AT T\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"Akami Int.\"\r\n },\r\n \"name\": \"Akami Int.\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"KyleTestPeer\"\r\n },\r\n \"name\": \"KyleTestPeer\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"BgpSpeakerProvider\"\r\n },\r\n \"name\": \"BgpSpeakerProvider\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\r\n },\r\n {\r\n \"properties\": {\r\n \"serviceProviderName\": \"test1\"\r\n },\r\n \"name\": \"test1\",\r\n \"type\": \"Microsoft.Peering/peeringServiceProviders\"\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-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9DaGVja1NlcnZpY2VQcm92aWRlckF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", "RequestMethod": "POST", "RequestBody": "{\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Cogent Communications Inc.\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d3077203-bc06-4ff1-bee4-845c5621d682" + "6514067a-4bd4-4a40-8052-512ae75ee434" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,10 +183,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "59f6972d-1052-4512-b24e-7aeaf7422c11" + "c8b5b460-2f03-44d8-ae2c-d186d0e15505" ], "Date": [ - "Tue, 12 May 2020 19:07:40 GMT" + "Wed, 29 Jan 2020 18:55:53 GMT" ], "Content-Length": [ "11" @@ -199,22 +199,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res4548/providers/Microsoft.Peering/peeringServices/myPeeringService3175?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczQ1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlMzE3NT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res1619/providers/Microsoft.Peering/peeringServices/myPeeringService711?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczE2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlNzExP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Cogent Communications Inc.\"\r\n },\r\n \"location\": \"local\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "eda2e0f8-5382-40a4-8715-501e62f159c8" + "8739578d-2a2e-4704-be30-bd954c92dc5a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -231,38 +231,38 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "f34693db-40d8-4dc5-8dda-ce8596aceb3b" + "8d265cf6-caf9-4711-984c-32a569867b7b" ], "Date": [ - "Tue, 12 May 2020 19:07:40 GMT" + "Wed, 29 Jan 2020 18:55:53 GMT" ], "Content-Length": [ - "482" + "480" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Cogent Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"2f8ae0e6-7f0d-4628-aeb1-c217226e9219\",\r\n \"name\": \"myPeeringService3175\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res4548/providers/Microsoft.Peering/peeringServices/myPeeringService3175\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"peeringServiceLocation\": \"Washington\",\r\n \"peeringServiceProvider\": \"Cogent Communications Inc.\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"location\": \"local\",\r\n \"eTag\": \"228b6fb0-4e65-46f7-8f20-320551e6c0c4\",\r\n \"name\": \"myPeeringService711\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res1619/providers/Microsoft.Peering/peeringServices/myPeeringService711\",\r\n \"type\": \"Microsoft.Peering/peeringServices\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res4548/providers/Microsoft.Peering/peeringServices/myPeeringService3175/prefixes/AS54733Prefix?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczQ1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlMzE3NS9wcmVmaXhlcy9BUzU0NzMzUHJlZml4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res1619/providers/Microsoft.Peering/peeringServices/myPeeringService711/prefixes/AS54733Prefix?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczE2MTkvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlNzExL3ByZWZpeGVzL0FTNTQ3MzNQcmVmaXg/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"prefix\": \"34.56.10.0/24\",\r\n \"peeringServicePrefixKey\": \"d612cc68-f784-4964-b54d-12cee5e5ed1d\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"prefix\": \"10.10.10.0/24\",\r\n \"peeringServicePrefixKey\": \"85bb5c1a-ab3a-4444-a2dc-c6615140c0ed\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a21c7803-3e12-4f65-a956-ee612d420461" + "28374568-4fb8-45ce-ba98-e57da2a71298" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -279,66 +279,27 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "863c7e12-c725-4055-b551-a85d827bda63" + "67bdc8d9-2596-4a01-be97-0890dfa807a0" ], "Date": [ - "Tue, 12 May 2020 19:07:40 GMT" + "Wed, 29 Jan 2020 18:55:53 GMT" ], "Content-Length": [ - "74" + "549" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"code\": \"BadArgument\",\r\n \"message\": \"Invalid peering service key\"\r\n}", - "StatusCode": 400 - }, - { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res4548/providers/Microsoft.Peering/peeringServices/myPeeringService3175?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Jlc291cmNlR3JvdXBzL3JlczQ1NDgvcHJvdmlkZXJzL01pY3Jvc29mdC5QZWVyaW5nL3BlZXJpbmdTZXJ2aWNlcy9teVBlZXJpbmdTZXJ2aWNlMzE3NT9hcGktdmVyc2lvbj0yMDIwLTA0LTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "5ff55b02-5b80-4af7-946b-0e757f864599" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28619.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" - ] - }, - "ResponseHeaders": { - "Server": [ - "Microsoft-HTTPAPI/2.0" - ], - "WWW-Authenticate-dSTS": [ - "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" - ], - "x-ms-request-id": [ - "1407915f-34e6-4436-bca6-30b8a60e1de1" - ], - "Date": [ - "Tue, 12 May 2020 19:07:40 GMT" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 + "ResponseBody": "{\r\n \"properties\": {\r\n \"prefix\": \"10.10.10.0/24\",\r\n \"prefixValidationState\": \"Pending\",\r\n \"learnedType\": \"None\",\r\n \"peeringServicePrefixKey\": \"85bb5c1a-ab3a-4444-a2dc-c6615140c0ed\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"eTag\": \"6c0e3b73-90ad-4027-a9cc-0df2ffa20b74\",\r\n \"name\": \"AS54733Prefix\",\r\n \"id\": \"/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/resourceGroups/res1619/providers/Microsoft.Peering/peeringServices/myPeeringService711/prefixes/AS54733Prefix\",\r\n \"type\": \"Microsoft.Peering/peeringServices/prefixes\"\r\n}", + "StatusCode": 201 } ], "Names": { "CreatePeeringService": [ - "res4548", - "myPeeringService3175", - "d612cc68-f784-4964-b54d-12cee5e5ed1d" + "res1619", + "myPeeringService711", + "85bb5c1a-ab3a-4444-a2dc-c6615140c0ed" ] }, "Variables": { diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetDirectLocations.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetDirectLocations.json index 0db35a35260c2..a05353bc47a7c 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetDirectLocations.json +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetDirectLocations.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-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RGlyZWN0JmFwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f48f523b-99f5-42b1-b4c8-115c62d87fcd" + "2b7ce821-c68d-4e16-8b9d-08b57c5a491d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -27,19 +27,19 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "27350159-cc35-4066-94c1-abb6119eb2b6" + "f7521bbb-40da-42e4-b06c-5a1009b5acd2" ], "Date": [ - "Tue, 12 May 2020 17:41:42 GMT" + "Fri, 24 Jan 2020 19:25:31 GMT" ], "Content-Length": [ - "76394" + "70079" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"21715 Filigree Ct\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Ashburn\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"Science Park 121\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 104,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/104\"\r\n },\r\n {\r\n \"address\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 86,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/86\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n },\r\n {\r\n \"address\": \"Av Pierre Simon de Laplace n1211\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2812,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2812\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"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\": \"local\"\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\": \"local\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"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\": \"local\"\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\": \"local\"\r\n },\r\n \"name\": \"Minneapolis\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Colectora Este 32375\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2114,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2114\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Buenos Aires\",\r\n \"country\": \"AR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Buenos Aires\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\r\n },\r\n \"name\": \"Ashburn\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"529 Bryant St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Palo Alto\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Palo Alto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"11 Great Oaks Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Jose\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Jose\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"350 E Cermak Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 7,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/7\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"600 W 7th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 8,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/8\"\r\n },\r\n {\r\n \"address\": \"624 S. Grand Ave.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 19,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/19\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Los Angeles\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Los Angeles\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"56 Marietta St NW\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 11,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/11\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Atlanta\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Atlanta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"50 NE 9th St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 15,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/15\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Miami\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Miami\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 34,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/34\"\r\n },\r\n {\r\n \"address\": \"14 Coriander Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 39,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/39\"\r\n },\r\n {\r\n \"address\": \"Sovereign House\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 40,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/40\"\r\n },\r\n {\r\n \"address\": \"8 Buckingham Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 832,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/832\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"London\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"London\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"111 8th Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 38,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/38\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New York\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New York\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"137 Boulevard Voltaire\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 53,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/53\"\r\n },\r\n {\r\n \"address\": \"11-13 Avenue des Arts et Metiers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 714,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/714\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Paris\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Paris\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hanauer Landstrasse 298\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 58,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/58\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Johan Huizingalaan 759\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 63,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/63\"\r\n },\r\n {\r\n \"address\": \"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\": \"Schepenbergweg 42\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Louis-Haefliger-Gasse 10\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 67,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/67\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vienna\",\r\n \"country\": \"AT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vienna\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Wezenbeekstraat 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 68,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/68\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brussels\",\r\n \"country\": \"BE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brussels\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1950 N Stemmons Fwy\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 69,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/69\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dallas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dallas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2001 Sixth Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 71,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/71\"\r\n },\r\n {\r\n \"address\": \"One Microsoft Way, Redmond\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 99999,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/ix/99999\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seattle\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seattle\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Manchester Science Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 76,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/76\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manchester\",\r\n \"country\": \"GB\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manchester\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Sagereistrasse 35\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 81,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/81\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zurich\",\r\n \"country\": \"CH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrer de l'Acer 30-32\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 122,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/122\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Av. Severiano Falcao, 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 126,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/126\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"C/ Albasanz 71\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 130,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/130\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Madrid\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Madrid\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit B 639 Gardeners Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 131,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/131\"\r\n },\r\n {\r\n \"address\": \"4 Eden Park Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1660,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1660\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sydney\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sydney\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Otemachi Building\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 142,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/142\"\r\n },\r\n {\r\n \"address\": \"ComSpace Bldg.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 599,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/599\"\r\n },\r\n {\r\n \"address\": \"Otemachi Finance City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1893,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1893\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Tokyo\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Tokyo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F LG CNS Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 143,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/143\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Seoul\",\r\n \"country\": \"KR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Seoul\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Industriparken 20A\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 148,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/148\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Mariehällsvägen 36\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 156,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/156\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Unit 4027, Kingswood Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 164,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/164\"\r\n },\r\n {\r\n \"address\": \"Unit 35 Lavery Avenue\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 177,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/177\"\r\n },\r\n {\r\n \"address\": \"Unit 2, North West Business Park\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1065,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1065\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Dublin\",\r\n \"country\": \"IE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Dublin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ceci Avenue, 1900\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 165,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/165\"\r\n },\r\n {\r\n \"address\": \"Alameda Araguaia 3641\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1283,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1283\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sao Paulo\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sao Paulo\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"17/F Global Gateway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 170,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/170\"\r\n },\r\n {\r\n \"address\": \"399 Chai Wan Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hong Kong\",\r\n \"country\": \"HK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hong Kong\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nad Elektrarnou 1428/47\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 214,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/214\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Prague\",\r\n \"country\": \"CZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Prague\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"40 avenue Roger Salengro\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 226,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/226\"\r\n },\r\n {\r\n \"address\": \"71 Avenue André Roussin\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1879,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1879\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Ayer Rajah Crescent\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 282,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/282\"\r\n },\r\n {\r\n \"address\": \" 2 TAI SENG AVENUE\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 388,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/388\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Singapore\",\r\n \"country\": \"SG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Singapore\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Asztalos Sandor u. 13.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 301,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/301\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Budapest\",\r\n \"country\": \"HU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Budapest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8 Marta 14\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 349,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/349\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"910 15th Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 389,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/389\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Denver\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Denver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"8, Dimitrie Pompeiu Blvd., 3rd fl.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 439,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/439\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"No. 250, Yang-Guang Street, Nei-hu District\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 456,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/456\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Taipei\",\r\n \"country\": \"TW\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Taipei\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ground Floor, Menara AIMS\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 460,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/460\"\r\n },\r\n {\r\n \"address\": \"CSF Building, Computer Exchange\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1279,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1279\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Nonnendammallee 15\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 478,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/478\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Berlin\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Berlin\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Al. Jerozolimskie 65/79\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 509,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/509\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Warsaw\",\r\n \"country\": \"PL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Warsaw\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"4th floor, 2nd block\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 552,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/552\"\r\n },\r\n {\r\n \"address\": \"Bharti Towers\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2006,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2006\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Chennai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chennai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Kashinath Dhuru Marg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 554,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/554\"\r\n },\r\n {\r\n \"address\": \"Plot No, TPS-2, 14/3, 2nd floor\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2046,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2046\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mumbai\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mumbai\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1 William Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 568,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/568\"\r\n },\r\n {\r\n \"address\": \"4 Millrose Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1940,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1940\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Perth\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Perth\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"70 Innerbelt Rd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 584,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/584\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Boston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Boston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"122 Ovcho Pole str.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 663,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/663\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Sofia\",\r\n \"country\": \"BG\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Sofia\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7135 S Decatur Boulevard\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 770,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/770\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Las Vegas\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Las Vegas\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"151 Front St W.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 775,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/775\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Toronto\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Toronto\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5 Brewery Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 850,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/850\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Johannesburg\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Johannesburg\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"NTT DATA Dojima Bldg\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1157,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1157\"\r\n },\r\n {\r\n \"address\": \"3-1-7 Dojima, Kita-ku, Osaka-shi\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2072,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2072\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Great Westerford Building, 240 Main Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1225,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1225\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Cape Town\",\r\n \"country\": \"ZA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Cape Town\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"555 West Hastings St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1330,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1330\"\r\n },\r\n {\r\n \"address\": \"1050 W Pender Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1881,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1881\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Vancouver\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Vancouver\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"820 Lorimer Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1339,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1339\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Melbourne\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Melbourne\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"20 Wharf Street\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1340,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1340\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Brisbane\",\r\n \"country\": \"AU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Brisbane\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"7A Parkhead Place\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1353,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1353\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Auckland\",\r\n \"country\": \"NZ\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Auckland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Selska cesta 93\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Zagreb\",\r\n \"country\": \"HR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Zagreb\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"329 - Sao Cristovao\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1374,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1374\"\r\n },\r\n {\r\n \"address\": \"Estrada Adhemar Bebiano, 1380\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1899,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1899\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rio de Janeiro\",\r\n \"country\": \"BR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rio de Janeiro\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Parrukatu 2\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1457,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1457\"\r\n },\r\n {\r\n \"address\": \"Sahamyllyntie 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1459,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1459\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Helsinki\",\r\n \"country\": \"FI\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Helsinki\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"5150 & 5170 Westway Park Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1476,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1476\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Houston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Houston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"9999 Westover Hills Blvd\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1484,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1484\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"San Antonio\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"San Antonio\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"2335 South Ellis Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1488,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1488\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Phoenix\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Phoenix\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Privada de la Princesa 4\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1778,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1778\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Mexico\",\r\n \"country\": \"MX\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Mexico\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Santa Marta de Huechuraba 6951\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2093,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2093\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santiago\",\r\n \"country\": \"CL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santiago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"1250 Rene Levesque West\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1944,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1944\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Montreal\",\r\n \"country\": \"CA\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Montreal\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Ifestou 76\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1949,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1949\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Athens\",\r\n \"country\": \"GR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Athens\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Via Caldera, 21\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1974,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1974\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Milan\",\r\n \"country\": \"IT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Milan\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"VSNL Colony\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1982,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1982\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"New Delhi\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"New Delhi\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3375 Koapaka St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2526,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2526\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Honolulu\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Honolulu\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3F PLDT Bldg. Danny Floro St. corner CP Garcia St.\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 4810,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/4810\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Manila\",\r\n \"country\": \"PH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Manila\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"HUDA Techno Enclave, HITEC City\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5236,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5236\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Hyderabad\",\r\n \"country\": \"IN\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Hyderabad\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"165 Halsey St\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 9,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/9\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Newark\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Newark\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"12100 Sunrise Valley Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 668,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/668\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Reston\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Reston\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"3020 Coronado Drive\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 3344,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/3344\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Santa Clara\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Santa Clara\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Carrera 106 No. 15A-25\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1354,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1354\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Bogota\",\r\n \"country\": \"CO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bogota\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Cyber Building, 1st floor. Jl. Kuningan Barat no. 8\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 2368,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/2368\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Jakarta\",\r\n \"country\": \"ID\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Jakarta\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"Hodneveien 240\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 5343,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/5343\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Rennesoy\",\r\n \"country\": \"NO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Rennesoy\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"91 Moo12, Phahonyothin Road\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 6741,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/6741\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Pathum Thani\",\r\n \"country\": \"TH\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Pathum Thani\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Direct\",\r\n \"properties\": {\r\n \"direct\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"address\": \"6327 NE Evergreen Parkway\",\r\n \"directPeeringType\": \"Edge\",\r\n \"peeringDBFacilityId\": 1922,\r\n \"peeringDBFacilityLink\": \"https://www.peeringdb.com/fac/1922\"\r\n }\r\n ],\r\n \"bandwidthOffers\": [\r\n {\r\n \"offerName\": \"10Gbps\",\r\n \"valueInMbps\": 10000\r\n },\r\n {\r\n \"offerName\": \"100Gbps\",\r\n \"valueInMbps\": 100000\r\n }\r\n ]\r\n },\r\n \"peeringLocation\": \"Portland\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Portland\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetExchangeLocations.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetExchangeLocations.json index 5ac0a4745b546..1893f85fcb063 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetExchangeLocations.json +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetExchangeLocations.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-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyaW5nTG9jYXRpb25zP2tpbmQ9RXhjaGFuZ2UmYXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54b5b582-9f95-4c71-b2ee-f64355959d7e" + "a2a4bb60-afc5-4da1-a4eb-ba2307a1b35b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -27,19 +27,19 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "9b689ceb-4bca-44da-9d07-c631fb6af903" + "cc67acdc-7478-42d9-9680-1fa2bb6aaa24" ], "Date": [ - "Tue, 12 May 2020 17:41:44 GMT" + "Fri, 24 Jan 2020 19:25:33 GMT" ], "Content-Length": [ - "114105" + "105215" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": 100000,\r\n \"microsoftIPv4Address\": \"193.239.117.16\",\r\n \"microsoftIPv6Address\": \"2001:7f8:13::a500:8075:1\",\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 },\r\n \"peeringLocation\": \"Amsterdam\",\r\n \"country\": \"NL\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Amsterdam\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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\": \"local\"\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\": \"local\"\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.33,198.32.182.102\",\r\n \"microsoftIPv6Address\": \"2001:504:10::8075:1,2001:504:10::8075:2\",\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\": \"local\"\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\",\r\n \"microsoftIPv6Address\": \"2001:7fa:4:c0cb::9aa2\",\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\",\r\n \"bandwidthInMbps\": 20000,\r\n \"microsoftIPv4Address\": \"43.243.21.23\",\r\n \"microsoftIPv6Address\": \"2001:7fa:11:6:0:1f8b:0:1\",\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\": \"local\"\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 },\r\n \"peeringLocation\": \"Barcelona\",\r\n \"country\": \"ES\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Barcelona\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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\": \"local\"\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.24,208.115.128.25\",\r\n \"microsoftIPv6Address\": \"2001:504:0:10::8075:1,2001:504:0:10::8075:2\",\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\": \"local\"\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\": 10000,\r\n \"microsoftIPv4Address\": \"206.108.236.10\",\r\n \"microsoftIPv6Address\": \"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\": \"local\"\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\": \"\",\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\": \"local\"\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\": 20000,\r\n \"microsoftIPv4Address\": \"194.53.172.34\",\r\n \"microsoftIPv6Address\": \"2001:7f8:26::a500:8075:1\",\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\": \"local\"\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.52,80.97.248.76,86.104.125.130\",\r\n \"microsoftIPv6Address\": \"2a02:d10:80::13,2a02:d10:80::32,2001:7f8:64:225::8075:1\",\r\n \"facilityIPv4Prefix\": \"80.97.248.0/23,86.104.125.0/24\",\r\n \"facilityIPv6Prefix\": \"2a02:d10:80::/64,2001:7f8:64:225::/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 },\r\n \"peeringLocation\": \"Bucharest\",\r\n \"country\": \"RO\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Bucharest\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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\": \"local\"\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.10.140.47,196.10.140.147\",\r\n \"microsoftIPv6Address\": \"2001:43f8:6d1::47,2001:43f8:6d1::147\",\r\n \"facilityIPv4Prefix\": \"196.10.140.0/24\",\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\": \"local\"\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\": \"local\"\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.136.27,208.115.137.61\",\r\n \"microsoftIPv6Address\": \"2001:504:0:4::8075:1,2001:504:0:4::8075:2\",\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 },\r\n \"peeringLocation\": \"Chicago\",\r\n \"country\": \"US\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Chicago\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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\",\r\n \"bandwidthInMbps\": 40000,\r\n \"microsoftIPv4Address\": \"212.237.192.181,212.237.193.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:202::181,2001:7f8:d:203::181\",\r\n \"facilityIPv4Prefix\": \"212.237.192.0/24,212.237.193.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:202::/64,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 },\r\n \"peeringLocation\": \"Copenhagen\",\r\n \"country\": \"DK\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Copenhagen\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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\": \"local\"\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,198.32.216.72\",\r\n \"microsoftIPv6Address\": \"2605:6c00:303:303::72,2605:6c00:303:303::100\",\r\n \"facilityIPv4Prefix\": \"206.51.46.0/24,198.32.216.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\": \"local\"\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\": 20000,\r\n \"microsoftIPv4Address\": \"185.1.8.22,185.1.8.32\",\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\": \"local\"\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\": \"local\"\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.123,185.1.58.94,185.1.58.161\",\r\n \"microsoftIPv6Address\": \"2001:7f8:9e::1f8b:0:2,2001:7f8:9e::1f8b:0:1,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\": \"local\"\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 },\r\n \"peeringLocation\": \"Frankfurt\",\r\n \"country\": \"DE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Frankfurt\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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\": \"local\"\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\": \"local\"\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.133,80.81.203.105\",\r\n \"microsoftIPv6Address\": \"2001:7f8:3d::1f8b:0:2,2001:7f8:3d::1f8b:0:1\",\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\": \"local\"\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\": \"local\"\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\": \"119.27.63.4,36.255.56.4\",\r\n \"microsoftIPv6Address\": \"2001:de8:7::8075:1\",\r\n \"facilityIPv4Prefix\": \"119.27.63.0/24,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.91.120,123.255.90.222\",\r\n \"microsoftIPv6Address\": \"2001:7fa:0:1::ca28:a178,2001:7fa:0:1::ca28:a0de\",\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\": \"local\"\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\": \"local\"\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\": 10000,\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\": \"local\"\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\": \"local\"\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\": \"local\"\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::54,2001:de8:10::a9\",\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 },\r\n \"peeringLocation\": \"Kuala Lumpur\",\r\n \"country\": \"MY\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Kuala Lumpur\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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\": \"local\"\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\": \"local\"\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\",\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 },\r\n \"peeringLocation\": \"Lisbon\",\r\n \"country\": \"PT\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Lisbon\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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,195.66.224.112\",\r\n \"microsoftIPv6Address\": \"2001:7f8:4::1f8b:1,2001:7f8:4::1fb2:2\",\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\": \"local\"\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\": 40000,\r\n \"microsoftIPv4Address\": \"206.72.210.143\",\r\n \"microsoftIPv6Address\": \"2001:504:13::210:143\",\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\": \"local\"\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\": \"local\"\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\": \"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\": \"local\"\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\": \"France-IX Marseille\",\r\n \"bandwidthInMbps\": 30000,\r\n \"microsoftIPv4Address\": \"37.49.232.14\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54:5::14\",\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 \"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 },\r\n \"peeringLocation\": \"Marseille\",\r\n \"country\": \"FR\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Marseille\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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\": \"\",\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\": \"local\"\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 IX Miami\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"198.32.124.188,198.32.124.189,198.32.242.188,198.32.242.189\",\r\n \"microsoftIPv6Address\": \"2001:478:124::188,2001:478:124::189,2001:504:0:6::8075:1,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\": \"local\"\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.112,217.29.66.212\",\r\n \"microsoftIPv6Address\": \"2001:7f8:b:100:1d1:a5d0:8075:112,2001:7f8:b:100:1d1:a5d0:8075:212\",\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\": \"local\"\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\": \"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\": \"local\"\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\": 200000,\r\n \"microsoftIPv4Address\": \"195.208.208.137\",\r\n \"microsoftIPv6Address\": \"2001:7f8:20:101::208:137\",\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 },\r\n \"peeringLocation\": \"Moscow\",\r\n \"country\": \"RU\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Moscow\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"Exchange\",\r\n \"properties\": {\r\n \"exchange\": {\r\n \"peeringFacilities\": [\r\n {\r\n \"exchangeName\": \"AMS-IX India\",\r\n \"bandwidthInMbps\": 10000,\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/24\",\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\": \"Mumbai IX\",\r\n \"bandwidthInMbps\": 10000,\r\n \"microsoftIPv4Address\": \"103.27.170.5\",\r\n \"microsoftIPv6Address\": \"2401:7500:fff6::5\",\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\": \"local\"\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.133,80.81.202.100,80.81.202.172,80.81.202.167\",\r\n \"microsoftIPv6Address\": \"2001:7f8:44::1f8b:0:2,2001:7f8:44::1f8b:0:1,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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": 40000,\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\": 10000,\r\n \"microsoftIPv4Address\": \"206.82.104.133,206.82.104.215\",\r\n \"microsoftIPv6Address\": \"2001:504:36::1f8b:0:1,2001:504:36::1f8b:0:2\",\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.23,206.126.115.85\",\r\n \"microsoftIPv6Address\": \"2001:504:17:115::23,2001:504:17:115::85\",\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\": \"local\"\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.28,218.100.7.63\",\r\n \"microsoftIPv6Address\": \"2001:de8:c:2::8075:1\",\r\n \"facilityIPv4Prefix\": \"218.100.9.0/24,218.100.7.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 },\r\n \"peeringLocation\": \"Osaka\",\r\n \"country\": \"JP\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Osaka\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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\": \"local\"\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\": \"local\"\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.236.5,37.49.237.119\",\r\n \"microsoftIPv6Address\": \"2001:7f8:54::5,2001:7f8:54::1:119\",\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": \"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\": \"local\"\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\": \"local\"\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.57,198.32.122.60,64.191.232.60,64.191.232.57\",\r\n \"microsoftIPv6Address\": \"2001:478:122::3c,2001:478:122::39,2001:504:0:7::3c,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\": \"local\"\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.241.7,207.231.242.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/25,207.231.241.0/24,207.231.242.0/25,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\": \"local\"\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\": \"local\"\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\": \"local\"\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\": 20000,\r\n \"microsoftIPv4Address\": \"193.169.198.74\",\r\n \"microsoftIPv6Address\": \"2001:7f8:58::1f8b:0:1\",\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\": \"local\"\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\": \"local\"\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\",\r\n \"bandwidthInMbps\": 100000,\r\n \"microsoftIPv4Address\": \"195.245.240.181,194.68.123.181,194.68.128.181,195.69.119.181\",\r\n \"microsoftIPv6Address\": \"2001:7f8:d:fc::181,2001:7f8:d:fb::181,2001:7f8:d:fe::181,2001:7f8:d:ff::181\",\r\n \"facilityIPv4Prefix\": \"195.245.240.0/24,194.68.123.0/24,194.68.128.0/24,195.69.119.0/24\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:d:fc::/64,2001:7f8:d:fb::/64,2001:7f8:d:fe::/64,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 },\r\n \"peeringLocation\": \"Stockholm\",\r\n \"country\": \"SE\",\r\n \"azureRegion\": \"local\"\r\n },\r\n \"name\": \"Stockholm\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n },\r\n {\r\n \"kind\": \"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\",\r\n \"microsoftIPv6Address\": \"2001:de8:6::1:2076:1\",\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\": \"local\"\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\": \"local\"\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.6.76,218.100.7.63\",\r\n \"microsoftIPv6Address\": \"2001:de8:c::8075:1,2001:de8:c::8075:2\",\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\": \"local\"\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.35.109,206.108.34.160\",\r\n \"microsoftIPv6Address\": \"2001:504:1a::35:109,2001:504:1a::34:160\",\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\": \"local\"\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\": \"local\"\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.165\",\r\n \"microsoftIPv6Address\": \"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\": \"local\"\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 (PLIX)\",\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\",\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\": \"local\"\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\",\r\n \"microsoftIPv6Address\": \"2001:7f8:28::25: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\": \"local\"\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/25\",\r\n \"facilityIPv6Prefix\": \"2001:7f8:c:8235:194:42:48:0/112\",\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\": \"local\"\r\n },\r\n \"name\": \"Zurich\",\r\n \"type\": \"Microsoft.Peering/peeringLocations\"\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetOldPeerAsnContactDetails.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetOldPeerAsnContactDetails.json index 4877a919d6aa4..ba287379adfa9 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetOldPeerAsnContactDetails.json +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/GetOldPeerAsnContactDetails.json @@ -1,22 +1,22 @@ { "Entries": [ { - "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-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucz9hcGktdmVyc2lvbj0yMDIwLTAxLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60cb800b-af19-4711-9b94-83ed58264131" + "78be18f1-e1cf-4466-8298-3a8ab96a5c8d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -27,10 +27,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "b8bea24c-f167-4a93-b33b-fa4e3e18e49f" + "9b5357c1-e308-41fe-910e-6013cdcdb5bd" ], "Date": [ - "Tue, 12 May 2020 17:41:26 GMT" + "Tue, 04 Feb 2020 20:28:13 GMT" ], "Content-Length": [ "19" diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/PeeringOperationsTest.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/PeeringOperationsTest.json index 309bf8d7b76f1..48f981ef90e3f 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/PeeringOperationsTest.json +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/PeeringOperationsTest.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.Peering/operations?api-version=2020-04-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDE=", + "RequestUri": "/providers/Microsoft.Peering/operations?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMDEtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "777fa61b-4e12-45f9-a184-9590b53c54f2" + "a7b5f432-1ce5-4cd6-853a-28e6b204b30f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -27,19 +27,19 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "20cd12a4-e6b4-495c-b99a-2811c7441def" + "560eb2ff-b216-46d6-8dc8-e193c276cfa9" ], "Date": [ - "Tue, 12 May 2020 17:41:57 GMT" + "Fri, 24 Jan 2020 19:26:28 GMT" ], "Content-Length": [ - "11249" + "9293" ], "Content-Type": [ "application/json; charset=utf-8" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Peering/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"Peering Resource Provider\",\r\n \"operation\": \"Registers the Peering Resource Provider\",\r\n \"description\": \"Registers the subscription for the Peering Resource Provider and enables the creation of peerings\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerAsns/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerAsns\",\r\n \"operation\": \"Write PeerAsn\",\r\n \"description\": \"Write any peerAsns\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerAsns/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerAsns\",\r\n \"operation\": \"Read PeerAsn\",\r\n \"description\": \"Read any peerAsns\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerAsns/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerAsns\",\r\n \"operation\": \"Delete PeerAsn\",\r\n \"description\": \"Delete any peerAsns\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringLocations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringLocations\",\r\n \"operation\": \"Read PeeringLocation\",\r\n \"description\": \"Read any peeringLocations\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/legacyPeerings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"legacyPeerings\",\r\n \"operation\": \"Read LegacyPeering\",\r\n \"description\": \"Read any legacyPeerings\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerings\",\r\n \"operation\": \"Write Peering\",\r\n \"description\": \"Write any peerings\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerings\",\r\n \"operation\": \"Read Peering\",\r\n \"description\": \"Read any peerings\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerings\",\r\n \"operation\": \"Delete Peering\",\r\n \"description\": \"Delete any peerings\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServiceLocations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServiceLocations\",\r\n \"operation\": \"Read PeeringServiceLocations\",\r\n \"description\": \"Read any peeringServiceLocations\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServiceProviders/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServiceProviders\",\r\n \"operation\": \"Read PeeringServiceProviders\",\r\n \"description\": \"Read any peeringServiceProviders\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServices\",\r\n \"operation\": \"Read PeeringServices\",\r\n \"description\": \"Read any peeringServices\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServices\",\r\n \"operation\": \"Write PeeringService\",\r\n \"description\": \"Write any peeringServices\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServices\",\r\n \"operation\": \"Delete PeeringServices\",\r\n \"description\": \"Delete any peeringServices\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/prefixes/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"prefixes\",\r\n \"operation\": \"Read PeeringServicePrefixes\",\r\n \"description\": \"Read any prefixes\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/prefixes/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"prefixes\",\r\n \"operation\": \"Write PeeringServicePrefixes\",\r\n \"description\": \"Write any prefixes\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/prefixes/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"prefixes\",\r\n \"operation\": \"Delete PeeringServicePrefixes\",\r\n \"description\": \"Delete any prefixes\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/registeredPrefixes/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"registeredPrefixes\",\r\n \"operation\": \"Read RegisteredPrefixes\",\r\n \"description\": \"Read any registeredPrefixes\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/registeredPrefixes/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"registeredPrefixes\",\r\n \"operation\": \"Write RegisteredPrefixes\",\r\n \"description\": \"Write any registeredPrefixes\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/registeredPrefixes/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"registeredPrefixes\",\r\n \"operation\": \"Delete RegisteredPrefixes\",\r\n \"description\": \"Delete any registeredPrefixes\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/registeredAsns/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"registeredAsns\",\r\n \"operation\": \"Read RegisteredAsns\",\r\n \"description\": \"Read any registeredAsns\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/registeredAsns/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"registeredAsns\",\r\n \"operation\": \"Write RegisteredAsns\",\r\n \"description\": \"Write any registeredAsns\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/registeredAsns/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"registeredAsns\",\r\n \"operation\": \"Delete RegisteredAsns\",\r\n \"description\": \"Delete any registeredAsns\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServices\",\r\n \"operation\": \"Read peering service metric definitions\",\r\n \"description\": \"Gets the available metric definitions for peering service\"\r\n },\r\n \"isDataAction\": false,\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"PrefixLatency\",\r\n \"displayName\": \"Prefix Latency\",\r\n \"displayDescription\": \"Median prefix latency\",\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1H\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"PrefixName\",\r\n \"displayName\": \"Prefix Name\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerings\",\r\n \"operation\": \"Read peering metric definitions\",\r\n \"description\": \"Gets the available metric definitions for peering\"\r\n },\r\n \"isDataAction\": false,\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"SessionAvailabilityV4\",\r\n \"displayName\": \"Session Availability V4\",\r\n \"displayDescription\": \"Availability of the V4 session\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT1H\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ConnectionId\",\r\n \"displayName\": \"Connection Identifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"SessionAvailabilityV6\",\r\n \"displayName\": \"Session Availability V6\",\r\n \"displayDescription\": \"Availability of the V6 session\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT1H\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ConnectionId\",\r\n \"displayName\": \"Connection Identifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"IngressTrafficRate\",\r\n \"displayName\": \"Ingress Traffic Rate\",\r\n \"displayDescription\": \"Ingress traffic rate in bits per second\",\r\n \"unit\": \"BitsPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1H\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ConnectionId\",\r\n \"displayName\": \"Connection Identifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"EgressTrafficRate\",\r\n \"displayName\": \"Egress Traffic Rate\",\r\n \"displayDescription\": \"Egress traffic rate in bits per second\",\r\n \"unit\": \"BitsPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1H\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ConnectionId\",\r\n \"displayName\": \"Connection Identifier\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Peering/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"Peering Resource Provider\",\r\n \"operation\": \"Registers the Peering Resource Provider\",\r\n \"description\": \"Registers the subscription for the Peering Resource Provider and enables the creation of peerings\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerAsns/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerAsns\",\r\n \"operation\": \"Write PeerAsn\",\r\n \"description\": \"Write any peerAsns\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerAsns/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerAsns\",\r\n \"operation\": \"Read PeerAsn\",\r\n \"description\": \"Read any peerAsns\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerAsns/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerAsns\",\r\n \"operation\": \"Delete PeerAsn\",\r\n \"description\": \"Delete any peerAsns\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringLocations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringLocations\",\r\n \"operation\": \"Read PeeringLocation\",\r\n \"description\": \"Read any peeringLocations\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/legacyPeerings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"legacyPeerings\",\r\n \"operation\": \"Read LegacyPeering\",\r\n \"description\": \"Read any legacyPeerings\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerings\",\r\n \"operation\": \"Write Peering\",\r\n \"description\": \"Write any peerings\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerings\",\r\n \"operation\": \"Read Peering\",\r\n \"description\": \"Read any peerings\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerings\",\r\n \"operation\": \"Delete Peering\",\r\n \"description\": \"Delete any peerings\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServiceLocations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServiceLocations\",\r\n \"operation\": \"Read PeeringServiceLocations\",\r\n \"description\": \"Read any peeringServiceLocations\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServiceProviders/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServiceProviders\",\r\n \"operation\": \"Read PeeringServiceProviders\",\r\n \"description\": \"Read any peeringServiceProviders\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServices\",\r\n \"operation\": \"Read PeeringServices\",\r\n \"description\": \"Read any peeringServices\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServices\",\r\n \"operation\": \"Write PeeringService\",\r\n \"description\": \"Write any peeringServices\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServices\",\r\n \"operation\": \"Delete PeeringServices\",\r\n \"description\": \"Delete any peeringServices\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/prefixes/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"prefixes\",\r\n \"operation\": \"Read PeeringServicePrefixes\",\r\n \"description\": \"Read any prefixes\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/prefixes/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"prefixes\",\r\n \"operation\": \"Write PeeringServicePrefixes\",\r\n \"description\": \"Write any prefixes\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/prefixes/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"prefixes\",\r\n \"operation\": \"Delete PeeringServicePrefixes\",\r\n \"description\": \"Delete any prefixes\"\r\n },\r\n \"isDataAction\": false\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peeringServices/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peeringServices\",\r\n \"operation\": \"Read peering service metric definitions\",\r\n \"description\": \"Gets the available metric definitions for peering service\"\r\n },\r\n \"isDataAction\": false,\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"PrefixLatency\",\r\n \"displayName\": \"Prefix Latency\",\r\n \"displayDescription\": \"Median prefix latency\",\r\n \"unit\": \"Milliseconds\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1H\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"PrefixName\",\r\n \"displayName\": \"Prefix Name\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Peering/peerings/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Peering\",\r\n \"resource\": \"peerings\",\r\n \"operation\": \"Read peering metric definitions\",\r\n \"description\": \"Gets the available metric definitions for peering\"\r\n },\r\n \"isDataAction\": false,\r\n \"origin\": \"system\",\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"SessionAvailabilityV4\",\r\n \"displayName\": \"Session Availability V4\",\r\n \"displayDescription\": \"Availability of the V4 session\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT1H\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ConnectionId\",\r\n \"displayName\": \"Connection Identifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"SessionAvailabilityV6\",\r\n \"displayName\": \"Session Availability V6\",\r\n \"displayDescription\": \"Availability of the V6 session\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT1H\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ConnectionId\",\r\n \"displayName\": \"Connection Identifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"IngressTrafficRate\",\r\n \"displayName\": \"Ingress Traffic Rate\",\r\n \"displayDescription\": \"Ingress traffic rate in bits per second\",\r\n \"unit\": \"BitsPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1H\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ConnectionId\",\r\n \"displayName\": \"Connection Identifier\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"EgressTrafficRate\",\r\n \"displayName\": \"Egress Traffic Rate\",\r\n \"displayDescription\": \"Egress traffic rate in bits per second\",\r\n \"unit\": \"BitsPerSecond\",\r\n \"aggregationType\": \"Average\",\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1H\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"ConnectionId\",\r\n \"displayName\": \"Connection Identifier\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/UpdatePeerInfoTest.json b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/UpdatePeerInfoTest.json index 0b03c67565c14..270d0f9bac9e2 100644 --- a/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/UpdatePeerInfoTest.json +++ b/sdk/peering/Microsoft.Azure.Management.Peering/tests/SessionRecords/Peering.Tests.PeeringTests/UpdatePeerInfoTest.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Contoso65000?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9Db250b3NvNjUwMDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Contoso65000?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9Db250b3NvNjUwMDA/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"peerAsn\": 65000,\r\n \"peerContactDetail\": [\r\n {\r\n \"role\": \"Noc\",\r\n \"email\": \"noc65000@contoso.com\",\r\n \"phone\": \"9999999\"\r\n }\r\n ],\r\n \"peerName\": \"Contoso65000\",\r\n \"validationState\": \"Approved\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0b143f9c-fb44-40fb-9f6d-c4124ba4de64" + "a7a490f3-5bb4-4f61-8597-fbc6b43641a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,10 +33,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "04c810fa-6091-47bd-8b27-82b8dc84c827" + "e2464e91-2953-4506-bd3b-a80b3ea16f21" ], "Date": [ - "Tue, 12 May 2020 17:41:38 GMT" + "Fri, 24 Jan 2020 19:24:34 GMT" ], "Content-Length": [ "448" @@ -49,22 +49,22 @@ "StatusCode": 201 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Contoso65000?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9Db250b3NvNjUwMDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Contoso65000?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9Db250b3NvNjUwMDA/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8c14053-01ea-4e6b-8a23-74ad25a82af0" + "1d1e2a9d-1e0d-413c-a950-2364c3fe4ca8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -75,10 +75,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "0318cc9f-d5fc-4bb5-a1cf-e6b0bdee1ee7" + "ab3c3098-2833-44ff-a073-1d337dfea1d6" ], "Date": [ - "Tue, 12 May 2020 17:41:38 GMT" + "Fri, 24 Jan 2020 19:24:34 GMT" ], "Content-Length": [ "448" @@ -91,22 +91,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Contoso65000?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9Db250b3NvNjUwMDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Contoso65000?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9Db250b3NvNjUwMDA/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e35efe40-51e5-4a0d-b458-a8ca7d16080e" + "59754906-87c6-4a12-b64b-f8e8addcf7c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -117,10 +117,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "66cde390-d589-4297-8fcf-4c6683e79562" + "0299c692-6fd3-4f1a-8f5a-55a2dda75f74" ], "Date": [ - "Tue, 12 May 2020 17:41:38 GMT" + "Fri, 24 Jan 2020 19:24:34 GMT" ], "Content-Length": [ "68" @@ -133,22 +133,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Contoso65000?api-version=2020-04-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9Db250b3NvNjUwMDA/YXBpLXZlcnNpb249MjAyMC0wNC0wMQ==", + "RequestUri": "/subscriptions/3e919f9a-4e26-4736-aa8d-d596d9a49239/providers/Microsoft.Peering/peerAsns/Contoso65000?api-version=2020-01-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvM2U5MTlmOWEtNGUyNi00NzM2LWFhOGQtZDU5NmQ5YTQ5MjM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuUGVlcmluZy9wZWVyQXNucy9Db250b3NvNjUwMDA/YXBpLXZlcnNpb249MjAyMC0wMS0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6c4ff2d-5973-4373-a310-84f7ad03fd61" + "e9e75d5c-992e-4599-853a-ec76b5d58458" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28619.01", + "FxVersion/4.6.28325.01", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Peering.PeeringManagementClient/2.0.0.1" + "Microsoft.Azure.Management.Peering.PeeringManagementClient/0.13.0.0" ] }, "ResponseHeaders": { @@ -159,10 +159,10 @@ "http://schemas.microsoft.com/dsts/saml2-bearer metadata-version=1,sts-realm=realm://dsts.core.azure-test.net/,certificate-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/certificate,issued-token-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/v2/wstrust/13/issuedtoken-bearer,discovery-sts-address=https://co2agg04-dsts.dsts.core.azure-test.net/2012/IDstsDiscoveryService,service-dns-name=secrets.wanrr-test.radar.core.azure-test.net,known-sts-thumbprints=ForBackwardCompatibility,trusted-sts-thumbprints=ForBackwardCompatibility,error=3,error-description=\"The security token is invalid. Cannot decode base64 encoded string. The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal character among the padding characters. \"" ], "x-ms-request-id": [ - "3079bf70-4cb8-407f-a01f-ab7ca6a6e370" + "326ccd65-8c72-4cbb-89f2-eb11b4073d73" ], "Date": [ - "Tue, 12 May 2020 17:41:38 GMT" + "Fri, 24 Jan 2020 19:24:34 GMT" ], "Content-Length": [ "0"