13 lines
222 B
Python
13 lines
222 B
Python
|
# coding: utf-8
|
||
|
|
||
|
from huaweicloudsdkcore.region.region import Region
|
||
|
|
||
|
|
||
|
class CceRegion:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
CN_NORTH_2 = Region(id="cn-north-2", endpoint="https://cce.cn-north-2.myhuaweicloud.com")
|
||
|
|
||
|
|