yunion.io/x/cloudmux@v0.3.10-0-alpha.1/pkg/multicloud/qcloud/latitud_and_longitude.go (about)

     1  // Copyright 2019 Yunion
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package qcloud
    16  
    17  import (
    18  	api "yunion.io/x/cloudmux/pkg/apis/compute"
    19  	"yunion.io/x/cloudmux/pkg/cloudprovider"
    20  )
    21  
    22  var LatitudeAndLongitude = map[string]cloudprovider.SGeographicInfo{
    23  	"ap-bangkok":        api.RegionBangkok,       // 腾讯云 亚太地区(曼谷)
    24  	"ap-beijing":        api.RegionBeijing,       // 腾讯云 华北地区(北京)
    25  	"ap-chengdu":        api.RegionChengdu,       // 腾讯云 西南地区(成都)
    26  	"ap-chongqing":      api.RegionChongqing,     // 腾讯云 西南地区(重庆)
    27  	"ap-guangzhou":      api.RegionGuangzhou,     // 腾讯云 华南地区(广州)
    28  	"ap-guangzhou-open": api.RegionGuangzhou,     // 腾讯云 华南地区(广州Open)
    29  	"ap-hongkong":       api.RegionHongkong,      // 腾讯云 东南亚地区(香港)
    30  	"ap-mumbai":         api.RegionMumbai,        // 腾讯云 亚太地区(孟买)
    31  	"ap-seoul":          api.RegionSeoul,         // 腾讯云 东南亚地区(首尔)
    32  	"ap-shanghai":       api.RegionShanghai,      // 腾讯云 华东地区(上海)
    33  	"ap-shanghai-fsi":   api.RegionShanghai,      // 腾讯云 华东地区(上海金融)
    34  	"ap-shenzhen-fsi":   api.RegionShenzhen,      // 腾讯云 华南地区(深圳金融)
    35  	"ap-singapore":      api.RegionSingapore,     // 腾讯云 东南亚地区(新加坡)
    36  	"ap-tokyo":          api.RegionTokyo,         // 腾讯云 亚太地区(东京)
    37  	"eu-frankfurt":      api.RegionFrankfurt,     // 腾讯云 欧洲地区(德国)
    38  	"eu-moscow":         api.RegionMoscow,        // 腾讯云 欧洲地区(莫斯科)
    39  	"na-ashburn":        api.RegionVirginia,      // 腾讯云 美国东部(弗吉尼亚)
    40  	"na-siliconvalley":  api.RegionSiliconValley, // 腾讯云 美国西部(硅谷)
    41  	"na-toronto":        api.RegionToronto,       // 腾讯云 北美地区(多伦多)
    42  	"ap-nanjing":        api.RegionNanjing,
    43  }