36 lines
921 B
Python
36 lines
921 B
Python
# coding: utf-8
|
|
|
|
import types
|
|
import six
|
|
|
|
from huaweicloudsdkcore.region.region import Region
|
|
from huaweicloudsdkcore.region.provider import RegionProviderChain
|
|
|
|
class IoTAnalyticsRegion:
|
|
_PROVIDER = RegionProviderChain.get_default_region_provider_chain("IOTANALYTICS")
|
|
|
|
CN_NORTH_4 = Region("cn-north-4",
|
|
"https://iota.cn-north-4.myhuaweicloud.com")
|
|
|
|
static_fields = {
|
|
"cn-north-4": CN_NORTH_4,
|
|
}
|
|
|
|
@classmethod
|
|
def value_of(cls, region_id, static_fields=None):
|
|
if not region_id:
|
|
raise KeyError("Unexpected empty parameter: region_id.")
|
|
|
|
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)
|
|
|
|
|