huaweicloud-sdk-python-v3/huaweicloud-sdk-aad/huaweicloudsdkaad/v1/model/transfer_rule_info.py

290 lines
7.9 KiB
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding: utf-8
import six
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
class TransferRuleInfo:
"""
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 = {
'rule_id': 'str',
'forward_protocol': 'str',
'forward_port': 'int',
'source_port': 'int',
'lb_method': 'str',
'source_ip': 'str',
'status': 'int'
}
attribute_map = {
'rule_id': 'rule_id',
'forward_protocol': 'forward_protocol',
'forward_port': 'forward_port',
'source_port': 'source_port',
'lb_method': 'lb_method',
'source_ip': 'source_ip',
'status': 'status'
}
def __init__(self, rule_id=None, forward_protocol=None, forward_port=None, source_port=None, lb_method=None, source_ip=None, status=None):
"""TransferRuleInfo
The model defined in huaweicloud sdk
:param rule_id: 转发规则名ID
:type rule_id: str
:param forward_protocol: 转发协议tcp或udp
:type forward_protocol: str
:param forward_port: 转发端口
:type forward_port: int
:param source_port: 源站端口
:type source_port: int
:param lb_method: LVS转发规则
:type lb_method: str
:param source_ip: 源站IP多个IP用逗号隔开限制20个IP
:type source_ip: str
:param status: 源站状态 1 正常2 异常
:type status: int
"""
self._rule_id = None
self._forward_protocol = None
self._forward_port = None
self._source_port = None
self._lb_method = None
self._source_ip = None
self._status = None
self.discriminator = None
if rule_id is not None:
self.rule_id = rule_id
if forward_protocol is not None:
self.forward_protocol = forward_protocol
if forward_port is not None:
self.forward_port = forward_port
if source_port is not None:
self.source_port = source_port
if lb_method is not None:
self.lb_method = lb_method
if source_ip is not None:
self.source_ip = source_ip
if status is not None:
self.status = status
@property
def rule_id(self):
"""Gets the rule_id of this TransferRuleInfo.
转发规则名ID
:return: The rule_id of this TransferRuleInfo.
:rtype: str
"""
return self._rule_id
@rule_id.setter
def rule_id(self, rule_id):
"""Sets the rule_id of this TransferRuleInfo.
转发规则名ID
:param rule_id: The rule_id of this TransferRuleInfo.
:type rule_id: str
"""
self._rule_id = rule_id
@property
def forward_protocol(self):
"""Gets the forward_protocol of this TransferRuleInfo.
转发协议tcp或udp
:return: The forward_protocol of this TransferRuleInfo.
:rtype: str
"""
return self._forward_protocol
@forward_protocol.setter
def forward_protocol(self, forward_protocol):
"""Sets the forward_protocol of this TransferRuleInfo.
转发协议tcp或udp
:param forward_protocol: The forward_protocol of this TransferRuleInfo.
:type forward_protocol: str
"""
self._forward_protocol = forward_protocol
@property
def forward_port(self):
"""Gets the forward_port of this TransferRuleInfo.
转发端口
:return: The forward_port of this TransferRuleInfo.
:rtype: int
"""
return self._forward_port
@forward_port.setter
def forward_port(self, forward_port):
"""Sets the forward_port of this TransferRuleInfo.
转发端口
:param forward_port: The forward_port of this TransferRuleInfo.
:type forward_port: int
"""
self._forward_port = forward_port
@property
def source_port(self):
"""Gets the source_port of this TransferRuleInfo.
源站端口
:return: The source_port of this TransferRuleInfo.
:rtype: int
"""
return self._source_port
@source_port.setter
def source_port(self, source_port):
"""Sets the source_port of this TransferRuleInfo.
源站端口
:param source_port: The source_port of this TransferRuleInfo.
:type source_port: int
"""
self._source_port = source_port
@property
def lb_method(self):
"""Gets the lb_method of this TransferRuleInfo.
LVS转发规则
:return: The lb_method of this TransferRuleInfo.
:rtype: str
"""
return self._lb_method
@lb_method.setter
def lb_method(self, lb_method):
"""Sets the lb_method of this TransferRuleInfo.
LVS转发规则
:param lb_method: The lb_method of this TransferRuleInfo.
:type lb_method: str
"""
self._lb_method = lb_method
@property
def source_ip(self):
"""Gets the source_ip of this TransferRuleInfo.
源站IP多个IP用逗号隔开限制20个IP
:return: The source_ip of this TransferRuleInfo.
:rtype: str
"""
return self._source_ip
@source_ip.setter
def source_ip(self, source_ip):
"""Sets the source_ip of this TransferRuleInfo.
源站IP多个IP用逗号隔开限制20个IP
:param source_ip: The source_ip of this TransferRuleInfo.
:type source_ip: str
"""
self._source_ip = source_ip
@property
def status(self):
"""Gets the status of this TransferRuleInfo.
源站状态 1 正常2 异常
:return: The status of this TransferRuleInfo.
:rtype: int
"""
return self._status
@status.setter
def status(self, status):
"""Sets the status of this TransferRuleInfo.
源站状态 1 正常2 异常
:param status: The status of this TransferRuleInfo.
:type status: int
"""
self._status = status
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, TransferRuleInfo):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other