# coding=utf8
# Copyright 2018 JDCLOUD.COM
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# NOTE: This class is auto generated by the jdcloud code generator program.
from jdcloud_sdk.core.jdcloudrequest import JDCloudRequest
[docs]class CreateVpcRequest(JDCloudRequest):
"""
创建私有网络
"""
def __init__(self, parameters, header=None, version="v1"):
super(CreateVpcRequest, self).__init__(
'/regions/{regionId}/vpcs/', 'POST', header, version)
self.parameters = parameters
[docs]class CreateVpcParameters(object):
def __init__(self,regionId, vpcName, ):
"""
:param regionId: Region ID
:param vpcName: 私有网络名称,只允许输入中文、数字、大小写字母、英文下划线“_”及中划线“-”,不允许为空且不超过32字符。
"""
self.regionId = regionId
self.vpcName = vpcName
self.addressPrefix = None
self.description = None
self.enableMulticast = None
self.azType = None
self.az = None
[docs] def setAddressPrefix(self, addressPrefix):
"""
:param addressPrefix: (Optional) 如果为空,则不限制网段,如果不为空,10.0.0.0/8、172.16.0.0/12和192.168.0.0/16及它们包含的子网,且子网掩码长度为16-28之间
"""
self.addressPrefix = addressPrefix
[docs] def setDescription(self, description):
"""
:param description: (Optional) vpc描述,允许输入UTF-8编码下的全部字符,不超过256字符。
"""
self.description = description
[docs] def setEnableMulticast(self, enableMulticast):
"""
:param enableMulticast: (Optional) 取值包括true、false,默认为false,不开启组播。
"""
self.enableMulticast = enableMulticast
[docs] def setAzType(self, azType):
"""
:param azType: (Optional) VPC az类型,取值:standard(标准VPC),edge(边缘VPC)
"""
self.azType = azType
[docs] def setAz(self, az):
"""
:param az: (Optional) VPC可用区,边缘VPC必须指定可用区
"""
self.az = az