31 lines
1.1 KiB
Python
31 lines
1.1 KiB
Python
|
# coding: utf-8
|
||
|
|
||
|
from huaweicloudsdkcore.region.region import Region
|
||
|
|
||
|
|
||
|
class VpcRegion:
|
||
|
def __init__(self):
|
||
|
pass
|
||
|
|
||
|
AF_SOUTH_1 = Region(id="af-south-1", endpoint="https://vpc.af-south-1.myhuaweicloud.com")
|
||
|
|
||
|
CN_NORTH_4 = Region(id="cn-north-4", endpoint="https://vpc.cn-north-4.myhuaweicloud.com")
|
||
|
|
||
|
CN_NORTH_1 = Region(id="cn-north-1", endpoint="https://vpc.cn-north-1.myhuaweicloud.com")
|
||
|
|
||
|
CN_EAST_2 = Region(id="cn-east-2", endpoint="https://vpc.cn-east-2.myhuaweicloud.com")
|
||
|
|
||
|
CN_EAST_3 = Region(id="cn-east-3", endpoint="https://vpc.cn-east-3.myhuaweicloud.com")
|
||
|
|
||
|
CN_SOUTH_1 = Region(id="cn-south-1", endpoint="https://vpc.cn-south-1.myhuaweicloud.com")
|
||
|
|
||
|
CN_SOUTHWEST_2 = Region(id="cn-southwest-2", endpoint="https://vpc.cn-southwest-2.myhuaweicloud.com")
|
||
|
|
||
|
AP_SOUTHEAST_2 = Region(id="ap-southeast-2", endpoint="https://vpc.ap-southeast-2.myhuaweicloud.com")
|
||
|
|
||
|
AP_SOUTHEAST_1 = Region(id="ap-southeast-1", endpoint="https://vpc.ap-southeast-1.myhwclouds.com")
|
||
|
|
||
|
AP_SOUTHEAST_3 = Region(id="ap-southeast-3", endpoint="https://vpc.ap-southeast-3.myhuaweicloud.com")
|
||
|
|
||
|
|