2021-08-17 07:57:38 +00:00
|
|
|
# coding: utf-8
|
|
|
|
|
|
|
|
import types
|
|
|
|
import six
|
|
|
|
|
|
|
|
from huaweicloudsdkcore.region.region import Region
|
2022-06-23 11:11:56 +00:00
|
|
|
from huaweicloudsdkcore.region.provider import RegionProviderChain
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
class AntiDDoSRegion:
|
2022-06-23 11:11:56 +00:00
|
|
|
_PROVIDER = RegionProviderChain.get_default_region_provider_chain("ANTIDDOS")
|
|
|
|
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
CN_NORTH_1 = Region(id="cn-north-1", endpoint="https://antiddos.cn-north-1.myhuaweicloud.com")
|
|
|
|
|
|
|
|
CN_NORTH_2 = Region(id="cn-north-2", endpoint="https://antiddos.cn-north-2.myhuaweicloud.com")
|
|
|
|
|
|
|
|
CN_NORTH_4 = Region(id="cn-north-4", endpoint="https://antiddos.cn-north-4.myhuaweicloud.com")
|
|
|
|
|
|
|
|
CN_EAST_3 = Region(id="cn-east-3", endpoint="https://antiddos.cn-east-3.myhuaweicloud.com")
|
|
|
|
|
|
|
|
CN_EAST_2 = Region(id="cn-east-2", endpoint="https://antiddos.cn-east-2.myhuaweicloud.com")
|
|
|
|
|
|
|
|
CN_SOUTH_1 = Region(id="cn-south-1", endpoint="https://antiddos.cn-south-1.myhuaweicloud.com")
|
|
|
|
|
|
|
|
CN_SOUTH_2 = Region(id="cn-south-2", endpoint="https://antiddos.cn-south-2.myhuaweicloud.com")
|
|
|
|
|
|
|
|
CN_SOUTHWEST_2 = Region(id="cn-southwest-2", endpoint="https://antiddos.cn-southwest-2.myhuaweicloud.com")
|
|
|
|
|
|
|
|
AP_SOUTHEAST_1 = Region(id="ap-southeast-1", endpoint="https://antiddos.ap-southeast-1.myhuaweicloud.com")
|
|
|
|
|
|
|
|
AP_SOUTHEAST_2 = Region(id="ap-southeast-2", endpoint="https://antiddos.ap-southeast-2.myhuaweicloud.com")
|
|
|
|
|
|
|
|
AP_SOUTHEAST_3 = Region(id="ap-southeast-3", endpoint="https://antiddos.ap-southeast-3.myhuaweicloud.com")
|
|
|
|
|
|
|
|
AF_SOUTH_1 = Region(id="af-south-1", endpoint="https://antiddos.af-south-1.myhuaweicloud.com")
|
|
|
|
|
|
|
|
RU_NORTHWEST_2 = Region(id="ru-northwest-2", endpoint="https://antiddos.ru-northwest-2.myhuaweicloud.com")
|
|
|
|
|
|
|
|
static_fields = {
|
|
|
|
"cn-north-1": CN_NORTH_1,
|
|
|
|
"cn-north-2": CN_NORTH_2,
|
|
|
|
"cn-north-4": CN_NORTH_4,
|
|
|
|
"cn-east-3": CN_EAST_3,
|
|
|
|
"cn-east-2": CN_EAST_2,
|
|
|
|
"cn-south-1": CN_SOUTH_1,
|
|
|
|
"cn-south-2": CN_SOUTH_2,
|
|
|
|
"cn-southwest-2": CN_SOUTHWEST_2,
|
|
|
|
"ap-southeast-1": AP_SOUTHEAST_1,
|
|
|
|
"ap-southeast-2": AP_SOUTHEAST_2,
|
|
|
|
"ap-southeast-3": AP_SOUTHEAST_3,
|
|
|
|
"af-south-1": AF_SOUTH_1,
|
|
|
|
"ru-northwest-2": RU_NORTHWEST_2,
|
|
|
|
}
|
|
|
|
|
2022-06-23 11:11:56 +00:00
|
|
|
@classmethod
|
|
|
|
def value_of(cls, region_id, static_fields=None):
|
|
|
|
if not region_id:
|
2021-08-17 07:57:38 +00:00
|
|
|
raise KeyError("Unexpected empty parameter: region_id.")
|
2022-06-23 11:11:56 +00:00
|
|
|
|
|
|
|
fields = static_fields if static_fields else cls.static_fields
|
|
|
|
|
|
|
|
region = cls._PROVIDER.get_region(region_id)
|
|
|
|
if region:
|
|
|
|
return region
|
|
|
|
|
|
|
|
if region_id in fields:
|
|
|
|
return fields.get(region_id)
|
|
|
|
|
|
|
|
raise KeyError("Unexpected region_id: " + region_id)
|
2021-08-17 07:57:38 +00:00
|
|
|
|
|
|
|
|