AzNetworkLatency.psm1
function Get-AzNetworkLatency { <# .SYNOPSIS Get the network latency between two Azure regions. .DESCRIPTION Get the network latency between two Azure regions in milliseconds. The module has an embedded list of all known latencies. This information can be outdated so there is the option to also retrieve this information from an online resource. .PARAMETER Source The Source of the network traffic. Make sure you use the region id. For West Europe this would be "westeurope". .PARAMETER Destination The Destination of the network traffic. Make sure you use the region id. For West Europe this would be "westeurope". .PARAMETER Online Use this parameter to retrieve the data from the online source which results in the most up-to-date information. .PARAMETER IgnoreWarning Use this parameter to suppress the warning which is being generated when the Online parameters isn't used. .EXAMPLE Retrieve the latency from the embedded data. PS> Get-AzNetworkLatency -Source westeurope -Destination eastus -IgnoreWarning 89 .EXAMPLE Retrieve the latency from the online data. PS> Get-AzNetworkLatency -Source westeurope -Destination eastus -Online 89 #> [CmdLetBinding()] [OutputType([int])] Param ( [Parameter(Mandatory = $true, Position = 1, ParameterSetName = 'Online')] [Parameter(Mandatory = $true, Position = 1, ParameterSetName = 'Offline')] [String] $Source, [Parameter(Mandatory = $true, Position = 2, ParameterSetName = 'Online')] [Parameter(Mandatory = $true, Position = 2, ParameterSetName = 'Offline')] [String] $Destination, [Parameter(Mandatory = $true, Position = 3, ParameterSetName = 'Online')] [Switch] $Online, [Parameter(Mandatory = $false, Position = 3, ParameterSetName = 'Offline')] [Switch] $IgnoreWarning ) # Send telemetry Send-THEvent -ModuleName "AzNetworkLatency" -EventName "Get-AzNetworkLatenc" if ($Online) { $ldata = Invoke-RestMethod -Method GET -Uri "https://raw.githubusercontent.com/autosysops/azure_network_latency/refs/heads/main/latencydata.json" } else { if(-not $IgnoreWarning) { Write-Warning "[WARNING] Module uses embedded latency data. This data could be outdate. Use the switch -online for the most recent data. To suppress this message use the switch -IgnoreWarning." } $ldata = $script:latencyData } # Find the source $s = $ldata.Sources | Where-Object { $_.id -eq $Source } if ($s) { # Find the destination $d = $s.Destinations | Where-Object { $_.id -eq $Destination } if ($d) { return $d.Latency } else { Write-Error "[ERROR] Can't find Destination $Destination. Make sure you are using the id of the destination. For West Europe that would be `"westeurope`"" } } else { Write-Error "[ERROR] Can't find Source $Source. Make sure you are using the id of the source. For West Europe that would be `"westeurope`"" } return -1 } # =================================================================== # ================== TELEMETRY ====================================== # =================================================================== # Create env variables $Env:AzNetworkLatency_TELEMETRY_OPTIN = (-not $Evn:POWERSHELL_TELEMETRY_OPTOUT) # use the invert of default powershell telemetry setting # Set up the telemetry Initialize-THTelemetry -ModuleName "AzNetworkLatency" Set-THTelemetryConfiguration -ModuleName "AzNetworkLatency" -OptInVariableName "AZNNETWORKLATENCY_TELEMETRY_OPTIN" -StripPersonallyIdentifiableInformation $true -Confirm:$false Add-THAppInsightsConnectionString -ModuleName "AzNetworkLatency" -ConnectionString "InstrumentationKey=df9757a1-873b-41c6-b4a2-2b93d15c9fb1;IngestionEndpoint=https://westeurope-5.in.applicationinsights.azure.com/;LiveEndpoint=https://westeurope.livediagnostics.monitor.azure.com/" # Create a message about the telemetry Write-Information ("Telemetry for AzNetworkLatency module is $(if([string] $Env:AZNNETWORKLATENCY_TELEMETRY_OPTIN -in ("no","false","0")){"NOT "})enabled. Change the behavior by setting the value of " + '$Env:AZNNETWORKLATENCY_TELEMETRY_OPTIN') -InformationAction Continue # Send a metric for the installation of the module Send-THEvent -ModuleName "AzNetworkLatency" -EventName "Import Module AzNetworkLatency" # Local storage of latency data $script:latencyData = '{"Sources":[{"Name":"West US","id":"westus","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"148"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"148"},{"Name":"Australia East","id":"australiaeast","Latency":"140"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"153"},{"Name":"Brazil South","id":"brazilsouth","Latency":"186"},{"Name":"Canada Central","id":"canadacentral","Latency":"61"},{"Name":"Canada East","id":"canadaeast","Latency":"71"},{"Name":"Central India","id":"centralindia","Latency":"220"},{"Name":"Central US","id":"centralus","Latency":"41"},{"Name":"East Asia","id":"eastasia","Latency":"151"},{"Name":"East US","id":"eastus","Latency":"71"},{"Name":"East US 2","id":"eastus2","Latency":"69"},{"Name":"France Central","id":"francecentral","Latency":"150"},{"Name":"France South","id":"francesouth","Latency":"153"},{"Name":"Germany North","id":"germanynorth","Latency":"165"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"160"},{"Name":"Israel Central","id":"israelcentral","Latency":"194"},{"Name":"Italy North","id":"italynorth","Latency":"165"},{"Name":"Japan East","id":"japaneast","Latency":"108"},{"Name":"Japan West","id":"japanwest","Latency":"115"},{"Name":"Korea Central","id":"koreacentral","Latency":"160"},{"Name":"Korea South","id":"koreasouth","Latency":"132"},{"Name":"North Central US","id":"northcentralus","Latency":"51"},{"Name":"North Europe","id":"northeurope","Latency":"156"},{"Name":"Norway East","id":"norwayeast","Latency":"172"},{"Name":"Norway West","id":"norwaywest","Latency":"167"},{"Name":"Poland Central","id":"polandcentral","Latency":"175"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"264"},{"Name":"South Africa North","id":"southafricanorth","Latency":"294"},{"Name":"South Africa West","id":"southafricawest","Latency":"278"},{"Name":"South Central US","id":"southcentralus","Latency":"36"},{"Name":"South India","id":"southindia","Latency":"203"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"171"},{"Name":"Sweden Central","id":"swedencentral","Latency":"183"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"167"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"160"},{"Name":"UAE Central","id":"uaecentral","Latency":"252"},{"Name":"UAE North","id":"uaenorth","Latency":"255"},{"Name":"UK South","id":"uksouth","Latency":"148"},{"Name":"UK West","id":"ukwest","Latency":"153"},{"Name":"West Central US","id":"westcentralus","Latency":"27"},{"Name":"West Europe","id":"westeurope","Latency":"154"},{"Name":"West US","id":"westus","Latency":"24"},{"Name":"West US 2","id":"westus2","Latency":"25"},{"Name":"West US 3","id":"westus3","Latency":"19"}]},{"Name":"West US 2","id":"westus2","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"168"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"167"},{"Name":"Australia East","id":"australiaeast","Latency":"161"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"174"},{"Name":"Brazil South","id":"brazilsouth","Latency":"183"},{"Name":"Canada Central","id":"canadacentral","Latency":"60"},{"Name":"Canada East","id":"canadaeast","Latency":"69"},{"Name":"Central India","id":"centralindia","Latency":"212"},{"Name":"Central US","id":"centralus","Latency":"39"},{"Name":"East Asia","id":"eastasia","Latency":"143"},{"Name":"East US","id":"eastus","Latency":"66"},{"Name":"East US 2","id":"eastus2","Latency":"70"},{"Name":"France Central","id":"francecentral","Latency":"150"},{"Name":"France South","id":"francesouth","Latency":"148"},{"Name":"Germany North","id":"germanynorth","Latency":"164"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"157"},{"Name":"Israel Central","id":"israelcentral","Latency":"190"},{"Name":"Italy North","id":"italynorth","Latency":"162"},{"Name":"Japan East","id":"japaneast","Latency":"100"},{"Name":"Japan West","id":"japanwest","Latency":"107"},{"Name":"Korea Central","id":"koreacentral","Latency":"124"},{"Name":"Korea South","id":"koreasouth","Latency":"124"},{"Name":"North Central US","id":"northcentralus","Latency":"49"},{"Name":"North Europe","id":"northeurope","Latency":"152"},{"Name":"Norway East","id":"norwayeast","Latency":"171"},{"Name":"Norway West","id":"norwaywest","Latency":"167"},{"Name":"Poland Central","id":"polandcentral","Latency":"177"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"254"},{"Name":"South Africa North","id":"southafricanorth","Latency":"291"},{"Name":"South Africa West","id":"southafricawest","Latency":"275"},{"Name":"South Central US","id":"southcentralus","Latency":"48"},{"Name":"South India","id":"southindia","Latency":"196"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"163"},{"Name":"Sweden Central","id":"swedencentral","Latency":"182"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"164"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"159"},{"Name":"UAE Central","id":"uaecentral","Latency":"249"},{"Name":"UAE North","id":"uaenorth","Latency":"251"},{"Name":"UK South","id":"uksouth","Latency":"146"},{"Name":"UK West","id":"ukwest","Latency":"149"},{"Name":"West Central US","id":"westcentralus","Latency":"25"},{"Name":"West Europe","id":"westeurope","Latency":"154"},{"Name":"West US 3","id":"westus3","Latency":"39"}]},{"Name":"Central US","id":"centralus","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"177"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"177"},{"Name":"Australia East","id":"australiaeast","Latency":"174"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"185"},{"Name":"Brazil South","id":"brazilsouth","Latency":"149"},{"Name":"Canada Central","id":"canadacentral","Latency":"24"},{"Name":"Canada East","id":"canadaeast","Latency":"33"},{"Name":"Central India","id":"centralindia","Latency":"231"},{"Name":"Central US","id":"centralus","Latency":"14"},{"Name":"East Asia","id":"eastasia","Latency":"180"},{"Name":"East US","id":"eastus","Latency":"31"},{"Name":"East US 2","id":"eastus2","Latency":"35"},{"Name":"France Central","id":"francecentral","Latency":"116"},{"Name":"France South","id":"francesouth","Latency":"116"},{"Name":"Germany North","id":"germanynorth","Latency":"130"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"123"},{"Name":"Israel Central","id":"israelcentral","Latency":"156"},{"Name":"Italy North","id":"italynorth","Latency":"127"},{"Name":"Japan East","id":"japaneast","Latency":"137"},{"Name":"Japan West","id":"japanwest","Latency":"144"},{"Name":"Korea Central","id":"koreacentral","Latency":"197"},{"Name":"Korea South","id":"koreasouth","Latency":"160"},{"Name":"North Central US","id":"northcentralus","Latency":"14"},{"Name":"North Europe","id":"northeurope","Latency":"112"},{"Name":"Norway East","id":"norwayeast","Latency":"136"},{"Name":"Norway West","id":"norwaywest","Latency":"129"},{"Name":"Poland Central","id":"polandcentral","Latency":"141"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"226"},{"Name":"South Africa North","id":"southafricanorth","Latency":"257"},{"Name":"South Africa West","id":"southafricawest","Latency":"241"},{"Name":"South Central US","id":"southcentralus","Latency":"27"},{"Name":"South India","id":"southindia","Latency":"232"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"200"},{"Name":"Sweden Central","id":"swedencentral","Latency":"142"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"129"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"123"},{"Name":"UAE Central","id":"uaecentral","Latency":"214"},{"Name":"UAE North","id":"uaenorth","Latency":"217"},{"Name":"UK South","id":"uksouth","Latency":"104"},{"Name":"UK West","id":"ukwest","Latency":"105"},{"Name":"West Central US","id":"westcentralus","Latency":"17"},{"Name":"West Europe","id":"westeurope","Latency":"119"},{"Name":"West US","id":"westus","Latency":"41"},{"Name":"West US 2","id":"westus2","Latency":"39"},{"Name":"West US 3","id":"westus3","Latency":"45"}]},{"Name":"North Central US","id":"northcentralus","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"190"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"190"},{"Name":"Australia East","id":"australiaeast","Latency":"184"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"195"},{"Name":"Brazil South","id":"brazilsouth","Latency":"137"},{"Name":"Canada Central","id":"canadacentral","Latency":"17"},{"Name":"Canada East","id":"canadaeast","Latency":"26"},{"Name":"Central India","id":"centralindia","Latency":"224"},{"Name":"Central US","id":"centralus","Latency":"27"},{"Name":"East Asia","id":"eastasia","Latency":"191"},{"Name":"East US","id":"eastus","Latency":"21"},{"Name":"East US 2","id":"eastus2","Latency":"26"},{"Name":"France Central","id":"francecentral","Latency":"107"},{"Name":"France South","id":"francesouth","Latency":"102"},{"Name":"Germany North","id":"germanynorth","Latency":"121"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"114"},{"Name":"Israel Central","id":"israelcentral","Latency":"144"},{"Name":"Italy North","id":"italynorth","Latency":"115"},{"Name":"Japan East","id":"japaneast","Latency":"148"},{"Name":"Japan West","id":"japanwest","Latency":"155"},{"Name":"Korea Central","id":"koreacentral","Latency":"218"},{"Name":"Korea South","id":"koreasouth","Latency":"174"},{"Name":"North Central US","id":"northcentralus","Latency":"37"},{"Name":"North Europe","id":"northeurope","Latency":"104"},{"Name":"Norway East","id":"norwayeast","Latency":"127"},{"Name":"Norway West","id":"norwaywest","Latency":"118"},{"Name":"Poland Central","id":"polandcentral","Latency":"129"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"214"},{"Name":"South Africa North","id":"southafricanorth","Latency":"245"},{"Name":"South Africa West","id":"southafricawest","Latency":"228"},{"Name":"South Central US","id":"southcentralus","Latency":"36"},{"Name":"South India","id":"southindia","Latency":"247"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"212"},{"Name":"Sweden Central","id":"swedencentral","Latency":"132"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"117"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"111"},{"Name":"UAE Central","id":"uaecentral","Latency":"202"},{"Name":"UAE North","id":"uaenorth","Latency":"205"},{"Name":"UK South","id":"uksouth","Latency":"94"},{"Name":"UK West","id":"ukwest","Latency":"97"},{"Name":"West Central US","id":"westcentralus","Latency":"27"},{"Name":"West Europe","id":"westeurope","Latency":"109"},{"Name":"West US","id":"westus","Latency":"50"},{"Name":"West US 2","id":"westus2","Latency":"49"},{"Name":"West US 3","id":"westus3","Latency":"53"}]},{"Name":"South Central US","id":"southcentralus","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"166"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"166"},{"Name":"Australia East","id":"australiaeast","Latency":"162"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"173"},{"Name":"Brazil South","id":"brazilsouth","Latency":"142"},{"Name":"Canada Central","id":"canadacentral","Latency":"47"},{"Name":"Canada East","id":"canadaeast","Latency":"57"},{"Name":"Central India","id":"centralindia","Latency":"230"},{"Name":"Central US","id":"centralus","Latency":"18"},{"Name":"East Asia","id":"eastasia","Latency":"171"},{"Name":"East US","id":"eastus","Latency":"35"},{"Name":"East US 2","id":"eastus2","Latency":"34"},{"Name":"France Central","id":"francecentral","Latency":"112"},{"Name":"France South","id":"francesouth","Latency":"116"},{"Name":"Germany North","id":"germanynorth","Latency":"128"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"122"},{"Name":"Israel Central","id":"israelcentral","Latency":"155"},{"Name":"Italy North","id":"italynorth","Latency":"126"},{"Name":"Japan East","id":"japaneast","Latency":"128"},{"Name":"Japan West","id":"japanwest","Latency":"134"},{"Name":"Korea Central","id":"koreacentral","Latency":"166"},{"Name":"Korea South","id":"koreasouth","Latency":"152"},{"Name":"North Central US","id":"northcentralus","Latency":"28"},{"Name":"North Europe","id":"northeurope","Latency":"122"},{"Name":"Norway East","id":"norwayeast","Latency":"136"},{"Name":"Norway West","id":"norwaywest","Latency":"133"},{"Name":"Poland Central","id":"polandcentral","Latency":"141"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"224"},{"Name":"South Africa North","id":"southafricanorth","Latency":"255"},{"Name":"South Africa West","id":"southafricawest","Latency":"239"},{"Name":"South Central US","id":"southcentralus","Latency":"26"},{"Name":"South India","id":"southindia","Latency":"230"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"203"},{"Name":"Sweden Central","id":"swedencentral","Latency":"142"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"127"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"125"},{"Name":"UAE Central","id":"uaecentral","Latency":"213"},{"Name":"UAE North","id":"uaenorth","Latency":"215"},{"Name":"UK South","id":"uksouth","Latency":"114"},{"Name":"UK West","id":"ukwest","Latency":"117"},{"Name":"West Central US","id":"westcentralus","Latency":"25"},{"Name":"West Europe","id":"westeurope","Latency":"119"},{"Name":"West US","id":"westus","Latency":"36"},{"Name":"West US 2","id":"westus2","Latency":"50"},{"Name":"West US 3","id":"westus3","Latency":"22"}]},{"Name":"West Central US","id":"westcentralus","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"164"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"164"},{"Name":"Australia East","id":"australiaeast","Latency":"160"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"171"},{"Name":"Brazil South","id":"brazilsouth","Latency":"163"},{"Name":"Canada Central","id":"canadacentral","Latency":"38"},{"Name":"Canada East","id":"canadaeast","Latency":"48"},{"Name":"Central India","id":"centralindia","Latency":"240"},{"Name":"East Asia","id":"eastasia","Latency":"167"},{"Name":"East US","id":"eastus","Latency":"45"},{"Name":"East US 2","id":"eastus2","Latency":"50"},{"Name":"France Central","id":"francecentral","Latency":"131"},{"Name":"France South","id":"francesouth","Latency":"130"},{"Name":"Germany North","id":"germanynorth","Latency":"145"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"138"},{"Name":"Israel Central","id":"israelcentral","Latency":"171"},{"Name":"Italy North","id":"italynorth","Latency":"141"},{"Name":"Japan East","id":"japaneast","Latency":"123"},{"Name":"Japan West","id":"japanwest","Latency":"130"},{"Name":"Korea Central","id":"koreacentral","Latency":"179"},{"Name":"Korea South","id":"koreasouth","Latency":"149"},{"Name":"North Europe","id":"northeurope","Latency":"132"},{"Name":"Norway East","id":"norwayeast","Latency":"150"},{"Name":"Norway West","id":"norwaywest","Latency":"145"},{"Name":"Poland Central","id":"polandcentral","Latency":"155"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"240"},{"Name":"South Africa North","id":"southafricanorth","Latency":"271"},{"Name":"South Africa West","id":"southafricawest","Latency":"255"},{"Name":"South India","id":"southindia","Latency":"223"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"190"},{"Name":"Sweden Central","id":"swedencentral","Latency":"162"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"143"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"138"},{"Name":"UAE Central","id":"uaecentral","Latency":"229"},{"Name":"UAE North","id":"uaenorth","Latency":"231"},{"Name":"UK South","id":"uksouth","Latency":"124"},{"Name":"UK West","id":"ukwest","Latency":"127"},{"Name":"West Europe","id":"westeurope","Latency":"132"},{"Name":"West US","id":"westus","Latency":"27"},{"Name":"West US 2","id":"westus2","Latency":"26"},{"Name":"West US 3","id":"westus3","Latency":"34"}]},{"Name":"East US","id":"eastus","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"203"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"203"},{"Name":"Australia East","id":"australiaeast","Latency":"201"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"213"},{"Name":"Brazil South","id":"brazilsouth","Latency":"119"},{"Name":"Canada Central","id":"canadacentral","Latency":"20"},{"Name":"Canada East","id":"canadaeast","Latency":"29"},{"Name":"Central India","id":"centralindia","Latency":"203"},{"Name":"Central US","id":"centralus","Latency":"33"},{"Name":"East Asia","id":"eastasia","Latency":"213"},{"Name":"East US","id":"eastus","Latency":"9"},{"Name":"East US 2","id":"eastus2","Latency":"10"},{"Name":"France Central","id":"francecentral","Latency":"90"},{"Name":"France South","id":"francesouth","Latency":"85"},{"Name":"Germany North","id":"germanynorth","Latency":"103"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"96"},{"Name":"Israel Central","id":"israelcentral","Latency":"126"},{"Name":"Italy North","id":"italynorth","Latency":"97"},{"Name":"Japan East","id":"japaneast","Latency":"170"},{"Name":"Japan West","id":"japanwest","Latency":"177"},{"Name":"Korea Central","id":"koreacentral","Latency":"229"},{"Name":"Korea South","id":"koreasouth","Latency":"188"},{"Name":"North Central US","id":"northcentralus","Latency":"24"},{"Name":"North Europe","id":"northeurope","Latency":"88"},{"Name":"Norway East","id":"norwayeast","Latency":"108"},{"Name":"Norway West","id":"norwaywest","Latency":"102"},{"Name":"Poland Central","id":"polandcentral","Latency":"113"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"196"},{"Name":"South Africa North","id":"southafricanorth","Latency":"227"},{"Name":"South Africa West","id":"southafricawest","Latency":"210"},{"Name":"South Central US","id":"southcentralus","Latency":"38"},{"Name":"South India","id":"southindia","Latency":"225"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"234"},{"Name":"Sweden Central","id":"swedencentral","Latency":"119"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"99"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"93"},{"Name":"UAE Central","id":"uaecentral","Latency":"184"},{"Name":"UAE North","id":"uaenorth","Latency":"187"},{"Name":"UK South","id":"uksouth","Latency":"79"},{"Name":"UK West","id":"ukwest","Latency":"83"},{"Name":"West Central US","id":"westcentralus","Latency":"47"},{"Name":"West Europe","id":"westeurope","Latency":"90"},{"Name":"West US","id":"westus","Latency":"74"},{"Name":"West US 2","id":"westus2","Latency":"69"},{"Name":"West US 3","id":"westus3","Latency":"60"}]},{"Name":"East US 2","id":"eastus2","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"198"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"198"},{"Name":"Australia East","id":"australiaeast","Latency":"197"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"207"},{"Name":"Brazil South","id":"brazilsouth","Latency":"118"},{"Name":"Canada Central","id":"canadacentral","Latency":"23"},{"Name":"Canada East","id":"canadaeast","Latency":"32"},{"Name":"Central India","id":"centralindia","Latency":"205"},{"Name":"Central US","id":"centralus","Latency":"37"},{"Name":"East Asia","id":"eastasia","Latency":"206"},{"Name":"France Central","id":"francecentral","Latency":"85"},{"Name":"France South","id":"francesouth","Latency":"89"},{"Name":"Germany North","id":"germanynorth","Latency":"99"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"92"},{"Name":"Israel Central","id":"israelcentral","Latency":"130"},{"Name":"Italy North","id":"italynorth","Latency":"101"},{"Name":"Japan East","id":"japaneast","Latency":"163"},{"Name":"Japan West","id":"japanwest","Latency":"170"},{"Name":"Korea Central","id":"koreacentral","Latency":"198"},{"Name":"Korea South","id":"koreasouth","Latency":"182"},{"Name":"North Central US","id":"northcentralus","Latency":"27"},{"Name":"North Europe","id":"northeurope","Latency":"95"},{"Name":"Norway East","id":"norwayeast","Latency":"110"},{"Name":"Norway West","id":"norwaywest","Latency":"103"},{"Name":"Poland Central","id":"polandcentral","Latency":"112"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"199"},{"Name":"South Africa North","id":"southafricanorth","Latency":"230"},{"Name":"South Africa West","id":"southafricawest","Latency":"214"},{"Name":"South Central US","id":"southcentralus","Latency":"33"},{"Name":"South India","id":"southindia","Latency":"230"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"233"},{"Name":"Sweden Central","id":"swedencentral","Latency":"117"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"103"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"97"},{"Name":"UAE Central","id":"uaecentral","Latency":"188"},{"Name":"UAE North","id":"uaenorth","Latency":"190"},{"Name":"UK South","id":"uksouth","Latency":"89"},{"Name":"UK West","id":"ukwest","Latency":"92"},{"Name":"West Central US","id":"westcentralus","Latency":"51"},{"Name":"West Europe","id":"westeurope","Latency":"91"},{"Name":"West US","id":"westus","Latency":"67"},{"Name":"West US 2","id":"westus2","Latency":"73"},{"Name":"West US 3","id":"westus3","Latency":"56"}]},{"Name":"Brazil South","id":"brazilsouth","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"304"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"304"},{"Name":"Australia East","id":"australiaeast","Latency":"316"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"312"},{"Name":"Brazil South","id":"brazilsouth","Latency":"131"},{"Name":"Canada Central","id":"canadacentral","Latency":"130"},{"Name":"Canada East","id":"canadaeast","Latency":"135"},{"Name":"Central India","id":"centralindia","Latency":"307"},{"Name":"Central US","id":"centralus","Latency":"149"},{"Name":"East Asia","id":"eastasia","Latency":"320"},{"Name":"East US","id":"eastus","Latency":"116"},{"Name":"East US 2","id":"eastus2","Latency":"116"},{"Name":"France Central","id":"francecentral","Latency":"190"},{"Name":"France South","id":"francesouth","Latency":"186"},{"Name":"Germany North","id":"germanynorth","Latency":"204"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"197"},{"Name":"Israel Central","id":"israelcentral","Latency":"226"},{"Name":"Italy North","id":"italynorth","Latency":"197"},{"Name":"Japan East","id":"japaneast","Latency":"278"},{"Name":"Japan West","id":"japanwest","Latency":"281"},{"Name":"Korea Central","id":"koreacentral","Latency":"302"},{"Name":"Korea South","id":"koreasouth","Latency":"308"},{"Name":"North Central US","id":"northcentralus","Latency":"137"},{"Name":"North Europe","id":"northeurope","Latency":"187"},{"Name":"Norway East","id":"norwayeast","Latency":"211"},{"Name":"Norway West","id":"norwaywest","Latency":"199"},{"Name":"Poland Central","id":"polandcentral","Latency":"210"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"296"},{"Name":"South Africa North","id":"southafricanorth","Latency":"326"},{"Name":"South Africa West","id":"southafricawest","Latency":"311"},{"Name":"South Central US","id":"southcentralus","Latency":"142"},{"Name":"South India","id":"southindia","Latency":"326"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"343"},{"Name":"Sweden Central","id":"swedencentral","Latency":"213"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"199"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"193"},{"Name":"UAE Central","id":"uaecentral","Latency":"284"},{"Name":"UAE North","id":"uaenorth","Latency":"287"},{"Name":"UK South","id":"uksouth","Latency":"179"},{"Name":"UK West","id":"ukwest","Latency":"181"},{"Name":"West Central US","id":"westcentralus","Latency":"162"},{"Name":"West Europe","id":"westeurope","Latency":"185"},{"Name":"West US","id":"westus","Latency":"186"},{"Name":"West US 2","id":"westus2","Latency":"184"},{"Name":"West US 3","id":"westus3","Latency":"163"}]},{"Name":"Canada Central","id":"canadacentral","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"201"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"200"},{"Name":"Australia East","id":"australiaeast","Latency":"196"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"207"},{"Name":"Brazil South","id":"brazilsouth","Latency":"136"},{"Name":"Canada Central","id":"canadacentral","Latency":"15"},{"Name":"Canada East","id":"canadaeast","Latency":"15"},{"Name":"Central India","id":"centralindia","Latency":"213"},{"Name":"Central US","id":"centralus","Latency":"25"},{"Name":"East Asia","id":"eastasia","Latency":"203"},{"Name":"East US","id":"eastus","Latency":"18"},{"Name":"East US 2","id":"eastus2","Latency":"23"},{"Name":"France Central","id":"francecentral","Latency":"103"},{"Name":"France South","id":"francesouth","Latency":"99"},{"Name":"Germany North","id":"germanynorth","Latency":"117"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"110"},{"Name":"Israel Central","id":"israelcentral","Latency":"138"},{"Name":"Italy North","id":"italynorth","Latency":"110"},{"Name":"Japan East","id":"japaneast","Latency":"159"},{"Name":"Japan West","id":"japanwest","Latency":"166"},{"Name":"Korea Central","id":"koreacentral","Latency":"236"},{"Name":"Korea South","id":"koreasouth","Latency":"179"},{"Name":"North Central US","id":"northcentralus","Latency":"18"},{"Name":"North Europe","id":"northeurope","Latency":"99"},{"Name":"Norway East","id":"norwayeast","Latency":"114"},{"Name":"Norway West","id":"norwaywest","Latency":"110"},{"Name":"Poland Central","id":"polandcentral","Latency":"123"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"208"},{"Name":"South Africa North","id":"southafricanorth","Latency":"239"},{"Name":"South Africa West","id":"southafricawest","Latency":"223"},{"Name":"South Central US","id":"southcentralus","Latency":"48"},{"Name":"South India","id":"southindia","Latency":"237"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"223"},{"Name":"Sweden Central","id":"swedencentral","Latency":"125"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"111"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"106"},{"Name":"UAE Central","id":"uaecentral","Latency":"196"},{"Name":"UAE North","id":"uaenorth","Latency":"199"},{"Name":"UK South","id":"uksouth","Latency":"90"},{"Name":"UK West","id":"ukwest","Latency":"93"},{"Name":"West Central US","id":"westcentralus","Latency":"39"},{"Name":"West Europe","id":"westeurope","Latency":"95"},{"Name":"West US","id":"westus","Latency":"62"},{"Name":"West US 2","id":"westus2","Latency":"62"},{"Name":"West US 3","id":"westus3","Latency":"66"}]},{"Name":"Canada East","id":"canadaeast","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"211"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"211"},{"Name":"Australia East","id":"australiaeast","Latency":"206"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"216"},{"Name":"Central India","id":"centralindia","Latency":"218"},{"Name":"Central US","id":"centralus","Latency":"34"},{"Name":"East Asia","id":"eastasia","Latency":"212"},{"Name":"East US","id":"eastus","Latency":"28"},{"Name":"East US 2","id":"eastus2","Latency":"33"},{"Name":"France Central","id":"francecentral","Latency":"113"},{"Name":"France South","id":"francesouth","Latency":"109"},{"Name":"Germany North","id":"germanynorth","Latency":"126"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"119"},{"Name":"Israel Central","id":"israelcentral","Latency":"144"},{"Name":"Italy North","id":"italynorth","Latency":"117"},{"Name":"Japan East","id":"japaneast","Latency":"169"},{"Name":"Japan West","id":"japanwest","Latency":"176"},{"Name":"Korea Central","id":"koreacentral","Latency":"193"},{"Name":"Korea South","id":"koreasouth","Latency":"188"},{"Name":"North Central US","id":"northcentralus","Latency":"28"},{"Name":"North Europe","id":"northeurope","Latency":"106"},{"Name":"Norway East","id":"norwayeast","Latency":"124"},{"Name":"Norway West","id":"norwaywest","Latency":"115"},{"Name":"Poland Central","id":"polandcentral","Latency":"129"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"213"},{"Name":"South Africa North","id":"southafricanorth","Latency":"244"},{"Name":"South Africa West","id":"southafricawest","Latency":"228"},{"Name":"South Central US","id":"southcentralus","Latency":"58"},{"Name":"South India","id":"southindia","Latency":"242"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"233"},{"Name":"Sweden Central","id":"swedencentral","Latency":"131"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"119"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"116"},{"Name":"UAE Central","id":"uaecentral","Latency":"202"},{"Name":"UAE North","id":"uaenorth","Latency":"204"},{"Name":"UK South","id":"uksouth","Latency":"99"},{"Name":"UK West","id":"ukwest","Latency":"102"},{"Name":"West Central US","id":"westcentralus","Latency":"49"},{"Name":"West Europe","id":"westeurope","Latency":"102"},{"Name":"West US","id":"westus","Latency":"71"},{"Name":"West US 2","id":"westus2","Latency":"71"},{"Name":"West US 3","id":"westus3","Latency":"75"}]},{"Name":"Australia Central","id":"australiacentral","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"3"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"4"},{"Name":"Australia East","id":"australiaeast","Latency":"10"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"19"},{"Name":"Brazil South","id":"brazilsouth","Latency":"305"},{"Name":"Canada Central","id":"canadacentral","Latency":"201"},{"Name":"Canada East","id":"canadaeast","Latency":"210"},{"Name":"Central India","id":"centralindia","Latency":"148"},{"Name":"Central US","id":"centralus","Latency":"178"},{"Name":"East Asia","id":"eastasia","Latency":"124"},{"Name":"East US","id":"eastus","Latency":"200"},{"Name":"East US 2","id":"eastus2","Latency":"196"},{"Name":"France Central","id":"francecentral","Latency":"287"},{"Name":"France South","id":"francesouth","Latency":"275"},{"Name":"Germany North","id":"germanynorth","Latency":"297"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"290"},{"Name":"Israel Central","id":"israelcentral","Latency":"314"},{"Name":"Italy North","id":"italynorth","Latency":"286"},{"Name":"Japan East","id":"japaneast","Latency":"108"},{"Name":"Japan West","id":"japanwest","Latency":"115"},{"Name":"Korea Central","id":"koreacentral","Latency":"133"},{"Name":"Korea South","id":"koreasouth","Latency":"129"},{"Name":"North Central US","id":"northcentralus","Latency":"190"},{"Name":"North Europe","id":"northeurope","Latency":"296"},{"Name":"Norway East","id":"norwayeast","Latency":"309"},{"Name":"Norway West","id":"norwaywest","Latency":"305"},{"Name":"Poland Central","id":"polandcentral","Latency":"306"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"184"},{"Name":"South Africa North","id":"southafricanorth","Latency":"280"},{"Name":"South Africa West","id":"southafricawest","Latency":"295"},{"Name":"South Central US","id":"southcentralus","Latency":"166"},{"Name":"South India","id":"southindia","Latency":"132"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"100"},{"Name":"Sweden Central","id":"swedencentral","Latency":"313"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"287"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"285"},{"Name":"UAE Central","id":"uaecentral","Latency":"178"},{"Name":"UAE North","id":"uaenorth","Latency":"183"},{"Name":"UK South","id":"uksouth","Latency":"287"},{"Name":"UK West","id":"ukwest","Latency":"289"},{"Name":"West Central US","id":"westcentralus","Latency":"164"},{"Name":"West Europe","id":"westeurope","Latency":"291"},{"Name":"West US","id":"westus","Latency":"148"},{"Name":"West US 2","id":"westus2","Latency":"169"},{"Name":"West US 3","id":"westus3","Latency":"149"}]},{"Name":"Australia Central 2","id":"australiacentral2","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"10"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"9"},{"Name":"Australia East","id":"australiaeast","Latency":"9"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"15"},{"Name":"Brazil South","id":"brazilsouth","Latency":"304"},{"Name":"Canada Central","id":"canadacentral","Latency":"199"},{"Name":"Canada East","id":"canadaeast","Latency":"209"},{"Name":"Central India","id":"centralindia","Latency":"147"},{"Name":"Central US","id":"centralus","Latency":"177"},{"Name":"East Asia","id":"eastasia","Latency":"123"},{"Name":"East US","id":"eastus","Latency":"199"},{"Name":"East US 2","id":"eastus2","Latency":"195"},{"Name":"France Central","id":"francecentral","Latency":"278"},{"Name":"France South","id":"francesouth","Latency":"267"},{"Name":"Germany North","id":"germanynorth","Latency":"288"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"282"},{"Name":"Israel Central","id":"israelcentral","Latency":"307"},{"Name":"Italy North","id":"italynorth","Latency":"278"},{"Name":"Japan East","id":"japaneast","Latency":"107"},{"Name":"Japan West","id":"japanwest","Latency":"114"},{"Name":"Korea Central","id":"koreacentral","Latency":"132"},{"Name":"Korea South","id":"koreasouth","Latency":"129"},{"Name":"North Central US","id":"northcentralus","Latency":"190"},{"Name":"North Europe","id":"northeurope","Latency":"283"},{"Name":"Norway East","id":"norwayeast","Latency":"300"},{"Name":"Norway West","id":"norwaywest","Latency":"294"},{"Name":"Poland Central","id":"polandcentral","Latency":"297"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"182"},{"Name":"South Africa North","id":"southafricanorth","Latency":"278"},{"Name":"South Africa West","id":"southafricawest","Latency":"294"},{"Name":"South Central US","id":"southcentralus","Latency":"165"},{"Name":"South India","id":"southindia","Latency":"131"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"98"},{"Name":"Sweden Central","id":"swedencentral","Latency":"305"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"280"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"279"},{"Name":"UAE Central","id":"uaecentral","Latency":"177"},{"Name":"UAE North","id":"uaenorth","Latency":"180"},{"Name":"UK South","id":"uksouth","Latency":"275"},{"Name":"UK West","id":"ukwest","Latency":"277"},{"Name":"West Central US","id":"westcentralus","Latency":"163"},{"Name":"West Europe","id":"westeurope","Latency":"279"},{"Name":"West US","id":"westus","Latency":"147"},{"Name":"West US 2","id":"westus2","Latency":"168"},{"Name":"West US 3","id":"westus3","Latency":"148"}]},{"Name":"Australia East","id":"australiaeast","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"18"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"15"},{"Name":"Australia East","id":"australiaeast","Latency":"16"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"16"},{"Name":"Brazil South","id":"brazilsouth","Latency":"317"},{"Name":"Canada Central","id":"canadacentral","Latency":"194"},{"Name":"Canada East","id":"canadaeast","Latency":"204"},{"Name":"Central India","id":"centralindia","Latency":"147"},{"Name":"Central US","id":"centralus","Latency":"174"},{"Name":"East Asia","id":"eastasia","Latency":"120"},{"Name":"East US","id":"eastus","Latency":"201"},{"Name":"East US 2","id":"eastus2","Latency":"198"},{"Name":"France Central","id":"francecentral","Latency":"294"},{"Name":"France South","id":"francesouth","Latency":"268"},{"Name":"Germany North","id":"germanynorth","Latency":"298"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"296"},{"Name":"Israel Central","id":"israelcentral","Latency":"307"},{"Name":"Italy North","id":"italynorth","Latency":"279"},{"Name":"Japan East","id":"japaneast","Latency":"104"},{"Name":"Japan West","id":"japanwest","Latency":"110"},{"Name":"Korea Central","id":"koreacentral","Latency":"134"},{"Name":"Korea South","id":"koreasouth","Latency":"136"},{"Name":"North Central US","id":"northcentralus","Latency":"185"},{"Name":"North Europe","id":"northeurope","Latency":"290"},{"Name":"Norway East","id":"norwayeast","Latency":"303"},{"Name":"Norway West","id":"norwaywest","Latency":"307"},{"Name":"Poland Central","id":"polandcentral","Latency":"303"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"182"},{"Name":"South Africa North","id":"southafricanorth","Latency":"279"},{"Name":"South Africa West","id":"southafricawest","Latency":"295"},{"Name":"South Central US","id":"southcentralus","Latency":"162"},{"Name":"South India","id":"southindia","Latency":"131"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"95"},{"Name":"Sweden Central","id":"swedencentral","Latency":"307"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"281"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"280"},{"Name":"UAE Central","id":"uaecentral","Latency":"178"},{"Name":"UAE North","id":"uaenorth","Latency":"180"},{"Name":"UK South","id":"uksouth","Latency":"281"},{"Name":"UK West","id":"ukwest","Latency":"284"},{"Name":"West Central US","id":"westcentralus","Latency":"160"},{"Name":"West Europe","id":"westeurope","Latency":"286"},{"Name":"West US","id":"westus","Latency":"140"},{"Name":"West US 2","id":"westus2","Latency":"162"},{"Name":"West US 3","id":"westus3","Latency":"145"}]},{"Name":"Australia Southeast","id":"australiasoutheast","Destinations":[{"Name":"Brazil South","id":"brazilsouth","Latency":"312"},{"Name":"Canada Central","id":"canadacentral","Latency":"205"},{"Name":"Canada East","id":"canadaeast","Latency":"214"},{"Name":"Central India","id":"centralindia","Latency":"135"},{"Name":"Central US","id":"centralus","Latency":"185"},{"Name":"East Asia","id":"eastasia","Latency":"114"},{"Name":"East US","id":"eastus","Latency":"211"},{"Name":"East US 2","id":"eastus2","Latency":"204"},{"Name":"France Central","id":"francecentral","Latency":"266"},{"Name":"France South","id":"francesouth","Latency":"255"},{"Name":"Germany North","id":"germanynorth","Latency":"278"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"270"},{"Name":"Israel Central","id":"israelcentral","Latency":"295"},{"Name":"Italy North","id":"italynorth","Latency":"266"},{"Name":"Japan East","id":"japaneast","Latency":"115"},{"Name":"Japan West","id":"japanwest","Latency":"122"},{"Name":"Korea Central","id":"koreacentral","Latency":"144"},{"Name":"Korea South","id":"koreasouth","Latency":"137"},{"Name":"North Central US","id":"northcentralus","Latency":"195"},{"Name":"North Europe","id":"northeurope","Latency":"281"},{"Name":"Norway East","id":"norwayeast","Latency":"290"},{"Name":"Norway West","id":"norwaywest","Latency":"286"},{"Name":"Poland Central","id":"polandcentral","Latency":"286"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"170"},{"Name":"South Africa North","id":"southafricanorth","Latency":"266"},{"Name":"South Africa West","id":"southafricawest","Latency":"282"},{"Name":"South Central US","id":"southcentralus","Latency":"173"},{"Name":"South India","id":"southindia","Latency":"119"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"86"},{"Name":"Sweden Central","id":"swedencentral","Latency":"294"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"268"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"262"},{"Name":"UAE Central","id":"uaecentral","Latency":"166"},{"Name":"UAE North","id":"uaenorth","Latency":"168"},{"Name":"UK South","id":"uksouth","Latency":"272"},{"Name":"UK West","id":"ukwest","Latency":"274"},{"Name":"West Central US","id":"westcentralus","Latency":"171"},{"Name":"West Europe","id":"westeurope","Latency":"272"},{"Name":"West US","id":"westus","Latency":"153"},{"Name":"West US 2","id":"westus2","Latency":"174"},{"Name":"West US 3","id":"westus3","Latency":"156"}]},{"Name":"Japan East","id":"japaneast","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"108"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"107"},{"Name":"Australia East","id":"australiaeast","Latency":"103"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"115"},{"Name":"Brazil South","id":"brazilsouth","Latency":"278"},{"Name":"Canada Central","id":"canadacentral","Latency":"158"},{"Name":"Canada East","id":"canadaeast","Latency":"167"},{"Name":"Central India","id":"centralindia","Latency":"121"},{"Name":"Central US","id":"centralus","Latency":"137"},{"Name":"East Asia","id":"eastasia","Latency":"49"},{"Name":"East US","id":"eastus","Latency":"169"},{"Name":"East US 2","id":"eastus2","Latency":"160"},{"Name":"France Central","id":"francecentral","Latency":"251"},{"Name":"France South","id":"francesouth","Latency":"244"},{"Name":"Germany North","id":"germanynorth","Latency":"264"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"250"},{"Name":"Israel Central","id":"israelcentral","Latency":"278"},{"Name":"Italy North","id":"italynorth","Latency":"249"},{"Name":"Japan East","id":"japaneast","Latency":"11"},{"Name":"Japan West","id":"japanwest","Latency":"12"},{"Name":"Korea Central","id":"koreacentral","Latency":"33"},{"Name":"Korea South","id":"koreasouth","Latency":"27"},{"Name":"North Central US","id":"northcentralus","Latency":"149"},{"Name":"North Europe","id":"northeurope","Latency":"252"},{"Name":"Norway East","id":"norwayeast","Latency":"272"},{"Name":"Norway West","id":"norwaywest","Latency":"264"},{"Name":"Poland Central","id":"polandcentral","Latency":"277"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"155"},{"Name":"South Africa North","id":"southafricanorth","Latency":"252"},{"Name":"South Africa West","id":"southafricawest","Latency":"268"},{"Name":"South Central US","id":"southcentralus","Latency":"127"},{"Name":"South India","id":"southindia","Latency":"104"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"72"},{"Name":"Sweden Central","id":"swedencentral","Latency":"279"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"256"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"251"},{"Name":"UAE Central","id":"uaecentral","Latency":"152"},{"Name":"UAE North","id":"uaenorth","Latency":"155"},{"Name":"UK South","id":"uksouth","Latency":"244"},{"Name":"UK West","id":"ukwest","Latency":"245"},{"Name":"West Central US","id":"westcentralus","Latency":"123"},{"Name":"West Europe","id":"westeurope","Latency":"250"},{"Name":"West US","id":"westus","Latency":"108"},{"Name":"West US 2","id":"westus2","Latency":"100"},{"Name":"West US 3","id":"westus3","Latency":"111"}]},{"Name":"Japan West","id":"japanwest","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"114"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"114"},{"Name":"Australia East","id":"australiaeast","Latency":"110"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"122"},{"Name":"Brazil South","id":"brazilsouth","Latency":"280"},{"Name":"Canada Central","id":"canadacentral","Latency":"165"},{"Name":"Canada East","id":"canadaeast","Latency":"174"},{"Name":"Central India","id":"centralindia","Latency":"128"},{"Name":"Central US","id":"centralus","Latency":"144"},{"Name":"East Asia","id":"eastasia","Latency":"42"},{"Name":"East US","id":"eastus","Latency":"175"},{"Name":"East US 2","id":"eastus2","Latency":"167"},{"Name":"France Central","id":"francecentral","Latency":"257"},{"Name":"France South","id":"francesouth","Latency":"249"},{"Name":"Germany North","id":"germanynorth","Latency":"267"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"261"},{"Name":"Israel Central","id":"israelcentral","Latency":"284"},{"Name":"Italy North","id":"italynorth","Latency":"256"},{"Name":"Korea Central","id":"koreacentral","Latency":"19"},{"Name":"Korea South","id":"koreasouth","Latency":"13"},{"Name":"North Central US","id":"northcentralus","Latency":"155"},{"Name":"North Europe","id":"northeurope","Latency":"257"},{"Name":"Norway East","id":"norwayeast","Latency":"276"},{"Name":"Norway West","id":"norwaywest","Latency":"269"},{"Name":"Poland Central","id":"polandcentral","Latency":"279"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"161"},{"Name":"South Africa North","id":"southafricanorth","Latency":"259"},{"Name":"South Africa West","id":"southafricawest","Latency":"274"},{"Name":"South Central US","id":"southcentralus","Latency":"134"},{"Name":"South India","id":"southindia","Latency":"111"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"75"},{"Name":"Sweden Central","id":"swedencentral","Latency":"283"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"263"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"258"},{"Name":"UAE Central","id":"uaecentral","Latency":"160"},{"Name":"UAE North","id":"uaenorth","Latency":"162"},{"Name":"UK South","id":"uksouth","Latency":"249"},{"Name":"UK West","id":"ukwest","Latency":"251"},{"Name":"West Central US","id":"westcentralus","Latency":"129"},{"Name":"West Europe","id":"westeurope","Latency":"253"},{"Name":"West US","id":"westus","Latency":"114"},{"Name":"West US 2","id":"westus2","Latency":"107"},{"Name":"West US 3","id":"westus3","Latency":"117"}]},{"Name":"France Central","id":"francecentral","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"285"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"278"},{"Name":"Australia East","id":"australiaeast","Latency":"293"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"266"},{"Name":"Brazil South","id":"brazilsouth","Latency":"190"},{"Name":"Canada Central","id":"canadacentral","Latency":"102"},{"Name":"Canada East","id":"canadaeast","Latency":"111"},{"Name":"Central India","id":"centralindia","Latency":"126"},{"Name":"Central US","id":"centralus","Latency":"116"},{"Name":"East Asia","id":"eastasia","Latency":"212"},{"Name":"East US","id":"eastus","Latency":"87"},{"Name":"East US 2","id":"eastus2","Latency":"84"},{"Name":"France Central","id":"francecentral","Latency":"14"},{"Name":"France South","id":"francesouth","Latency":"15"},{"Name":"Germany North","id":"germanynorth","Latency":"19"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"11"},{"Name":"Israel Central","id":"israelcentral","Latency":"55"},{"Name":"Italy North","id":"italynorth","Latency":"24"},{"Name":"Japan East","id":"japaneast","Latency":"252"},{"Name":"Japan West","id":"japanwest","Latency":"257"},{"Name":"Korea Central","id":"koreacentral","Latency":"247"},{"Name":"Korea South","id":"koreasouth","Latency":"241"},{"Name":"North Central US","id":"northcentralus","Latency":"107"},{"Name":"North Europe","id":"northeurope","Latency":"19"},{"Name":"Norway East","id":"norwayeast","Latency":"32"},{"Name":"Norway West","id":"norwaywest","Latency":"25"},{"Name":"Poland Central","id":"polandcentral","Latency":"28"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"124"},{"Name":"South Africa North","id":"southafricanorth","Latency":"156"},{"Name":"South Africa West","id":"southafricawest","Latency":"141"},{"Name":"South Central US","id":"southcentralus","Latency":"110"},{"Name":"South India","id":"southindia","Latency":"148"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"183"},{"Name":"Sweden Central","id":"swedencentral","Latency":"35"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"18"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"13"},{"Name":"UAE Central","id":"uaecentral","Latency":"115"},{"Name":"UAE North","id":"uaenorth","Latency":"116"},{"Name":"UK South","id":"uksouth","Latency":"10"},{"Name":"UK West","id":"ukwest","Latency":"13"},{"Name":"West Central US","id":"westcentralus","Latency":"129"},{"Name":"West Europe","id":"westeurope","Latency":"11"},{"Name":"West US","id":"westus","Latency":"149"},{"Name":"West US 2","id":"westus2","Latency":"151"},{"Name":"West US 3","id":"westus3","Latency":"136"}]},{"Name":"France South","id":"francesouth","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"274"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"267"},{"Name":"Australia East","id":"australiaeast","Latency":"267"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"255"},{"Name":"Brazil South","id":"brazilsouth","Latency":"186"},{"Name":"Canada Central","id":"canadacentral","Latency":"98"},{"Name":"Canada East","id":"canadaeast","Latency":"107"},{"Name":"Central India","id":"centralindia","Latency":"131"},{"Name":"Central US","id":"centralus","Latency":"116"},{"Name":"East Asia","id":"eastasia","Latency":"201"},{"Name":"East US","id":"eastus","Latency":"83"},{"Name":"East US 2","id":"eastus2","Latency":"88"},{"Name":"France Central","id":"francecentral","Latency":"25"},{"Name":"France South","id":"francesouth","Latency":"16"},{"Name":"Germany North","id":"germanynorth","Latency":"26"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"19"},{"Name":"Israel Central","id":"israelcentral","Latency":"44"},{"Name":"Italy North","id":"italynorth","Latency":"15"},{"Name":"Japan East","id":"japaneast","Latency":"244"},{"Name":"Japan West","id":"japanwest","Latency":"249"},{"Name":"Korea Central","id":"koreacentral","Latency":"236"},{"Name":"Korea South","id":"koreasouth","Latency":"229"},{"Name":"North Central US","id":"northcentralus","Latency":"102"},{"Name":"North Europe","id":"northeurope","Latency":"28"},{"Name":"Norway East","id":"norwayeast","Latency":"41"},{"Name":"Norway West","id":"norwaywest","Latency":"35"},{"Name":"Poland Central","id":"polandcentral","Latency":"35"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"114"},{"Name":"South Africa North","id":"southafricanorth","Latency":"154"},{"Name":"South Africa West","id":"southafricawest","Latency":"138"},{"Name":"South Central US","id":"southcentralus","Latency":"114"},{"Name":"South India","id":"southindia","Latency":"155"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"179"},{"Name":"Sweden Central","id":"swedencentral","Latency":"43"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"17"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"10"},{"Name":"UAE Central","id":"uaecentral","Latency":"103"},{"Name":"UAE North","id":"uaenorth","Latency":"104"},{"Name":"UK South","id":"uksouth","Latency":"20"},{"Name":"UK West","id":"ukwest","Latency":"23"},{"Name":"West Central US","id":"westcentralus","Latency":"129"},{"Name":"West Europe","id":"westeurope","Latency":"21"},{"Name":"West US","id":"westus","Latency":"153"},{"Name":"West US 2","id":"westus2","Latency":"149"},{"Name":"West US 3","id":"westus3","Latency":"139"}]},{"Name":"Italy North","id":"italynorth","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"288"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"282"},{"Name":"Australia East","id":"australiaeast","Latency":"281"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"267"},{"Name":"Brazil South","id":"brazilsouth","Latency":"198"},{"Name":"Canada Central","id":"canadacentral","Latency":"110"},{"Name":"Canada East","id":"canadaeast","Latency":"117"},{"Name":"Central India","id":"centralindia","Latency":"137"},{"Name":"Central US","id":"centralus","Latency":"128"},{"Name":"East Asia","id":"eastasia","Latency":"216"},{"Name":"East US","id":"eastus","Latency":"96"},{"Name":"East US 2","id":"eastus2","Latency":"100"},{"Name":"France Central","id":"francecentral","Latency":"12"},{"Name":"France South","id":"francesouth","Latency":"22"},{"Name":"Germany North","id":"germanynorth","Latency":"28"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"20"},{"Name":"Israel Central","id":"israelcentral","Latency":"51"},{"Name":"Italy North","id":"italynorth","Latency":"25"},{"Name":"Japan East","id":"japaneast","Latency":"252"},{"Name":"Japan West","id":"japanwest","Latency":"259"},{"Name":"Korea Central","id":"koreacentral","Latency":"250"},{"Name":"Korea South","id":"koreasouth","Latency":"243"},{"Name":"North Central US","id":"northcentralus","Latency":"117"},{"Name":"North Europe","id":"northeurope","Latency":"41"},{"Name":"Norway East","id":"norwayeast","Latency":"39"},{"Name":"Norway West","id":"norwaywest","Latency":"39"},{"Name":"Poland Central","id":"polandcentral","Latency":"34"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"126"},{"Name":"South Africa North","id":"southafricanorth","Latency":"167"},{"Name":"South Africa West","id":"southafricawest","Latency":"152"},{"Name":"South Central US","id":"southcentralus","Latency":"126"},{"Name":"South India","id":"southindia","Latency":"162"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"190"},{"Name":"Sweden Central","id":"swedencentral","Latency":"42"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"15"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"15"},{"Name":"UAE Central","id":"uaecentral","Latency":"115"},{"Name":"UAE North","id":"uaenorth","Latency":"117"},{"Name":"UK South","id":"uksouth","Latency":"32"},{"Name":"UK West","id":"ukwest","Latency":"35"},{"Name":"West Central US","id":"westcentralus","Latency":"141"},{"Name":"West Europe","id":"westeurope","Latency":"24"},{"Name":"West US","id":"westus","Latency":"165"},{"Name":"West US 2","id":"westus2","Latency":"163"},{"Name":"West US 3","id":"westus3","Latency":"147"}]},{"Name":"West Europe","id":"westeurope","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"291"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"281"},{"Name":"Australia East","id":"australiaeast","Latency":"287"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"273"},{"Name":"Brazil South","id":"brazilsouth","Latency":"186"},{"Name":"Canada Central","id":"canadacentral","Latency":"95"},{"Name":"Canada East","id":"canadaeast","Latency":"104"},{"Name":"Central India","id":"centralindia","Latency":"135"},{"Name":"Central US","id":"centralus","Latency":"118"},{"Name":"East Asia","id":"eastasia","Latency":"219"},{"Name":"East US","id":"eastus","Latency":"89"},{"Name":"East US 2","id":"eastus2","Latency":"91"},{"Name":"Germany North","id":"germanynorth","Latency":"16"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"11"},{"Name":"Israel Central","id":"israelcentral","Latency":"69"},{"Name":"Japan East","id":"japaneast","Latency":"251"},{"Name":"Japan West","id":"japanwest","Latency":"254"},{"Name":"Korea Central","id":"koreacentral","Latency":"254"},{"Name":"Korea South","id":"koreasouth","Latency":"248"},{"Name":"North Central US","id":"northcentralus","Latency":"109"},{"Name":"North Europe","id":"northeurope","Latency":"19"},{"Name":"Norway East","id":"norwayeast","Latency":"25"},{"Name":"Norway West","id":"norwaywest","Latency":"18"},{"Name":"Poland Central","id":"polandcentral","Latency":"23"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"132"},{"Name":"South Africa North","id":"southafricanorth","Latency":"163"},{"Name":"South Africa West","id":"southafricawest","Latency":"147"},{"Name":"South Central US","id":"southcentralus","Latency":"118"},{"Name":"South India","id":"southindia","Latency":"156"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"190"},{"Name":"Sweden Central","id":"swedencentral","Latency":"27"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"19"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"20"},{"Name":"UAE Central","id":"uaecentral","Latency":"122"},{"Name":"UAE North","id":"uaenorth","Latency":"123"},{"Name":"UK South","id":"uksouth","Latency":"11"},{"Name":"UK West","id":"ukwest","Latency":"15"},{"Name":"West Central US","id":"westcentralus","Latency":"132"},{"Name":"West US","id":"westus","Latency":"155"},{"Name":"West US 2","id":"westus2","Latency":"154"},{"Name":"West US 3","id":"westus3","Latency":"139"}]},{"Name":"Germany North","id":"germanynorth","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"296"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"288"},{"Name":"Australia East","id":"australiaeast","Latency":"297"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"277"},{"Name":"Brazil South","id":"brazilsouth","Latency":"204"},{"Name":"Canada Central","id":"canadacentral","Latency":"115"},{"Name":"Canada East","id":"canadaeast","Latency":"124"},{"Name":"Central India","id":"centralindia","Latency":"140"},{"Name":"Central US","id":"centralus","Latency":"130"},{"Name":"East Asia","id":"eastasia","Latency":"223"},{"Name":"East US","id":"eastus","Latency":"101"},{"Name":"East US 2","id":"eastus2","Latency":"97"},{"Name":"France Central","id":"francecentral","Latency":"18"},{"Name":"France South","id":"francesouth","Latency":"26"},{"Name":"Germany North","id":"germanynorth","Latency":"13"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"11"},{"Name":"Israel Central","id":"israelcentral","Latency":"67"},{"Name":"Italy North","id":"italynorth","Latency":"25"},{"Name":"Japan East","id":"japaneast","Latency":"263"},{"Name":"Japan West","id":"japanwest","Latency":"267"},{"Name":"Korea Central","id":"koreacentral","Latency":"258"},{"Name":"Korea South","id":"koreasouth","Latency":"252"},{"Name":"North Central US","id":"northcentralus","Latency":"121"},{"Name":"North Europe","id":"northeurope","Latency":"33"},{"Name":"Norway East","id":"norwayeast","Latency":"23"},{"Name":"Norway West","id":"norwaywest","Latency":"27"},{"Name":"Poland Central","id":"polandcentral","Latency":"13"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"136"},{"Name":"South Africa North","id":"southafricanorth","Latency":"170"},{"Name":"South Africa West","id":"southafricawest","Latency":"154"},{"Name":"South Central US","id":"southcentralus","Latency":"127"},{"Name":"South India","id":"southindia","Latency":"159"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"193"},{"Name":"Sweden Central","id":"swedencentral","Latency":"21"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"18"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"19"},{"Name":"UAE Central","id":"uaecentral","Latency":"125"},{"Name":"UAE North","id":"uaenorth","Latency":"127"},{"Name":"UK South","id":"uksouth","Latency":"24"},{"Name":"UK West","id":"ukwest","Latency":"26"},{"Name":"West Central US","id":"westcentralus","Latency":"142"},{"Name":"West Europe","id":"westeurope","Latency":"16"},{"Name":"West US","id":"westus","Latency":"163"},{"Name":"West US 2","id":"westus2","Latency":"164"},{"Name":"West US 3","id":"westus3","Latency":"152"}]},{"Name":"Germany West Central","id":"germanywestcentral","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"292"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"284"},{"Name":"Australia East","id":"australiaeast","Latency":"296"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"272"},{"Name":"Brazil South","id":"brazilsouth","Latency":"199"},{"Name":"Canada Central","id":"canadacentral","Latency":"110"},{"Name":"Canada East","id":"canadaeast","Latency":"119"},{"Name":"Central India","id":"centralindia","Latency":"135"},{"Name":"Central US","id":"centralus","Latency":"126"},{"Name":"East Asia","id":"eastasia","Latency":"219"},{"Name":"East US","id":"eastus","Latency":"96"},{"Name":"East US 2","id":"eastus2","Latency":"92"},{"Name":"France Central","id":"francecentral","Latency":"13"},{"Name":"France South","id":"francesouth","Latency":"21"},{"Name":"Germany North","id":"germanynorth","Latency":"13"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"20"},{"Name":"Israel Central","id":"israelcentral","Latency":"61"},{"Name":"Italy North","id":"italynorth","Latency":"20"},{"Name":"Japan East","id":"japaneast","Latency":"252"},{"Name":"Japan West","id":"japanwest","Latency":"263"},{"Name":"Korea Central","id":"koreacentral","Latency":"254"},{"Name":"Korea South","id":"koreasouth","Latency":"247"},{"Name":"North Central US","id":"northcentralus","Latency":"115"},{"Name":"North Europe","id":"northeurope","Latency":"28"},{"Name":"Norway East","id":"norwayeast","Latency":"27"},{"Name":"Norway West","id":"norwaywest","Latency":"27"},{"Name":"Poland Central","id":"polandcentral","Latency":"22"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"131"},{"Name":"South Africa North","id":"southafricanorth","Latency":"164"},{"Name":"South Africa West","id":"southafricawest","Latency":"151"},{"Name":"South Central US","id":"southcentralus","Latency":"123"},{"Name":"South India","id":"southindia","Latency":"153"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"189"},{"Name":"Sweden Central","id":"swedencentral","Latency":"30"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"12"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"14"},{"Name":"UAE Central","id":"uaecentral","Latency":"120"},{"Name":"UAE North","id":"uaenorth","Latency":"122"},{"Name":"UK South","id":"uksouth","Latency":"19"},{"Name":"UK West","id":"ukwest","Latency":"20"},{"Name":"West Central US","id":"westcentralus","Latency":"140"},{"Name":"West Europe","id":"westeurope","Latency":"12"},{"Name":"West US","id":"westus","Latency":"162"},{"Name":"West US 2","id":"westus2","Latency":"160"},{"Name":"West US 3","id":"westus3","Latency":"147"}]},{"Name":"Poland Central","id":"polandcentral","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"305"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"297"},{"Name":"Australia East","id":"australiaeast","Latency":"301"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"286"},{"Name":"Brazil South","id":"brazilsouth","Latency":"209"},{"Name":"Canada Central","id":"canadacentral","Latency":"126"},{"Name":"Canada East","id":"canadaeast","Latency":"135"},{"Name":"Central India","id":"centralindia","Latency":"150"},{"Name":"Central US","id":"centralus","Latency":"141"},{"Name":"East Asia","id":"eastasia","Latency":"233"},{"Name":"East US","id":"eastus","Latency":"111"},{"Name":"East US 2","id":"eastus2","Latency":"108"},{"Name":"France Central","id":"francecentral","Latency":"27"},{"Name":"France South","id":"francesouth","Latency":"35"},{"Name":"Germany North","id":"germanynorth","Latency":"16"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"8"},{"Name":"Israel Central","id":"israelcentral","Latency":"69"},{"Name":"Italy North","id":"italynorth","Latency":"34"},{"Name":"Japan East","id":"japaneast","Latency":"276"},{"Name":"Japan West","id":"japanwest","Latency":"279"},{"Name":"Korea Central","id":"koreacentral","Latency":"267"},{"Name":"Korea South","id":"koreasouth","Latency":"261"},{"Name":"North Central US","id":"northcentralus","Latency":"131"},{"Name":"North Europe","id":"northeurope","Latency":"39"},{"Name":"Norway East","id":"norwayeast","Latency":"31"},{"Name":"Norway West","id":"norwaywest","Latency":"35"},{"Name":"Poland Central","id":"polandcentral","Latency":"25"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"145"},{"Name":"South Africa North","id":"southafricanorth","Latency":"179"},{"Name":"South Africa West","id":"southafricawest","Latency":"163"},{"Name":"South Central US","id":"southcentralus","Latency":"137"},{"Name":"South India","id":"southindia","Latency":"165"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"202"},{"Name":"Sweden Central","id":"swedencentral","Latency":"27"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"27"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"28"},{"Name":"UAE Central","id":"uaecentral","Latency":"134"},{"Name":"UAE North","id":"uaenorth","Latency":"136"},{"Name":"UK South","id":"uksouth","Latency":"31"},{"Name":"UK West","id":"ukwest","Latency":"34"},{"Name":"West Central US","id":"westcentralus","Latency":"154"},{"Name":"West Europe","id":"westeurope","Latency":"24"},{"Name":"West US","id":"westus","Latency":"173"},{"Name":"West US 2","id":"westus2","Latency":"176"},{"Name":"West US 3","id":"westus3","Latency":"159"}]},{"Name":"Switzerland North","id":"switzerlandnorth","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"284"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"278"},{"Name":"Australia East","id":"australiaeast","Latency":"278"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"265"},{"Name":"Brazil South","id":"brazilsouth","Latency":"197"},{"Name":"Canada Central","id":"canadacentral","Latency":"109"},{"Name":"Canada East","id":"canadaeast","Latency":"118"},{"Name":"Central India","id":"centralindia","Latency":"139"},{"Name":"Central US","id":"centralus","Latency":"127"},{"Name":"East Asia","id":"eastasia","Latency":"212"},{"Name":"East US","id":"eastus","Latency":"94"},{"Name":"East US 2","id":"eastus2","Latency":"99"},{"Name":"France Central","id":"francecentral","Latency":"16"},{"Name":"France South","id":"francesouth","Latency":"15"},{"Name":"Germany North","id":"germanynorth","Latency":"18"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"11"},{"Name":"Israel Central","id":"israelcentral","Latency":"48"},{"Name":"Italy North","id":"italynorth","Latency":"13"},{"Name":"Japan East","id":"japaneast","Latency":"254"},{"Name":"Japan West","id":"japanwest","Latency":"262"},{"Name":"Korea Central","id":"koreacentral","Latency":"247"},{"Name":"Korea South","id":"koreasouth","Latency":"240"},{"Name":"North Central US","id":"northcentralus","Latency":"114"},{"Name":"North Europe","id":"northeurope","Latency":"33"},{"Name":"Norway East","id":"norwayeast","Latency":"30"},{"Name":"Norway West","id":"norwaywest","Latency":"30"},{"Name":"Poland Central","id":"polandcentral","Latency":"27"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"125"},{"Name":"South Africa North","id":"southafricanorth","Latency":"165"},{"Name":"South Africa West","id":"southafricawest","Latency":"148"},{"Name":"South Central US","id":"southcentralus","Latency":"127"},{"Name":"South India","id":"southindia","Latency":"163"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"185"},{"Name":"Sweden Central","id":"swedencentral","Latency":"32"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"8"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"7"},{"Name":"UAE Central","id":"uaecentral","Latency":"113"},{"Name":"UAE North","id":"uaenorth","Latency":"116"},{"Name":"UK South","id":"uksouth","Latency":"24"},{"Name":"UK West","id":"ukwest","Latency":"28"},{"Name":"West Central US","id":"westcentralus","Latency":"141"},{"Name":"West Europe","id":"westeurope","Latency":"16"},{"Name":"West US","id":"westus","Latency":"163"},{"Name":"West US 2","id":"westus2","Latency":"162"},{"Name":"West US 3","id":"westus3","Latency":"150"}]},{"Name":"Switzerland West","id":"switzerlandwest","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"284"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"279"},{"Name":"Australia East","id":"australiaeast","Latency":"279"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"261"},{"Name":"Brazil South","id":"brazilsouth","Latency":"193"},{"Name":"Canada Central","id":"canadacentral","Latency":"104"},{"Name":"Canada East","id":"canadaeast","Latency":"113"},{"Name":"Central India","id":"centralindia","Latency":"132"},{"Name":"Central US","id":"centralus","Latency":"123"},{"Name":"East Asia","id":"eastasia","Latency":"214"},{"Name":"East US","id":"eastus","Latency":"90"},{"Name":"East US 2","id":"eastus2","Latency":"95"},{"Name":"France Central","id":"francecentral","Latency":"13"},{"Name":"France South","id":"francesouth","Latency":"10"},{"Name":"Israel Central","id":"israelcentral","Latency":"51"},{"Name":"Italy North","id":"italynorth","Latency":"13"},{"Name":"Japan East","id":"japaneast","Latency":"250"},{"Name":"Japan West","id":"japanwest","Latency":"258"},{"Name":"Korea Central","id":"koreacentral","Latency":"249"},{"Name":"Korea South","id":"koreasouth","Latency":"236"},{"Name":"North Central US","id":"northcentralus","Latency":"110"},{"Name":"North Europe","id":"northeurope","Latency":"27"},{"Name":"Norway East","id":"norwayeast","Latency":"33"},{"Name":"Norway West","id":"norwaywest","Latency":"33"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"122"},{"Name":"South Africa North","id":"southafricanorth","Latency":"161"},{"Name":"South Africa West","id":"southafricawest","Latency":"145"},{"Name":"South Central US","id":"southcentralus","Latency":"124"},{"Name":"South India","id":"southindia","Latency":"150"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"184"},{"Name":"Sweden Central","id":"swedencentral","Latency":"35"},{"Name":"UAE Central","id":"uaecentral","Latency":"110"},{"Name":"UAE North","id":"uaenorth","Latency":"112"},{"Name":"UK South","id":"uksouth","Latency":"18"},{"Name":"UK West","id":"ukwest","Latency":"20"},{"Name":"West Central US","id":"westcentralus","Latency":"136"},{"Name":"West Europe","id":"westeurope","Latency":"19"},{"Name":"West US","id":"westus","Latency":"159"},{"Name":"West US 2","id":"westus2","Latency":"158"},{"Name":"West US 3","id":"westus3","Latency":"146"}]},{"Name":"Norway East","id":"norwayeast","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"308"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"300"},{"Name":"Australia East","id":"australiaeast","Latency":"302"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"290"},{"Name":"Brazil South","id":"brazilsouth","Latency":"210"},{"Name":"Canada Central","id":"canadacentral","Latency":"113"},{"Name":"Canada East","id":"canadaeast","Latency":"122"},{"Name":"Central India","id":"centralindia","Latency":"153"},{"Name":"Central US","id":"centralus","Latency":"136"},{"Name":"East Asia","id":"eastasia","Latency":"236"},{"Name":"East US","id":"eastus","Latency":"105"},{"Name":"East US 2","id":"eastus2","Latency":"108"},{"Name":"France Central","id":"francecentral","Latency":"31"},{"Name":"France South","id":"francesouth","Latency":"41"},{"Name":"Germany North","id":"germanynorth","Latency":"23"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"25"},{"Name":"Israel Central","id":"israelcentral","Latency":"83"},{"Name":"Italy North","id":"italynorth","Latency":"38"},{"Name":"Japan East","id":"japaneast","Latency":"272"},{"Name":"Japan West","id":"japanwest","Latency":"276"},{"Name":"Korea Central","id":"koreacentral","Latency":"271"},{"Name":"Korea South","id":"koreasouth","Latency":"265"},{"Name":"North Central US","id":"northcentralus","Latency":"127"},{"Name":"North Europe","id":"northeurope","Latency":"39"},{"Name":"Norway East","id":"norwayeast","Latency":"10"},{"Name":"Norway West","id":"norwaywest","Latency":"11"},{"Name":"Poland Central","id":"polandcentral","Latency":"29"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"149"},{"Name":"South Africa North","id":"southafricanorth","Latency":"183"},{"Name":"South Africa West","id":"southafricawest","Latency":"167"},{"Name":"South Central US","id":"southcentralus","Latency":"136"},{"Name":"South India","id":"southindia","Latency":"170"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"206"},{"Name":"Sweden Central","id":"swedencentral","Latency":"11"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"31"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"33"},{"Name":"UAE Central","id":"uaecentral","Latency":"137"},{"Name":"UAE North","id":"uaenorth","Latency":"140"},{"Name":"UK South","id":"uksouth","Latency":"30"},{"Name":"UK West","id":"ukwest","Latency":"33"},{"Name":"West Central US","id":"westcentralus","Latency":"149"},{"Name":"West Europe","id":"westeurope","Latency":"23"},{"Name":"West US","id":"westus","Latency":"170"},{"Name":"West US 2","id":"westus2","Latency":"170"},{"Name":"West US 3","id":"westus3","Latency":"157"}]},{"Name":"Norway West","id":"norwaywest","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"304"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"294"},{"Name":"Australia East","id":"australiaeast","Latency":"306"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"286"},{"Name":"Brazil South","id":"brazilsouth","Latency":"199"},{"Name":"Canada Central","id":"canadacentral","Latency":"108"},{"Name":"Canada East","id":"canadaeast","Latency":"113"},{"Name":"Central India","id":"centralindia","Latency":"146"},{"Name":"Central US","id":"centralus","Latency":"129"},{"Name":"East Asia","id":"eastasia","Latency":"232"},{"Name":"East US","id":"eastus","Latency":"97"},{"Name":"East US 2","id":"eastus2","Latency":"101"},{"Name":"France Central","id":"francecentral","Latency":"25"},{"Name":"France South","id":"francesouth","Latency":"35"},{"Name":"Germany North","id":"germanynorth","Latency":"27"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"25"},{"Name":"Israel Central","id":"israelcentral","Latency":"81"},{"Name":"Italy North","id":"italynorth","Latency":"37"},{"Name":"Japan East","id":"japaneast","Latency":"264"},{"Name":"Japan West","id":"japanwest","Latency":"268"},{"Name":"Korea Central","id":"koreacentral","Latency":"267"},{"Name":"Korea South","id":"koreasouth","Latency":"260"},{"Name":"North Central US","id":"northcentralus","Latency":"117"},{"Name":"North Europe","id":"northeurope","Latency":"34"},{"Name":"Norway East","id":"norwayeast","Latency":"11"},{"Name":"Norway West","id":"norwaywest","Latency":"17"},{"Name":"Poland Central","id":"polandcentral","Latency":"34"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"144"},{"Name":"South Africa North","id":"southafricanorth","Latency":"176"},{"Name":"South Africa West","id":"southafricawest","Latency":"160"},{"Name":"South Central US","id":"southcentralus","Latency":"132"},{"Name":"South India","id":"southindia","Latency":"162"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"202"},{"Name":"Sweden Central","id":"swedencentral","Latency":"17"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"32"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"33"},{"Name":"UAE Central","id":"uaecentral","Latency":"133"},{"Name":"UAE North","id":"uaenorth","Latency":"135"},{"Name":"UK South","id":"uksouth","Latency":"24"},{"Name":"UK West","id":"ukwest","Latency":"25"},{"Name":"West Central US","id":"westcentralus","Latency":"142"},{"Name":"West Europe","id":"westeurope","Latency":"17"},{"Name":"West US","id":"westus","Latency":"166"},{"Name":"West US 2","id":"westus2","Latency":"167"},{"Name":"West US 3","id":"westus3","Latency":"148"}]},{"Name":"Sweden Central","id":"swedencentral","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"312"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"305"},{"Name":"Australia East","id":"australiaeast","Latency":"306"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"294"},{"Name":"Brazil South","id":"brazilsouth","Latency":"213"},{"Name":"Canada Central","id":"canadacentral","Latency":"123"},{"Name":"Canada East","id":"canadaeast","Latency":"129"},{"Name":"Central India","id":"centralindia","Latency":"157"},{"Name":"Central US","id":"centralus","Latency":"141"},{"Name":"East Asia","id":"eastasia","Latency":"240"},{"Name":"East US","id":"eastus","Latency":"117"},{"Name":"East US 2","id":"eastus2","Latency":"116"},{"Name":"France Central","id":"francecentral","Latency":"35"},{"Name":"France South","id":"francesouth","Latency":"43"},{"Name":"Germany North","id":"germanynorth","Latency":"21"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"28"},{"Name":"Israel Central","id":"israelcentral","Latency":"85"},{"Name":"Italy North","id":"italynorth","Latency":"41"},{"Name":"Japan East","id":"japaneast","Latency":"279"},{"Name":"Japan West","id":"japanwest","Latency":"283"},{"Name":"Korea Central","id":"koreacentral","Latency":"275"},{"Name":"Korea South","id":"koreasouth","Latency":"268"},{"Name":"North Central US","id":"northcentralus","Latency":"132"},{"Name":"North Europe","id":"northeurope","Latency":"43"},{"Name":"Poland Central","id":"polandcentral","Latency":"26"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"153"},{"Name":"South Africa North","id":"southafricanorth","Latency":"186"},{"Name":"South Africa West","id":"southafricawest","Latency":"170"},{"Name":"South Central US","id":"southcentralus","Latency":"141"},{"Name":"South India","id":"southindia","Latency":"173"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"210"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"35"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"36"},{"Name":"UAE Central","id":"uaecentral","Latency":"141"},{"Name":"UAE North","id":"uaenorth","Latency":"144"},{"Name":"UK South","id":"uksouth","Latency":"33"},{"Name":"UK West","id":"ukwest","Latency":"38"},{"Name":"West Central US","id":"westcentralus","Latency":"161"},{"Name":"West Europe","id":"westeurope","Latency":"27"},{"Name":"West US","id":"westus","Latency":"182"},{"Name":"West US 2","id":"westus2","Latency":"181"},{"Name":"West US 3","id":"westus3","Latency":"165"}]},{"Name":"North Europe","id":"northeurope","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"296"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"286"},{"Name":"Australia East","id":"australiaeast","Latency":"291"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"282"},{"Name":"Brazil South","id":"brazilsouth","Latency":"189"},{"Name":"Canada Central","id":"canadacentral","Latency":"99"},{"Name":"Canada East","id":"canadaeast","Latency":"108"},{"Name":"Central India","id":"centralindia","Latency":"146"},{"Name":"Central US","id":"centralus","Latency":"113"},{"Name":"East Asia","id":"eastasia","Latency":"227"},{"Name":"East US","id":"eastus","Latency":"87"},{"Name":"East US 2","id":"eastus2","Latency":"96"},{"Name":"France Central","id":"francecentral","Latency":"20"},{"Name":"France South","id":"francesouth","Latency":"30"},{"Name":"Germany North","id":"germanynorth","Latency":"35"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"27"},{"Name":"Israel Central","id":"israelcentral","Latency":"72"},{"Name":"Italy North","id":"italynorth","Latency":"42"},{"Name":"Japan East","id":"japaneast","Latency":"253"},{"Name":"Japan West","id":"japanwest","Latency":"259"},{"Name":"Korea Central","id":"koreacentral","Latency":"263"},{"Name":"Korea South","id":"koreasouth","Latency":"256"},{"Name":"North Central US","id":"northcentralus","Latency":"105"},{"Name":"North Europe","id":"northeurope","Latency":"13"},{"Name":"Norway East","id":"norwayeast","Latency":"40"},{"Name":"Norway West","id":"norwaywest","Latency":"35"},{"Name":"Poland Central","id":"polandcentral","Latency":"41"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"140"},{"Name":"South Africa North","id":"southafricanorth","Latency":"172"},{"Name":"South Africa West","id":"southafricawest","Latency":"158"},{"Name":"South Central US","id":"southcentralus","Latency":"123"},{"Name":"South India","id":"southindia","Latency":"162"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"198"},{"Name":"Sweden Central","id":"swedencentral","Latency":"44"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"36"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"28"},{"Name":"UAE Central","id":"uaecentral","Latency":"130"},{"Name":"UAE North","id":"uaenorth","Latency":"131"},{"Name":"UK South","id":"uksouth","Latency":"14"},{"Name":"UK West","id":"ukwest","Latency":"17"},{"Name":"West Central US","id":"westcentralus","Latency":"132"},{"Name":"West Europe","id":"westeurope","Latency":"20"},{"Name":"West US","id":"westus","Latency":"159"},{"Name":"West US 2","id":"westus2","Latency":"155"},{"Name":"West US 3","id":"westus3","Latency":"143"}]},{"Name":"UK South","id":"uksouth","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"287"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"276"},{"Name":"Australia East","id":"australiaeast","Latency":"280"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"272"},{"Name":"Brazil South","id":"brazilsouth","Latency":"179"},{"Name":"Canada Central","id":"canadacentral","Latency":"89"},{"Name":"Canada East","id":"canadaeast","Latency":"98"},{"Name":"Central India","id":"centralindia","Latency":"131"},{"Name":"Central US","id":"centralus","Latency":"104"},{"Name":"East Asia","id":"eastasia","Latency":"217"},{"Name":"East US","id":"eastus","Latency":"77"},{"Name":"East US 2","id":"eastus2","Latency":"88"},{"Name":"France Central","id":"francecentral","Latency":"10"},{"Name":"France South","id":"francesouth","Latency":"20"},{"Name":"Germany North","id":"germanynorth","Latency":"25"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"17"},{"Name":"Israel Central","id":"israelcentral","Latency":"61"},{"Name":"Italy North","id":"italynorth","Latency":"31"},{"Name":"Japan East","id":"japaneast","Latency":"244"},{"Name":"Japan West","id":"japanwest","Latency":"249"},{"Name":"Korea Central","id":"koreacentral","Latency":"252"},{"Name":"Korea South","id":"koreasouth","Latency":"246"},{"Name":"North Central US","id":"northcentralus","Latency":"94"},{"Name":"North Europe","id":"northeurope","Latency":"16"},{"Name":"Norway East","id":"norwayeast","Latency":"30"},{"Name":"Norway West","id":"norwaywest","Latency":"25"},{"Name":"Poland Central","id":"polandcentral","Latency":"31"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"130"},{"Name":"South Africa North","id":"southafricanorth","Latency":"162"},{"Name":"South Africa West","id":"southafricawest","Latency":"147"},{"Name":"South Central US","id":"southcentralus","Latency":"114"},{"Name":"South India","id":"southindia","Latency":"149"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"188"},{"Name":"Sweden Central","id":"swedencentral","Latency":"34"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"25"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"18"},{"Name":"UAE Central","id":"uaecentral","Latency":"119"},{"Name":"UAE North","id":"uaenorth","Latency":"122"},{"Name":"UK South","id":"uksouth","Latency":"8"},{"Name":"UK West","id":"ukwest","Latency":"7"},{"Name":"West Central US","id":"westcentralus","Latency":"123"},{"Name":"West Europe","id":"westeurope","Latency":"10"},{"Name":"West US","id":"westus","Latency":"147"},{"Name":"West US 2","id":"westus2","Latency":"147"},{"Name":"West US 3","id":"westus3","Latency":"133"}]},{"Name":"UK West","id":"ukwest","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"290"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"278"},{"Name":"Australia East","id":"australiaeast","Latency":"284"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"275"},{"Name":"Brazil South","id":"brazilsouth","Latency":"182"},{"Name":"Canada Central","id":"canadacentral","Latency":"92"},{"Name":"Canada East","id":"canadaeast","Latency":"101"},{"Name":"Central India","id":"centralindia","Latency":"137"},{"Name":"Central US","id":"centralus","Latency":"104"},{"Name":"East Asia","id":"eastasia","Latency":"220"},{"Name":"East US","id":"eastus","Latency":"82"},{"Name":"East US 2","id":"eastus2","Latency":"91"},{"Name":"France Central","id":"francecentral","Latency":"13"},{"Name":"France South","id":"francesouth","Latency":"23"},{"Name":"Germany North","id":"germanynorth","Latency":"27"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"19"},{"Name":"Israel Central","id":"israelcentral","Latency":"64"},{"Name":"Italy North","id":"italynorth","Latency":"35"},{"Name":"Japan East","id":"japaneast","Latency":"245"},{"Name":"Japan West","id":"japanwest","Latency":"252"},{"Name":"Korea Central","id":"koreacentral","Latency":"255"},{"Name":"Korea South","id":"koreasouth","Latency":"249"},{"Name":"North Central US","id":"northcentralus","Latency":"98"},{"Name":"Norway East","id":"norwayeast","Latency":"34"},{"Name":"Norway West","id":"norwaywest","Latency":"27"},{"Name":"Poland Central","id":"polandcentral","Latency":"35"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"133"},{"Name":"South Africa North","id":"southafricanorth","Latency":"165"},{"Name":"South Africa West","id":"southafricawest","Latency":"151"},{"Name":"South Central US","id":"southcentralus","Latency":"117"},{"Name":"South India","id":"southindia","Latency":"156"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"190"},{"Name":"Sweden Central","id":"swedencentral","Latency":"39"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"29"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"21"},{"Name":"UAE Central","id":"uaecentral","Latency":"122"},{"Name":"UAE North","id":"uaenorth","Latency":"124"},{"Name":"West Central US","id":"westcentralus","Latency":"127"},{"Name":"West Europe","id":"westeurope","Latency":"13"},{"Name":"West US","id":"westus","Latency":"152"},{"Name":"West US 2","id":"westus2","Latency":"150"},{"Name":"West US 3","id":"westus3","Latency":"136"}]},{"Name":"Korea Central","id":"koreacentral","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"132"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"132"},{"Name":"Australia East","id":"australiaeast","Latency":"131"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"143"},{"Name":"Brazil South","id":"brazilsouth","Latency":"303"},{"Name":"Canada Central","id":"canadacentral","Latency":"235"},{"Name":"Canada East","id":"canadaeast","Latency":"191"},{"Name":"Central India","id":"centralindia","Latency":"118"},{"Name":"Central US","id":"centralus","Latency":"198"},{"Name":"East Asia","id":"eastasia","Latency":"40"},{"Name":"East US","id":"eastus","Latency":"224"},{"Name":"East US 2","id":"eastus2","Latency":"188"},{"Name":"France Central","id":"francecentral","Latency":"247"},{"Name":"France South","id":"francesouth","Latency":"236"},{"Name":"Germany North","id":"germanynorth","Latency":"258"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"251"},{"Name":"Israel Central","id":"israelcentral","Latency":"276"},{"Name":"Italy North","id":"italynorth","Latency":"248"},{"Name":"Japan East","id":"japaneast","Latency":"32"},{"Name":"Japan West","id":"japanwest","Latency":"19"},{"Name":"Korea Central","id":"koreacentral","Latency":"9"},{"Name":"Korea South","id":"koreasouth","Latency":"10"},{"Name":"North Central US","id":"northcentralus","Latency":"218"},{"Name":"North Europe","id":"northeurope","Latency":"261"},{"Name":"Norway East","id":"norwayeast","Latency":"271"},{"Name":"Norway West","id":"norwaywest","Latency":"267"},{"Name":"Poland Central","id":"polandcentral","Latency":"267"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"152"},{"Name":"South Africa North","id":"southafricanorth","Latency":"250"},{"Name":"South Africa West","id":"southafricawest","Latency":"265"},{"Name":"South Central US","id":"southcentralus","Latency":"165"},{"Name":"South India","id":"southindia","Latency":"101"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"69"},{"Name":"Sweden Central","id":"swedencentral","Latency":"275"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"249"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"249"},{"Name":"UAE Central","id":"uaecentral","Latency":"149"},{"Name":"UAE North","id":"uaenorth","Latency":"152"},{"Name":"UK South","id":"uksouth","Latency":"252"},{"Name":"UK West","id":"ukwest","Latency":"255"},{"Name":"West Central US","id":"westcentralus","Latency":"154"},{"Name":"West Europe","id":"westeurope","Latency":"253"},{"Name":"West US","id":"westus","Latency":"159"},{"Name":"West US 2","id":"westus2","Latency":"124"},{"Name":"West US 3","id":"westus3","Latency":"147"}]},{"Name":"Korea South","id":"koreasouth","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"129"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"129"},{"Name":"Australia East","id":"australiaeast","Latency":"135"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"137"},{"Name":"Brazil South","id":"brazilsouth","Latency":"309"},{"Name":"Canada Central","id":"canadacentral","Latency":"177"},{"Name":"Canada East","id":"canadaeast","Latency":"187"},{"Name":"Central India","id":"centralindia","Latency":"111"},{"Name":"Central US","id":"centralus","Latency":"160"},{"Name":"East Asia","id":"eastasia","Latency":"33"},{"Name":"East US","id":"eastus","Latency":"185"},{"Name":"East US 2","id":"eastus2","Latency":"180"},{"Name":"France Central","id":"francecentral","Latency":"240"},{"Name":"France South","id":"francesouth","Latency":"229"},{"Name":"Germany North","id":"germanynorth","Latency":"252"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"244"},{"Name":"Israel Central","id":"israelcentral","Latency":"269"},{"Name":"Italy North","id":"italynorth","Latency":"241"},{"Name":"Japan East","id":"japaneast","Latency":"26"},{"Name":"Japan West","id":"japanwest","Latency":"13"},{"Name":"North Central US","id":"northcentralus","Latency":"173"},{"Name":"North Europe","id":"northeurope","Latency":"254"},{"Name":"Norway East","id":"norwayeast","Latency":"265"},{"Name":"Norway West","id":"norwaywest","Latency":"260"},{"Name":"Poland Central","id":"polandcentral","Latency":"261"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"145"},{"Name":"South Africa North","id":"southafricanorth","Latency":"241"},{"Name":"South Africa West","id":"southafricawest","Latency":"257"},{"Name":"South Central US","id":"southcentralus","Latency":"150"},{"Name":"South India","id":"southindia","Latency":"94"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"62"},{"Name":"Sweden Central","id":"swedencentral","Latency":"268"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"242"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"236"},{"Name":"UAE Central","id":"uaecentral","Latency":"144"},{"Name":"UAE North","id":"uaenorth","Latency":"145"},{"Name":"UK South","id":"uksouth","Latency":"245"},{"Name":"UK West","id":"ukwest","Latency":"248"},{"Name":"West Central US","id":"westcentralus","Latency":"149"},{"Name":"West Europe","id":"westeurope","Latency":"246"},{"Name":"West US","id":"westus","Latency":"131"},{"Name":"West US 2","id":"westus2","Latency":"124"},{"Name":"West US 3","id":"westus3","Latency":"132"}]},{"Name":"Central India","id":"centralindia","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"148"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"149"},{"Name":"Australia East","id":"australiaeast","Latency":"147"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"137"},{"Name":"Brazil South","id":"brazilsouth","Latency":"307"},{"Name":"Canada Central","id":"canadacentral","Latency":"213"},{"Name":"Canada East","id":"canadaeast","Latency":"218"},{"Name":"Central India","id":"centralindia","Latency":"24"},{"Name":"Central US","id":"centralus","Latency":"233"},{"Name":"East Asia","id":"eastasia","Latency":"84"},{"Name":"East US","id":"eastus","Latency":"200"},{"Name":"East US 2","id":"eastus2","Latency":"206"},{"Name":"France Central","id":"francecentral","Latency":"127"},{"Name":"France South","id":"francesouth","Latency":"132"},{"Name":"Germany North","id":"germanynorth","Latency":"142"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"134"},{"Name":"Israel Central","id":"israelcentral","Latency":"159"},{"Name":"Italy North","id":"italynorth","Latency":"138"},{"Name":"Japan East","id":"japaneast","Latency":"122"},{"Name":"Japan West","id":"japanwest","Latency":"129"},{"Name":"Korea Central","id":"koreacentral","Latency":"119"},{"Name":"Korea South","id":"koreasouth","Latency":"113"},{"Name":"North Central US","id":"northcentralus","Latency":"225"},{"Name":"North Europe","id":"northeurope","Latency":"146"},{"Name":"Norway East","id":"norwayeast","Latency":"154"},{"Name":"Norway West","id":"norwaywest","Latency":"148"},{"Name":"Poland Central","id":"polandcentral","Latency":"151"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"41"},{"Name":"South Africa North","id":"southafricanorth","Latency":"138"},{"Name":"South Africa West","id":"southafricawest","Latency":"153"},{"Name":"South Central US","id":"southcentralus","Latency":"230"},{"Name":"South India","id":"southindia","Latency":"26"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"55"},{"Name":"Sweden Central","id":"swedencentral","Latency":"158"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"141"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"133"},{"Name":"UAE Central","id":"uaecentral","Latency":"35"},{"Name":"UAE North","id":"uaenorth","Latency":"38"},{"Name":"UK South","id":"uksouth","Latency":"133"},{"Name":"UK West","id":"ukwest","Latency":"138"},{"Name":"West Central US","id":"westcentralus","Latency":"240"},{"Name":"West Europe","id":"westeurope","Latency":"136"},{"Name":"West US","id":"westus","Latency":"221"},{"Name":"West US 2","id":"westus2","Latency":"214"},{"Name":"West US 3","id":"westus3","Latency":"232"}]},{"Name":"South India","id":"southindia","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"131"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"131"},{"Name":"Australia East","id":"australiaeast","Latency":"131"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"119"},{"Name":"Brazil South","id":"brazilsouth","Latency":"327"},{"Name":"Canada Central","id":"canadacentral","Latency":"236"},{"Name":"Canada East","id":"canadaeast","Latency":"240"},{"Name":"Central India","id":"centralindia","Latency":"29"},{"Name":"Central US","id":"centralus","Latency":"232"},{"Name":"East Asia","id":"eastasia","Latency":"66"},{"Name":"East US","id":"eastus","Latency":"224"},{"Name":"East US 2","id":"eastus2","Latency":"228"},{"Name":"France Central","id":"francecentral","Latency":"148"},{"Name":"France South","id":"francesouth","Latency":"154"},{"Name":"Germany North","id":"germanynorth","Latency":"159"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"151"},{"Name":"Israel Central","id":"israelcentral","Latency":"174"},{"Name":"Italy North","id":"italynorth","Latency":"159"},{"Name":"Japan East","id":"japaneast","Latency":"104"},{"Name":"Japan West","id":"japanwest","Latency":"111"},{"Name":"Korea Central","id":"koreacentral","Latency":"101"},{"Name":"Korea South","id":"koreasouth","Latency":"95"},{"Name":"North Central US","id":"northcentralus","Latency":"248"},{"Name":"North Europe","id":"northeurope","Latency":"160"},{"Name":"Norway East","id":"norwayeast","Latency":"170"},{"Name":"Norway West","id":"norwaywest","Latency":"162"},{"Name":"Poland Central","id":"polandcentral","Latency":"165"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"55"},{"Name":"South Africa North","id":"southafricanorth","Latency":"153"},{"Name":"South Africa West","id":"southafricawest","Latency":"168"},{"Name":"South Central US","id":"southcentralus","Latency":"230"},{"Name":"South India","id":"southindia","Latency":"44"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"36"},{"Name":"Sweden Central","id":"swedencentral","Latency":"173"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"164"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"151"},{"Name":"UAE Central","id":"uaecentral","Latency":"53"},{"Name":"UAE North","id":"uaenorth","Latency":"56"},{"Name":"UK South","id":"uksouth","Latency":"149"},{"Name":"UK West","id":"ukwest","Latency":"155"},{"Name":"West Central US","id":"westcentralus","Latency":"222"},{"Name":"West Europe","id":"westeurope","Latency":"160"},{"Name":"West US","id":"westus","Latency":"203"},{"Name":"West US 2","id":"westus2","Latency":"196"},{"Name":"West US 3","id":"westus3","Latency":"214"}]},{"Name":"West India","id":"westindia","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"173"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"172"},{"Name":"Australia East","id":"australiaeast","Latency":"170"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"160"},{"Name":"Brazil South","id":"brazilsouth","Latency":"322"},{"Name":"Canada Central","id":"canadacentral","Latency":"235"},{"Name":"Canada East","id":"canadaeast","Latency":"239"},{"Name":"Central US","id":"centralus","Latency":"254"},{"Name":"East Asia","id":"eastasia","Latency":"105"},{"Name":"East US","id":"eastus","Latency":"222"},{"Name":"East US 2","id":"eastus2","Latency":"225"},{"Name":"France Central","id":"francecentral","Latency":"147"},{"Name":"France South","id":"francesouth","Latency":"153"},{"Name":"Germany North","id":"germanynorth","Latency":"162"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"153"},{"Name":"Israel Central","id":"israelcentral","Latency":"182"},{"Name":"Italy North","id":"italynorth","Latency":"154"},{"Name":"Japan East","id":"japaneast","Latency":"143"},{"Name":"Japan West","id":"japanwest","Latency":"150"},{"Name":"Korea Central","id":"koreacentral","Latency":"140"},{"Name":"Korea South","id":"koreasouth","Latency":"134"},{"Name":"North Central US","id":"northcentralus","Latency":"243"},{"Name":"North Europe","id":"northeurope","Latency":"164"},{"Name":"Norway East","id":"norwayeast","Latency":"176"},{"Name":"Norway West","id":"norwaywest","Latency":"172"},{"Name":"Poland Central","id":"polandcentral","Latency":"173"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"65"},{"Name":"South Africa North","id":"southafricanorth","Latency":"158"},{"Name":"South Africa West","id":"southafricawest","Latency":"174"},{"Name":"South Central US","id":"southcentralus","Latency":"252"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"77"},{"Name":"Sweden Central","id":"swedencentral","Latency":"180"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"161"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"154"},{"Name":"UAE Central","id":"uaecentral","Latency":"56"},{"Name":"UAE North","id":"uaenorth","Latency":"62"},{"Name":"UK South","id":"uksouth","Latency":"155"},{"Name":"UK West","id":"ukwest","Latency":"158"},{"Name":"West Central US","id":"westcentralus","Latency":"262"},{"Name":"West Europe","id":"westeurope","Latency":"155"},{"Name":"West US","id":"westus","Latency":"242"},{"Name":"West US 2","id":"westus2","Latency":"234"},{"Name":"West US 3","id":"westus3","Latency":"253"}]},{"Name":"East Asia","id":"eastasia","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"127"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"127"},{"Name":"Australia East","id":"australiaeast","Latency":"123"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"119"},{"Name":"Brazil South","id":"brazilsouth","Latency":"323"},{"Name":"Canada Central","id":"canadacentral","Latency":"205"},{"Name":"Canada East","id":"canadaeast","Latency":"215"},{"Name":"Central India","id":"centralindia","Latency":"87"},{"Name":"Central US","id":"centralus","Latency":"184"},{"Name":"East Asia","id":"eastasia","Latency":"36"},{"Name":"East US","id":"eastus","Latency":"215"},{"Name":"East US 2","id":"eastus2","Latency":"208"},{"Name":"France Central","id":"francecentral","Latency":"217"},{"Name":"France South","id":"francesouth","Latency":"206"},{"Name":"Germany North","id":"germanynorth","Latency":"228"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"220"},{"Name":"Israel Central","id":"israelcentral","Latency":"245"},{"Name":"Italy North","id":"italynorth","Latency":"218"},{"Name":"Japan East","id":"japaneast","Latency":"52"},{"Name":"Japan West","id":"japanwest","Latency":"46"},{"Name":"Korea Central","id":"koreacentral","Latency":"43"},{"Name":"Korea South","id":"koreasouth","Latency":"37"},{"Name":"North Central US","id":"northcentralus","Latency":"195"},{"Name":"North Europe","id":"northeurope","Latency":"229"},{"Name":"Norway East","id":"norwayeast","Latency":"240"},{"Name":"Norway West","id":"norwaywest","Latency":"236"},{"Name":"Poland Central","id":"polandcentral","Latency":"237"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"121"},{"Name":"South Africa North","id":"southafricanorth","Latency":"218"},{"Name":"South Africa West","id":"southafricawest","Latency":"233"},{"Name":"South Central US","id":"southcentralus","Latency":"174"},{"Name":"South India","id":"southindia","Latency":"70"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"38"},{"Name":"Sweden Central","id":"swedencentral","Latency":"244"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"219"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"217"},{"Name":"UAE Central","id":"uaecentral","Latency":"119"},{"Name":"UAE North","id":"uaenorth","Latency":"121"},{"Name":"UK South","id":"uksouth","Latency":"221"},{"Name":"UK West","id":"ukwest","Latency":"223"},{"Name":"West Central US","id":"westcentralus","Latency":"170"},{"Name":"West Europe","id":"westeurope","Latency":"222"},{"Name":"West US","id":"westus","Latency":"154"},{"Name":"West US 2","id":"westus2","Latency":"147"},{"Name":"West US 3","id":"westus3","Latency":"158"}]},{"Name":"Southeast Asia","id":"southeastasia","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"101"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"100"},{"Name":"Australia East","id":"australiaeast","Latency":"91"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"86"},{"Name":"Brazil South","id":"brazilsouth","Latency":"344"},{"Name":"Canada Central","id":"canadacentral","Latency":"223"},{"Name":"Canada East","id":"canadaeast","Latency":"232"},{"Name":"Central India","id":"centralindia","Latency":"55"},{"Name":"Central US","id":"centralus","Latency":"202"},{"Name":"East US","id":"eastus","Latency":"233"},{"Name":"East US 2","id":"eastus2","Latency":"232"},{"Name":"France Central","id":"francecentral","Latency":"186"},{"Name":"France South","id":"francesouth","Latency":"181"},{"Name":"Germany North","id":"germanynorth","Latency":"195"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"188"},{"Name":"Israel Central","id":"israelcentral","Latency":"213"},{"Name":"Italy North","id":"italynorth","Latency":"188"},{"Name":"Japan East","id":"japaneast","Latency":"73"},{"Name":"Japan West","id":"japanwest","Latency":"73"},{"Name":"Korea Central","id":"koreacentral","Latency":"70"},{"Name":"Korea South","id":"koreasouth","Latency":"64"},{"Name":"North Central US","id":"northcentralus","Latency":"213"},{"Name":"North Europe","id":"northeurope","Latency":"198"},{"Name":"Norway East","id":"norwayeast","Latency":"208"},{"Name":"Norway West","id":"norwaywest","Latency":"204"},{"Name":"Poland Central","id":"polandcentral","Latency":"205"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"90"},{"Name":"South Africa North","id":"southafricanorth","Latency":"188"},{"Name":"South Africa West","id":"southafricawest","Latency":"203"},{"Name":"South Central US","id":"southcentralus","Latency":"204"},{"Name":"South India","id":"southindia","Latency":"38"},{"Name":"Sweden Central","id":"swedencentral","Latency":"212"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"189"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"187"},{"Name":"UAE Central","id":"uaecentral","Latency":"87"},{"Name":"UAE North","id":"uaenorth","Latency":"90"},{"Name":"UK South","id":"uksouth","Latency":"189"},{"Name":"UK West","id":"ukwest","Latency":"191"},{"Name":"West Central US","id":"westcentralus","Latency":"188"},{"Name":"West Europe","id":"westeurope","Latency":"190"},{"Name":"West US","id":"westus","Latency":"172"},{"Name":"West US 2","id":"westus2","Latency":"165"},{"Name":"West US 3","id":"westus3","Latency":"188"}]},{"Name":"Israel Central","id":"israelcentral","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"313"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"307"},{"Name":"Australia East","id":"australiaeast","Latency":"306"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"294"},{"Name":"Brazil South","id":"brazilsouth","Latency":"226"},{"Name":"Canada Central","id":"canadacentral","Latency":"136"},{"Name":"Canada East","id":"canadaeast","Latency":"142"},{"Name":"Central India","id":"centralindia","Latency":"158"},{"Name":"Central US","id":"centralus","Latency":"155"},{"Name":"East Asia","id":"eastasia","Latency":"241"},{"Name":"East US","id":"eastus","Latency":"123"},{"Name":"East US 2","id":"eastus2","Latency":"128"},{"Name":"France Central","id":"francecentral","Latency":"54"},{"Name":"France South","id":"francesouth","Latency":"44"},{"Name":"Germany North","id":"germanynorth","Latency":"67"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"59"},{"Name":"Israel Central","id":"israelcentral","Latency":"155"},{"Name":"Italy North","id":"italynorth","Latency":"50"},{"Name":"Japan East","id":"japaneast","Latency":"277"},{"Name":"Japan West","id":"japanwest","Latency":"284"},{"Name":"Korea Central","id":"koreacentral","Latency":"276"},{"Name":"Korea South","id":"koreasouth","Latency":"269"},{"Name":"North Central US","id":"northcentralus","Latency":"144"},{"Name":"North Europe","id":"northeurope","Latency":"70"},{"Name":"Norway East","id":"norwayeast","Latency":"83"},{"Name":"Norway West","id":"norwaywest","Latency":"81"},{"Name":"Poland Central","id":"polandcentral","Latency":"69"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"153"},{"Name":"South Africa North","id":"southafricanorth","Latency":"195"},{"Name":"South Africa West","id":"southafricawest","Latency":"183"},{"Name":"South Central US","id":"southcentralus","Latency":"153"},{"Name":"South India","id":"southindia","Latency":"173"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"211"},{"Name":"Sweden Central","id":"swedencentral","Latency":"84"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"50"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"51"},{"Name":"UAE Central","id":"uaecentral","Latency":"142"},{"Name":"UAE North","id":"uaenorth","Latency":"144"},{"Name":"UK South","id":"uksouth","Latency":"61"},{"Name":"UK West","id":"ukwest","Latency":"64"},{"Name":"West Central US","id":"westcentralus","Latency":"170"},{"Name":"West Europe","id":"westeurope","Latency":"67"},{"Name":"West US","id":"westus","Latency":"193"},{"Name":"West US 2","id":"westus2","Latency":"190"},{"Name":"West US 3","id":"westus3","Latency":"171"},{"Name":"Source","id":"source","Latency":"South Africa North"},{"Name":"Australia Central","id":"australiacentral","Latency":"280"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"281"},{"Name":"Australia East","id":"australiaeast","Latency":"280"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"268"},{"Name":"Brazil South","id":"brazilsouth","Latency":"327"},{"Name":"Canada Central","id":"canadacentral","Latency":"239"},{"Name":"Canada East","id":"canadaeast","Latency":"243"},{"Name":"Central India","id":"centralindia","Latency":"137"},{"Name":"Central US","id":"centralus","Latency":"258"},{"Name":"East Asia","id":"eastasia","Latency":"216"},{"Name":"East US","id":"eastus","Latency":"225"},{"Name":"East US 2","id":"eastus2","Latency":"230"},{"Name":"France Central","id":"francecentral","Latency":"157"},{"Name":"France South","id":"francesouth","Latency":"155"},{"Name":"Germany North","id":"germanynorth","Latency":"171"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"164"},{"Name":"Israel Central","id":"israelcentral","Latency":"196"},{"Name":"Italy North","id":"italynorth","Latency":"168"},{"Name":"Japan East","id":"japaneast","Latency":"253"},{"Name":"Japan West","id":"japanwest","Latency":"261"},{"Name":"Korea Central","id":"koreacentral","Latency":"251"},{"Name":"Korea South","id":"koreasouth","Latency":"244"},{"Name":"North Central US","id":"northcentralus","Latency":"246"},{"Name":"North Europe","id":"northeurope","Latency":"172"},{"Name":"Norway East","id":"norwayeast","Latency":"184"},{"Name":"Norway West","id":"norwaywest","Latency":"177"},{"Name":"Poland Central","id":"polandcentral","Latency":"180"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"118"},{"Name":"South Africa North","id":"southafricanorth","Latency":"20"},{"Name":"South Africa West","id":"southafricawest","Latency":"21"},{"Name":"South Central US","id":"southcentralus","Latency":"256"},{"Name":"South India","id":"southindia","Latency":"154"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"187"},{"Name":"Sweden Central","id":"swedencentral","Latency":"188"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"168"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"163"},{"Name":"UAE Central","id":"uaecentral","Latency":"108"},{"Name":"UAE North","id":"uaenorth","Latency":"104"},{"Name":"UK South","id":"uksouth","Latency":"163"},{"Name":"UK West","id":"ukwest","Latency":"165"},{"Name":"West Central US","id":"westcentralus","Latency":"271"},{"Name":"West Europe","id":"westeurope","Latency":"163"},{"Name":"West US","id":"westus","Latency":"295"},{"Name":"West US 2","id":"westus2","Latency":"292"},{"Name":"West US 3","id":"westus3","Latency":"274"}]},{"Name":"Qatar Central","id":"qatarcentral","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"184"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"183"},{"Name":"Australia East","id":"australiaeast","Latency":"182"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"171"},{"Name":"Brazil South","id":"brazilsouth","Latency":"296"},{"Name":"Canada Central","id":"canadacentral","Latency":"208"},{"Name":"Canada East","id":"canadaeast","Latency":"212"},{"Name":"Central India","id":"centralindia","Latency":"41"},{"Name":"Central US","id":"centralus","Latency":"227"},{"Name":"East Asia","id":"eastasia","Latency":"118"},{"Name":"East US","id":"eastus","Latency":"194"},{"Name":"East US 2","id":"eastus2","Latency":"198"},{"Name":"France Central","id":"francecentral","Latency":"125"},{"Name":"France South","id":"francesouth","Latency":"114"},{"Name":"Germany North","id":"germanynorth","Latency":"138"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"130"},{"Name":"Israel Central","id":"israelcentral","Latency":"142"},{"Name":"Italy North","id":"italynorth","Latency":"126"},{"Name":"Japan East","id":"japaneast","Latency":"156"},{"Name":"Japan West","id":"japanwest","Latency":"163"},{"Name":"Korea Central","id":"koreacentral","Latency":"153"},{"Name":"Korea South","id":"koreasouth","Latency":"146"},{"Name":"North Central US","id":"northcentralus","Latency":"214"},{"Name":"North Europe","id":"northeurope","Latency":"139"},{"Name":"Norway East","id":"norwayeast","Latency":"150"},{"Name":"Norway West","id":"norwaywest","Latency":"146"},{"Name":"Poland Central","id":"polandcentral","Latency":"146"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"16"},{"Name":"South Africa North","id":"southafricanorth","Latency":"117"},{"Name":"South Africa West","id":"southafricawest","Latency":"132"},{"Name":"South Central US","id":"southcentralus","Latency":"224"},{"Name":"South India","id":"southindia","Latency":"55"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"88"},{"Name":"Sweden Central","id":"swedencentral","Latency":"154"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"128"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"124"},{"Name":"UAE Central","id":"uaecentral","Latency":"17"},{"Name":"UAE North","id":"uaenorth","Latency":"18"},{"Name":"UK South","id":"uksouth","Latency":"131"},{"Name":"UK West","id":"ukwest","Latency":"133"},{"Name":"West Central US","id":"westcentralus","Latency":"240"},{"Name":"West Europe","id":"westeurope","Latency":"132"},{"Name":"West US","id":"westus","Latency":"263"},{"Name":"West US 2","id":"westus2","Latency":"255"},{"Name":"West US 3","id":"westus3","Latency":"242"},{"Name":"Source","id":"source","Latency":"South Africa West"},{"Name":"Australia Central","id":"australiacentral","Latency":"295"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"294"},{"Name":"Australia East","id":"australiaeast","Latency":"294"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"282"},{"Name":"Brazil South","id":"brazilsouth","Latency":"311"},{"Name":"Canada Central","id":"canadacentral","Latency":"221"},{"Name":"Canada East","id":"canadaeast","Latency":"226"},{"Name":"Central India","id":"centralindia","Latency":"151"},{"Name":"Central US","id":"centralus","Latency":"241"},{"Name":"East Asia","id":"eastasia","Latency":"230"},{"Name":"East US","id":"eastus","Latency":"208"},{"Name":"East US 2","id":"eastus2","Latency":"213"},{"Name":"France Central","id":"francecentral","Latency":"141"},{"Name":"France South","id":"francesouth","Latency":"138"},{"Name":"Germany North","id":"germanynorth","Latency":"154"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"148"},{"Name":"Israel Central","id":"israelcentral","Latency":"183"},{"Name":"Italy North","id":"italynorth","Latency":"150"},{"Name":"Japan East","id":"japaneast","Latency":"267"},{"Name":"Japan West","id":"japanwest","Latency":"274"},{"Name":"Korea Central","id":"koreacentral","Latency":"265"},{"Name":"Korea South","id":"koreasouth","Latency":"258"},{"Name":"North Central US","id":"northcentralus","Latency":"228"},{"Name":"North Europe","id":"northeurope","Latency":"155"},{"Name":"Norway East","id":"norwayeast","Latency":"167"},{"Name":"Norway West","id":"norwaywest","Latency":"160"},{"Name":"Poland Central","id":"polandcentral","Latency":"163"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"131"},{"Name":"South Central US","id":"southcentralus","Latency":"238"},{"Name":"South India","id":"southindia","Latency":"169"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"201"},{"Name":"Sweden Central","id":"swedencentral","Latency":"170"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"150"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"145"},{"Name":"UAE Central","id":"uaecentral","Latency":"121"},{"Name":"UAE North","id":"uaenorth","Latency":"118"},{"Name":"UK South","id":"uksouth","Latency":"146"},{"Name":"UK West","id":"ukwest","Latency":"150"},{"Name":"West Central US","id":"westcentralus","Latency":"254"},{"Name":"West Europe","id":"westeurope","Latency":"146"},{"Name":"West US","id":"westus","Latency":"277"},{"Name":"West US 2","id":"westus2","Latency":"275"},{"Name":"West US 3","id":"westus3","Latency":"256"}]},{"Name":"UAE Central","id":"uaecentral","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"178"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"178"},{"Name":"Australia East","id":"australiaeast","Latency":"177"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"165"},{"Name":"Brazil South","id":"brazilsouth","Latency":"284"},{"Name":"Canada Central","id":"canadacentral","Latency":"195"},{"Name":"Canada East","id":"canadaeast","Latency":"200"},{"Name":"Central India","id":"centralindia","Latency":"34"},{"Name":"Central US","id":"centralus","Latency":"214"},{"Name":"East Asia","id":"eastasia","Latency":"116"},{"Name":"East US","id":"eastus","Latency":"182"},{"Name":"East US 2","id":"eastus2","Latency":"186"},{"Name":"France Central","id":"francecentral","Latency":"114"},{"Name":"France South","id":"francesouth","Latency":"102"},{"Name":"Germany North","id":"germanynorth","Latency":"125"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"118"},{"Name":"Israel Central","id":"israelcentral","Latency":"145"},{"Name":"Italy North","id":"italynorth","Latency":"113"},{"Name":"Japan East","id":"japaneast","Latency":"152"},{"Name":"Japan West","id":"japanwest","Latency":"160"},{"Name":"Korea Central","id":"koreacentral","Latency":"149"},{"Name":"Korea South","id":"koreasouth","Latency":"144"},{"Name":"North Central US","id":"northcentralus","Latency":"202"},{"Name":"North Europe","id":"northeurope","Latency":"127"},{"Name":"Norway East","id":"norwayeast","Latency":"138"},{"Name":"Norway West","id":"norwaywest","Latency":"134"},{"Name":"Poland Central","id":"polandcentral","Latency":"134"},{"Name":"Qatar Central","id":"qatarcentral","Latency":"17"},{"Name":"South Africa North","id":"southafricanorth","Latency":"105"},{"Name":"South Africa West","id":"southafricawest","Latency":"121"},{"Name":"South Central US","id":"southcentralus","Latency":"212"},{"Name":"South India","id":"southindia","Latency":"52"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"85"},{"Name":"Sweden Central","id":"swedencentral","Latency":"141"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"115"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"110"},{"Name":"UAE Central","id":"uaecentral","Latency":"6"},{"Name":"UAE North","id":"uaenorth","Latency":"6"},{"Name":"UK South","id":"uksouth","Latency":"119"},{"Name":"UK West","id":"ukwest","Latency":"120"},{"Name":"West Central US","id":"westcentralus","Latency":"227"},{"Name":"West Europe","id":"westeurope","Latency":"121"},{"Name":"West US","id":"westus","Latency":"251"},{"Name":"West US 2","id":"westus2","Latency":"249"},{"Name":"West US 3","id":"westus3","Latency":"229"}]},{"Name":"UAE North","id":"uaenorth","Destinations":[{"Name":"Australia Central","id":"australiacentral","Latency":"182"},{"Name":"Australia Central 2","id":"australiacentral2","Latency":"181"},{"Name":"Australia East","id":"australiaeast","Latency":"180"},{"Name":"Australia Southeast","id":"australiasoutheast","Latency":"168"},{"Name":"Brazil South","id":"brazilsouth","Latency":"287"},{"Name":"Canada Central","id":"canadacentral","Latency":"198"},{"Name":"Canada East","id":"canadaeast","Latency":"203"},{"Name":"Central India","id":"centralindia","Latency":"37"},{"Name":"Central US","id":"centralus","Latency":"217"},{"Name":"East Asia","id":"eastasia","Latency":"118"},{"Name":"East US","id":"eastus","Latency":"184"},{"Name":"East US 2","id":"eastus2","Latency":"189"},{"Name":"France Central","id":"francecentral","Latency":"116"},{"Name":"France South","id":"francesouth","Latency":"105"},{"Name":"Germany North","id":"germanynorth","Latency":"128"},{"Name":"Germany West Central","id":"germanywestcentral","Latency":"120"},{"Name":"Italy North","id":"italynorth","Latency":"116"},{"Name":"Japan East","id":"japaneast","Latency":"155"},{"Name":"Japan West","id":"japanwest","Latency":"162"},{"Name":"Korea Central","id":"koreacentral","Latency":"152"},{"Name":"Korea South","id":"koreasouth","Latency":"146"},{"Name":"North Central US","id":"northcentralus","Latency":"205"},{"Name":"North Europe","id":"northeurope","Latency":"129"},{"Name":"Norway East","id":"norwayeast","Latency":"140"},{"Name":"Norway West","id":"norwaywest","Latency":"136"},{"Name":"Poland Central","id":"polandcentral","Latency":"136"},{"Name":"South Africa North","id":"southafricanorth","Latency":"102"},{"Name":"South Africa West","id":"southafricawest","Latency":"118"},{"Name":"South Central US","id":"southcentralus","Latency":"214"},{"Name":"South India","id":"southindia","Latency":"56"},{"Name":"Southeast Asia","id":"southeastasia","Latency":"88"},{"Name":"Sweden Central","id":"swedencentral","Latency":"144"},{"Name":"Switzerland North","id":"switzerlandnorth","Latency":"118"},{"Name":"Switzerland West","id":"switzerlandwest","Latency":"112"},{"Name":"UK South","id":"uksouth","Latency":"121"},{"Name":"UK West","id":"ukwest","Latency":"123"},{"Name":"West Central US","id":"westcentralus","Latency":"230"},{"Name":"West Europe","id":"westeurope","Latency":"122"},{"Name":"West US","id":"westus","Latency":"254"},{"Name":"West US 2","id":"westus2","Latency":"251"},{"Name":"West US 3","id":"westus3","Latency":"232"}]}]}' | ConvertFrom-Json |