15 lines
320 B
Python
15 lines
320 B
Python
# coding: utf-8
|
|
|
|
from huaweicloudsdkcore.region.region import Region
|
|
|
|
|
|
class LiveRegion:
|
|
def __init__(self):
|
|
pass
|
|
|
|
CN_NORTH_4 = Region(id="cn-north-4", endpoint="https://live.cn-north-4.myhuaweicloud.com")
|
|
|
|
CN_NORTH_1 = Region(id="cn-north-1", endpoint="https://live.cn-north-1.myhuaweicloud.com")
|
|
|
|
|