2021-10-25 10:02:15 +00:00
|
|
|
|
# coding: utf-8
|
|
|
|
|
|
|
|
|
|
import six
|
|
|
|
|
|
|
|
|
|
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class VnicInfo:
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
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 = []
|
|
|
|
|
|
|
|
|
|
openapi_types = {
|
|
|
|
|
'private_ip_address': 'str',
|
|
|
|
|
'device_id': 'str',
|
|
|
|
|
'device_owner': 'str',
|
|
|
|
|
'vpc_id': 'str',
|
|
|
|
|
'port_id': 'str',
|
|
|
|
|
'port_profile': 'str',
|
|
|
|
|
'mac': 'str',
|
|
|
|
|
'vtep': 'str',
|
|
|
|
|
'vni': 'str',
|
|
|
|
|
'instance_id': 'str',
|
|
|
|
|
'instance_type': 'str'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
attribute_map = {
|
|
|
|
|
'private_ip_address': 'private_ip_address',
|
|
|
|
|
'device_id': 'device_id',
|
|
|
|
|
'device_owner': 'device_owner',
|
|
|
|
|
'vpc_id': 'vpc_id',
|
|
|
|
|
'port_id': 'port_id',
|
|
|
|
|
'port_profile': 'port_profile',
|
|
|
|
|
'mac': 'mac',
|
|
|
|
|
'vtep': 'vtep',
|
|
|
|
|
'vni': 'vni',
|
|
|
|
|
'instance_id': 'instance_id',
|
|
|
|
|
'instance_type': 'instance_type'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def __init__(self, private_ip_address=None, device_id=None, device_owner=None, vpc_id=None, port_id=None, port_profile=None, mac=None, vtep=None, vni=None, instance_id=None, instance_type=None):
|
2022-04-21 12:03:46 +00:00
|
|
|
|
"""VnicInfo
|
|
|
|
|
|
|
|
|
|
The model defined in huaweicloud sdk
|
|
|
|
|
|
|
|
|
|
:param private_ip_address: 功能说明:私网IP地址
|
|
|
|
|
:type private_ip_address: str
|
|
|
|
|
:param device_id: 功能说明:端口所属设备ID 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
:type device_id: str
|
|
|
|
|
:param device_owner: 功能说明:设备所属 取值范围:合法设备所属,如network:dhcp、network:VIP_PORT、network:router_interface_distributed、network:router_centralized_snat 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
:type device_owner: str
|
|
|
|
|
:param vpc_id: 功能说明:虚拟私有云ID
|
|
|
|
|
:type vpc_id: str
|
|
|
|
|
:param port_id: 功能说明:端口ID
|
|
|
|
|
:type port_id: str
|
|
|
|
|
:param port_profile: 功能说明:端口profile信息
|
|
|
|
|
:type port_profile: str
|
|
|
|
|
:param mac: 功能说明:端口MAC地址 约束:由系统分配,不支持指定
|
|
|
|
|
:type mac: str
|
|
|
|
|
:param vtep: 功能说明:VTEP IP
|
|
|
|
|
:type vtep: str
|
|
|
|
|
:param vni: 功能说明:VXLAN ID
|
|
|
|
|
:type vni: str
|
|
|
|
|
:param instance_id: 功能说明:端口所属实例ID,例如RDS实例ID 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
:type instance_id: str
|
|
|
|
|
:param instance_type: 功能说明:端口所属实例类型,例如“RDS” 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
:type instance_type: str
|
|
|
|
|
"""
|
2021-10-25 10:02:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self._private_ip_address = None
|
|
|
|
|
self._device_id = None
|
|
|
|
|
self._device_owner = None
|
|
|
|
|
self._vpc_id = None
|
|
|
|
|
self._port_id = None
|
|
|
|
|
self._port_profile = None
|
|
|
|
|
self._mac = None
|
|
|
|
|
self._vtep = None
|
|
|
|
|
self._vni = None
|
|
|
|
|
self._instance_id = None
|
|
|
|
|
self._instance_type = None
|
|
|
|
|
self.discriminator = None
|
|
|
|
|
|
|
|
|
|
if private_ip_address is not None:
|
|
|
|
|
self.private_ip_address = private_ip_address
|
|
|
|
|
if device_id is not None:
|
|
|
|
|
self.device_id = device_id
|
|
|
|
|
if device_owner is not None:
|
|
|
|
|
self.device_owner = device_owner
|
|
|
|
|
if vpc_id is not None:
|
|
|
|
|
self.vpc_id = vpc_id
|
|
|
|
|
if port_id is not None:
|
|
|
|
|
self.port_id = port_id
|
|
|
|
|
if port_profile is not None:
|
|
|
|
|
self.port_profile = port_profile
|
|
|
|
|
if mac is not None:
|
|
|
|
|
self.mac = mac
|
|
|
|
|
if vtep is not None:
|
|
|
|
|
self.vtep = vtep
|
|
|
|
|
if vni is not None:
|
|
|
|
|
self.vni = vni
|
|
|
|
|
if instance_id is not None:
|
|
|
|
|
self.instance_id = instance_id
|
|
|
|
|
if instance_type is not None:
|
|
|
|
|
self.instance_type = instance_type
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def private_ip_address(self):
|
|
|
|
|
"""Gets the private_ip_address of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:私网IP地址
|
|
|
|
|
|
|
|
|
|
:return: The private_ip_address of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._private_ip_address
|
|
|
|
|
|
|
|
|
|
@private_ip_address.setter
|
|
|
|
|
def private_ip_address(self, private_ip_address):
|
|
|
|
|
"""Sets the private_ip_address of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:私网IP地址
|
|
|
|
|
|
|
|
|
|
:param private_ip_address: The private_ip_address of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type private_ip_address: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._private_ip_address = private_ip_address
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def device_id(self):
|
|
|
|
|
"""Gets the device_id of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口所属设备ID 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
|
|
|
|
|
:return: The device_id of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._device_id
|
|
|
|
|
|
|
|
|
|
@device_id.setter
|
|
|
|
|
def device_id(self, device_id):
|
|
|
|
|
"""Sets the device_id of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口所属设备ID 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
|
|
|
|
|
:param device_id: The device_id of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type device_id: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._device_id = device_id
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def device_owner(self):
|
|
|
|
|
"""Gets the device_owner of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:设备所属 取值范围:合法设备所属,如network:dhcp、network:VIP_PORT、network:router_interface_distributed、network:router_centralized_snat 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
|
|
|
|
|
:return: The device_owner of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._device_owner
|
|
|
|
|
|
|
|
|
|
@device_owner.setter
|
|
|
|
|
def device_owner(self, device_owner):
|
|
|
|
|
"""Sets the device_owner of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:设备所属 取值范围:合法设备所属,如network:dhcp、network:VIP_PORT、network:router_interface_distributed、network:router_centralized_snat 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
|
|
|
|
|
:param device_owner: The device_owner of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type device_owner: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._device_owner = device_owner
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def vpc_id(self):
|
|
|
|
|
"""Gets the vpc_id of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:虚拟私有云ID
|
|
|
|
|
|
|
|
|
|
:return: The vpc_id of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._vpc_id
|
|
|
|
|
|
|
|
|
|
@vpc_id.setter
|
|
|
|
|
def vpc_id(self, vpc_id):
|
|
|
|
|
"""Sets the vpc_id of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:虚拟私有云ID
|
|
|
|
|
|
|
|
|
|
:param vpc_id: The vpc_id of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type vpc_id: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._vpc_id = vpc_id
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def port_id(self):
|
|
|
|
|
"""Gets the port_id of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口ID
|
|
|
|
|
|
|
|
|
|
:return: The port_id of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._port_id
|
|
|
|
|
|
|
|
|
|
@port_id.setter
|
|
|
|
|
def port_id(self, port_id):
|
|
|
|
|
"""Sets the port_id of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口ID
|
|
|
|
|
|
|
|
|
|
:param port_id: The port_id of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type port_id: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._port_id = port_id
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def port_profile(self):
|
|
|
|
|
"""Gets the port_profile of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口profile信息
|
|
|
|
|
|
|
|
|
|
:return: The port_profile of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._port_profile
|
|
|
|
|
|
|
|
|
|
@port_profile.setter
|
|
|
|
|
def port_profile(self, port_profile):
|
|
|
|
|
"""Sets the port_profile of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口profile信息
|
|
|
|
|
|
|
|
|
|
:param port_profile: The port_profile of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type port_profile: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._port_profile = port_profile
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def mac(self):
|
|
|
|
|
"""Gets the mac of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口MAC地址 约束:由系统分配,不支持指定
|
|
|
|
|
|
|
|
|
|
:return: The mac of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._mac
|
|
|
|
|
|
|
|
|
|
@mac.setter
|
|
|
|
|
def mac(self, mac):
|
|
|
|
|
"""Sets the mac of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口MAC地址 约束:由系统分配,不支持指定
|
|
|
|
|
|
|
|
|
|
:param mac: The mac of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type mac: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._mac = mac
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def vtep(self):
|
|
|
|
|
"""Gets the vtep of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:VTEP IP
|
|
|
|
|
|
|
|
|
|
:return: The vtep of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._vtep
|
|
|
|
|
|
|
|
|
|
@vtep.setter
|
|
|
|
|
def vtep(self, vtep):
|
|
|
|
|
"""Sets the vtep of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:VTEP IP
|
|
|
|
|
|
|
|
|
|
:param vtep: The vtep of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type vtep: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._vtep = vtep
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def vni(self):
|
|
|
|
|
"""Gets the vni of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:VXLAN ID
|
|
|
|
|
|
|
|
|
|
:return: The vni of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._vni
|
|
|
|
|
|
|
|
|
|
@vni.setter
|
|
|
|
|
def vni(self, vni):
|
|
|
|
|
"""Sets the vni of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:VXLAN ID
|
|
|
|
|
|
|
|
|
|
:param vni: The vni of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type vni: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._vni = vni
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def instance_id(self):
|
|
|
|
|
"""Gets the instance_id of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口所属实例ID,例如RDS实例ID 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
|
|
|
|
|
:return: The instance_id of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._instance_id
|
|
|
|
|
|
|
|
|
|
@instance_id.setter
|
|
|
|
|
def instance_id(self, instance_id):
|
|
|
|
|
"""Sets the instance_id of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口所属实例ID,例如RDS实例ID 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
|
|
|
|
|
:param instance_id: The instance_id of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type instance_id: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._instance_id = instance_id
|
|
|
|
|
|
|
|
|
|
@property
|
|
|
|
|
def instance_type(self):
|
|
|
|
|
"""Gets the instance_type of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口所属实例类型,例如“RDS” 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
|
|
|
|
|
:return: The instance_type of this VnicInfo.
|
|
|
|
|
:rtype: str
|
|
|
|
|
"""
|
|
|
|
|
return self._instance_type
|
|
|
|
|
|
|
|
|
|
@instance_type.setter
|
|
|
|
|
def instance_type(self, instance_type):
|
|
|
|
|
"""Sets the instance_type of this VnicInfo.
|
|
|
|
|
|
|
|
|
|
功能说明:端口所属实例类型,例如“RDS” 约束:不支持设置和更新,由系统自动维护
|
|
|
|
|
|
|
|
|
|
:param instance_type: The instance_type of this VnicInfo.
|
2022-04-21 12:03:46 +00:00
|
|
|
|
:type instance_type: str
|
2021-10-25 10:02:15 +00:00
|
|
|
|
"""
|
|
|
|
|
self._instance_type = instance_type
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
def to_str(self):
|
|
|
|
|
"""Returns the string representation of the model"""
|
|
|
|
|
import simplejson as json
|
|
|
|
|
if six.PY2:
|
|
|
|
|
import sys
|
|
|
|
|
reload(sys)
|
|
|
|
|
sys.setdefaultencoding("utf-8")
|
|
|
|
|
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
|
|
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
|
"""For `print`"""
|
|
|
|
|
return self.to_str()
|
|
|
|
|
|
|
|
|
|
def __eq__(self, other):
|
|
|
|
|
"""Returns true if both objects are equal"""
|
|
|
|
|
if not isinstance(other, VnicInfo):
|
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
|
return self.__dict__ == other.__dict__
|
|
|
|
|
|
|
|
|
|
def __ne__(self, other):
|
|
|
|
|
"""Returns true if both objects are not equal"""
|
|
|
|
|
return not self == other
|