huaweicloud-sdk-python-v3/huaweicloud-sdk-antiddos/huaweicloudsdkantiddos/v1/model/show_default_config_respons...

236 lines
7.4 KiB
Python
Raw Normal View History

2021-08-17 07:57:38 +00:00
# coding: utf-8
import re
import six
from huaweicloudsdkcore.sdk_response import SdkResponse
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
class ShowDefaultConfigResponse(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 = {
'enable_l7': 'bool',
'traffic_pos_id': 'int',
'http_request_pos_id': 'int',
'cleaning_access_pos_id': 'int',
'app_type_id': 'int'
}
attribute_map = {
'enable_l7': 'enable_L7',
'traffic_pos_id': 'traffic_pos_id',
'http_request_pos_id': 'http_request_pos_id',
'cleaning_access_pos_id': 'cleaning_access_pos_id',
'app_type_id': 'app_type_id'
}
def __init__(self, enable_l7=None, traffic_pos_id=None, http_request_pos_id=None, cleaning_access_pos_id=None, app_type_id=None):
2022-04-21 12:03:46 +00:00
"""ShowDefaultConfigResponse
The model defined in huaweicloud sdk
:param enable_l7: 是否开启L7层防护
:type enable_l7: bool
:param traffic_pos_id: 流量分段ID取值范围19
:type traffic_pos_id: int
:param http_request_pos_id: HTTP请求数分段ID取值范围115
:type http_request_pos_id: int
:param cleaning_access_pos_id: 清洗时访问限制分段ID取值范围18
:type cleaning_access_pos_id: int
:param app_type_id: 应用类型ID可选取值 - 0 - 1
:type app_type_id: int
"""
2021-08-17 07:57:38 +00:00
super(ShowDefaultConfigResponse, self).__init__()
self._enable_l7 = None
self._traffic_pos_id = None
self._http_request_pos_id = None
self._cleaning_access_pos_id = None
self._app_type_id = None
self.discriminator = None
if enable_l7 is not None:
self.enable_l7 = enable_l7
if traffic_pos_id is not None:
self.traffic_pos_id = traffic_pos_id
if http_request_pos_id is not None:
self.http_request_pos_id = http_request_pos_id
if cleaning_access_pos_id is not None:
self.cleaning_access_pos_id = cleaning_access_pos_id
if app_type_id is not None:
self.app_type_id = app_type_id
@property
def enable_l7(self):
"""Gets the enable_l7 of this ShowDefaultConfigResponse.
是否开启L7层防护
:return: The enable_l7 of this ShowDefaultConfigResponse.
:rtype: bool
"""
return self._enable_l7
@enable_l7.setter
def enable_l7(self, enable_l7):
"""Sets the enable_l7 of this ShowDefaultConfigResponse.
是否开启L7层防护
:param enable_l7: The enable_l7 of this ShowDefaultConfigResponse.
2022-04-21 12:03:46 +00:00
:type enable_l7: bool
2021-08-17 07:57:38 +00:00
"""
self._enable_l7 = enable_l7
@property
def traffic_pos_id(self):
"""Gets the traffic_pos_id of this ShowDefaultConfigResponse.
流量分段ID取值范围19
:return: The traffic_pos_id of this ShowDefaultConfigResponse.
:rtype: int
"""
return self._traffic_pos_id
@traffic_pos_id.setter
def traffic_pos_id(self, traffic_pos_id):
"""Sets the traffic_pos_id of this ShowDefaultConfigResponse.
流量分段ID取值范围19
:param traffic_pos_id: The traffic_pos_id of this ShowDefaultConfigResponse.
2022-04-21 12:03:46 +00:00
:type traffic_pos_id: int
2021-08-17 07:57:38 +00:00
"""
self._traffic_pos_id = traffic_pos_id
@property
def http_request_pos_id(self):
"""Gets the http_request_pos_id of this ShowDefaultConfigResponse.
HTTP请求数分段ID取值范围115
:return: The http_request_pos_id of this ShowDefaultConfigResponse.
:rtype: int
"""
return self._http_request_pos_id
@http_request_pos_id.setter
def http_request_pos_id(self, http_request_pos_id):
"""Sets the http_request_pos_id of this ShowDefaultConfigResponse.
HTTP请求数分段ID取值范围115
:param http_request_pos_id: The http_request_pos_id of this ShowDefaultConfigResponse.
2022-04-21 12:03:46 +00:00
:type http_request_pos_id: int
2021-08-17 07:57:38 +00:00
"""
self._http_request_pos_id = http_request_pos_id
@property
def cleaning_access_pos_id(self):
"""Gets the cleaning_access_pos_id of this ShowDefaultConfigResponse.
清洗时访问限制分段ID取值范围18
:return: The cleaning_access_pos_id of this ShowDefaultConfigResponse.
:rtype: int
"""
return self._cleaning_access_pos_id
@cleaning_access_pos_id.setter
def cleaning_access_pos_id(self, cleaning_access_pos_id):
"""Sets the cleaning_access_pos_id of this ShowDefaultConfigResponse.
清洗时访问限制分段ID取值范围18
:param cleaning_access_pos_id: The cleaning_access_pos_id of this ShowDefaultConfigResponse.
2022-04-21 12:03:46 +00:00
:type cleaning_access_pos_id: int
2021-08-17 07:57:38 +00:00
"""
self._cleaning_access_pos_id = cleaning_access_pos_id
@property
def app_type_id(self):
"""Gets the app_type_id of this ShowDefaultConfigResponse.
应用类型ID可选取值 - 0 - 1
:return: The app_type_id of this ShowDefaultConfigResponse.
:rtype: int
"""
return self._app_type_id
@app_type_id.setter
def app_type_id(self, app_type_id):
"""Sets the app_type_id of this ShowDefaultConfigResponse.
应用类型ID可选取值 - 0 - 1
:param app_type_id: The app_type_id of this ShowDefaultConfigResponse.
2022-04-21 12:03:46 +00:00
:type app_type_id: int
2021-08-17 07:57:38 +00:00
"""
self._app_type_id = app_type_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
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, ShowDefaultConfigResponse):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other