huaweicloud-sdk-python-v3/huaweicloud-sdk-vpc/huaweicloudsdkvpc/v2/model/vpc.py

265 lines
7.8 KiB
Python
Raw Normal View History

2020-05-18 07:34:40 +00:00
# coding: utf-8
import re
import six
2021-07-26 11:24:08 +00:00
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
class Vpc:
2020-05-18 07:34:40 +00:00
"""
Attributes:
openapi_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
sensitive_list = []
2020-05-18 07:34:40 +00:00
openapi_types = {
'id': 'str',
'name': 'str',
'cidr': 'str',
'description': 'str',
'routes': 'list[Route]',
'status': 'str',
'enterprise_project_id': 'str'
}
attribute_map = {
'id': 'id',
'name': 'name',
'cidr': 'cidr',
'description': 'description',
'routes': 'routes',
'status': 'status',
'enterprise_project_id': 'enterprise_project_id'
}
def __init__(self, id=None, name=None, cidr=None, description=None, routes=None, status=None, enterprise_project_id=None):
2020-05-18 07:34:40 +00:00
"""Vpc - a model defined in huaweicloud sdk"""
2020-05-18 07:34:40 +00:00
self._id = None
self._name = None
self._cidr = None
self._description = None
self._routes = None
self._status = None
self._enterprise_project_id = None
self.discriminator = None
self.id = id
self.name = name
self.cidr = cidr
self.description = description
self.routes = routes
self.status = status
self.enterprise_project_id = enterprise_project_id
@property
def id(self):
"""Gets the id of this Vpc.
功能说明虚拟私有云ID 取值范围\"-\"的UUID
:return: The id of this Vpc.
:rtype: str
"""
return self._id
@id.setter
def id(self, id):
"""Sets the id of this Vpc.
功能说明虚拟私有云ID 取值范围\"-\"的UUID
:param id: The id of this Vpc.
:type: str
"""
self._id = id
@property
def name(self):
"""Gets the name of this Vpc.
功能说明虚拟私有云名称 取值范围0-64个字符支持数字字母中文_(下划线)-中划线. 约束如果名称不为空则同一个租户下的名称不能重复
:return: The name of this Vpc.
:rtype: str
"""
return self._name
@name.setter
def name(self, name):
"""Sets the name of this Vpc.
功能说明虚拟私有云名称 取值范围0-64个字符支持数字字母中文_(下划线)-中划线. 约束如果名称不为空则同一个租户下的名称不能重复
:param name: The name of this Vpc.
:type: str
"""
self._name = name
@property
def cidr(self):
"""Gets the cidr of this Vpc.
功能说明虚拟私有云下可用子网的范围 取值范围 - 10.0.0.0/8~10.255.255.240/28 - 172.16.0.0/12 ~ 172.31.255.240/28 - 192.168.0.0/16 ~ 192.168.255.240/28 不指定cidr时默认值为空 约束必须是ipv4 cidr格式例如:192.168.0.0/16
:return: The cidr of this Vpc.
:rtype: str
"""
return self._cidr
@cidr.setter
def cidr(self, cidr):
"""Sets the cidr of this Vpc.
功能说明虚拟私有云下可用子网的范围 取值范围 - 10.0.0.0/8~10.255.255.240/28 - 172.16.0.0/12 ~ 172.31.255.240/28 - 192.168.0.0/16 ~ 192.168.255.240/28 不指定cidr时默认值为空 约束必须是ipv4 cidr格式例如:192.168.0.0/16
:param cidr: The cidr of this Vpc.
:type: str
"""
self._cidr = cidr
@property
def description(self):
"""Gets the description of this Vpc.
功能说明虚拟私有云的描述 取值范围0-255个字符不能包含<>
:return: The description of this Vpc.
:rtype: str
"""
return self._description
@description.setter
def description(self, description):
"""Sets the description of this Vpc.
功能说明虚拟私有云的描述 取值范围0-255个字符不能包含<>
:param description: The description of this Vpc.
:type: str
"""
self._description = description
@property
def routes(self):
"""Gets the routes of this Vpc.
功能说明路由信息列表详情参见route对象
:return: The routes of this Vpc.
:rtype: list[Route]
"""
return self._routes
@routes.setter
def routes(self, routes):
"""Sets the routes of this Vpc.
功能说明路由信息列表详情参见route对象
:param routes: The routes of this Vpc.
:type: list[Route]
"""
self._routes = routes
@property
def status(self):
"""Gets the status of this Vpc.
功能说明虚拟私有云的状态 取值范围 - CREATING创建中 - OK创建成功
:return: The status of this Vpc.
:rtype: str
"""
return self._status
@status.setter
def status(self, status):
"""Sets the status of this Vpc.
功能说明虚拟私有云的状态 取值范围 - CREATING创建中 - OK创建成功
:param status: The status of this Vpc.
:type: str
"""
self._status = status
@property
def enterprise_project_id(self):
"""Gets the enterprise_project_id of this Vpc.
功能说明企业项目ID 取值范围最大长度36字节-连字符的UUID格式或者是字符串00表示默认企业项目
:return: The enterprise_project_id of this Vpc.
:rtype: str
"""
return self._enterprise_project_id
@enterprise_project_id.setter
def enterprise_project_id(self, enterprise_project_id):
"""Sets the enterprise_project_id of this Vpc.
功能说明企业项目ID 取值范围最大长度36字节-连字符的UUID格式或者是字符串00表示默认企业项目
:param enterprise_project_id: The enterprise_project_id of this Vpc.
:type: str
"""
self._enterprise_project_id = enterprise_project_id
def to_dict(self):
"""Returns the model properties as a dict"""
result = {}
for attr, _ in six.iteritems(self.openapi_types):
value = getattr(self, attr)
if isinstance(value, list):
result[attr] = list(map(
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
value
))
elif hasattr(value, "to_dict"):
result[attr] = value.to_dict()
elif isinstance(value, dict):
result[attr] = dict(map(
lambda item: (item[0], item[1].to_dict())
if hasattr(item[1], "to_dict") else item,
value.items()
))
else:
if attr in self.sensitive_list:
result[attr] = "****"
else:
result[attr] = value
2020-05-18 07:34:40 +00:00
return result
def to_str(self):
2021-07-09 10:57:08 +00:00
import simplejson as json
2021-07-26 11:24:08 +00:00
return json.dumps(sanitize_for_serialization(self))
2020-05-18 07:34:40 +00:00
def __repr__(self):
"""For `print` and `pprint`"""
return self.to_str()
def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, Vpc):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other