huaweicloud-sdk-python-v3/huaweicloud-sdk-waf/huaweicloudsdkwaf/v1/model/create_whiteblackip_rule_re...

236 lines
6.6 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 re
import six
from huaweicloudsdkcore.sdk_response import SdkResponse
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
class CreateWhiteblackipRuleResponse(SdkResponse):
"""
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 = {
'id': 'str',
'policyid': 'str',
'addr': 'str',
'white': 'int',
'timestamp': 'int'
}
attribute_map = {
'id': 'id',
'policyid': 'policyid',
'addr': 'addr',
'white': 'white',
'timestamp': 'timestamp'
}
def __init__(self, id=None, policyid=None, addr=None, white=None, timestamp=None):
"""CreateWhiteblackipRuleResponse
The model defined in huaweicloud sdk
:param id: 规则id
:type id: str
:param policyid: 策略id
:type policyid: str
:param addr: 黑白名单ip地址需要输入标准的ip地址或地址段例如42.123.120.66或42.123.120.0/16
:type addr: str
:param white: 防护动作: - 0 拦截 - 1 放行 - 2 仅记录
:type white: int
:param timestamp: 创建规则的时间戳,13位毫秒时间戳
:type timestamp: int
"""
super(CreateWhiteblackipRuleResponse, self).__init__()
self._id = None
self._policyid = None
self._addr = None
self._white = None
self._timestamp = None
self.discriminator = None
if id is not None:
self.id = id
if policyid is not None:
self.policyid = policyid
if addr is not None:
self.addr = addr
if white is not None:
self.white = white
if timestamp is not None:
self.timestamp = timestamp
@property
def id(self):
"""Gets the id of this CreateWhiteblackipRuleResponse.
规则id
:return: The id of this CreateWhiteblackipRuleResponse.
:rtype: str
"""
return self._id
@id.setter
def id(self, id):
"""Sets the id of this CreateWhiteblackipRuleResponse.
规则id
:param id: The id of this CreateWhiteblackipRuleResponse.
:type id: str
"""
self._id = id
@property
def policyid(self):
"""Gets the policyid of this CreateWhiteblackipRuleResponse.
策略id
:return: The policyid of this CreateWhiteblackipRuleResponse.
:rtype: str
"""
return self._policyid
@policyid.setter
def policyid(self, policyid):
"""Sets the policyid of this CreateWhiteblackipRuleResponse.
策略id
:param policyid: The policyid of this CreateWhiteblackipRuleResponse.
:type policyid: str
"""
self._policyid = policyid
@property
def addr(self):
"""Gets the addr of this CreateWhiteblackipRuleResponse.
黑白名单ip地址需要输入标准的ip地址或地址段例如42.123.120.66或42.123.120.0/16
:return: The addr of this CreateWhiteblackipRuleResponse.
:rtype: str
"""
return self._addr
@addr.setter
def addr(self, addr):
"""Sets the addr of this CreateWhiteblackipRuleResponse.
黑白名单ip地址需要输入标准的ip地址或地址段例如42.123.120.66或42.123.120.0/16
:param addr: The addr of this CreateWhiteblackipRuleResponse.
:type addr: str
"""
self._addr = addr
@property
def white(self):
"""Gets the white of this CreateWhiteblackipRuleResponse.
防护动作: - 0 拦截 - 1 放行 - 2 仅记录
:return: The white of this CreateWhiteblackipRuleResponse.
:rtype: int
"""
return self._white
@white.setter
def white(self, white):
"""Sets the white of this CreateWhiteblackipRuleResponse.
防护动作: - 0 拦截 - 1 放行 - 2 仅记录
:param white: The white of this CreateWhiteblackipRuleResponse.
:type white: int
"""
self._white = white
@property
def timestamp(self):
"""Gets the timestamp of this CreateWhiteblackipRuleResponse.
创建规则的时间戳,13位毫秒时间戳
:return: The timestamp of this CreateWhiteblackipRuleResponse.
:rtype: int
"""
return self._timestamp
@timestamp.setter
def timestamp(self, timestamp):
"""Sets the timestamp of this CreateWhiteblackipRuleResponse.
创建规则的时间戳,13位毫秒时间戳
:param timestamp: The timestamp of this CreateWhiteblackipRuleResponse.
:type timestamp: int
"""
self._timestamp = timestamp
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, CreateWhiteblackipRuleResponse):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other