289 lines
10 KiB
Python
289 lines
10 KiB
Python
|
# coding: utf-8
|
|||
|
|
|||
|
import pprint
|
|||
|
import re
|
|||
|
|
|||
|
import six
|
|||
|
|
|||
|
|
|||
|
class CreateTrackerRequestBody(object):
|
|||
|
|
|||
|
|
|||
|
"""
|
|||
|
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 = {
|
|||
|
'tracker_type': 'str',
|
|||
|
'tracker_name': 'str',
|
|||
|
'is_lts_enabled': 'bool',
|
|||
|
'obs_info': 'TrackerObsInfo',
|
|||
|
'is_support_trace_files_encryption': 'bool',
|
|||
|
'kms_id': 'str',
|
|||
|
'is_support_validate': 'bool',
|
|||
|
'data_bucket': 'DataBucket'
|
|||
|
}
|
|||
|
|
|||
|
attribute_map = {
|
|||
|
'tracker_type': 'tracker_type',
|
|||
|
'tracker_name': 'tracker_name',
|
|||
|
'is_lts_enabled': 'is_lts_enabled',
|
|||
|
'obs_info': 'obs_info',
|
|||
|
'is_support_trace_files_encryption': 'is_support_trace_files_encryption',
|
|||
|
'kms_id': 'kms_id',
|
|||
|
'is_support_validate': 'is_support_validate',
|
|||
|
'data_bucket': 'data_bucket'
|
|||
|
}
|
|||
|
|
|||
|
def __init__(self, tracker_type=None, tracker_name=None, is_lts_enabled=None, obs_info=None, is_support_trace_files_encryption=None, kms_id=None, is_support_validate=None, data_bucket=None): # noqa: E501
|
|||
|
"""CreateTrackerRequestBody - a model defined in huaweicloud sdk"""
|
|||
|
|
|||
|
self._tracker_type = None
|
|||
|
self._tracker_name = None
|
|||
|
self._is_lts_enabled = None
|
|||
|
self._obs_info = None
|
|||
|
self._is_support_trace_files_encryption = None
|
|||
|
self._kms_id = None
|
|||
|
self._is_support_validate = None
|
|||
|
self._data_bucket = None
|
|||
|
self.discriminator = None
|
|||
|
|
|||
|
self.tracker_type = tracker_type
|
|||
|
self.tracker_name = tracker_name
|
|||
|
if is_lts_enabled is not None:
|
|||
|
self.is_lts_enabled = is_lts_enabled
|
|||
|
if obs_info is not None:
|
|||
|
self.obs_info = obs_info
|
|||
|
if is_support_trace_files_encryption is not None:
|
|||
|
self.is_support_trace_files_encryption = is_support_trace_files_encryption
|
|||
|
if kms_id is not None:
|
|||
|
self.kms_id = kms_id
|
|||
|
if is_support_validate is not None:
|
|||
|
self.is_support_validate = is_support_validate
|
|||
|
if data_bucket is not None:
|
|||
|
self.data_bucket = data_bucket
|
|||
|
|
|||
|
@property
|
|||
|
def tracker_type(self):
|
|||
|
"""Gets the tracker_type of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
标识追踪器类型。 目前支持系统追踪器类型有管理类追踪器(system)和数据类追踪器(data)。 数据类追踪器和管理类追踪器共同参数有:is_lts_enabled, obs_info; 管理类追踪器参数:is_support_trace_files_encryption, kms_id, is_support_validate, is_support_validate; 数据类追踪器参数:tracker_name, data_bucket。
|
|||
|
|
|||
|
:return: The tracker_type of this CreateTrackerRequestBody.
|
|||
|
:rtype: str
|
|||
|
"""
|
|||
|
return self._tracker_type
|
|||
|
|
|||
|
@tracker_type.setter
|
|||
|
def tracker_type(self, tracker_type):
|
|||
|
"""Sets the tracker_type of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
标识追踪器类型。 目前支持系统追踪器类型有管理类追踪器(system)和数据类追踪器(data)。 数据类追踪器和管理类追踪器共同参数有:is_lts_enabled, obs_info; 管理类追踪器参数:is_support_trace_files_encryption, kms_id, is_support_validate, is_support_validate; 数据类追踪器参数:tracker_name, data_bucket。
|
|||
|
|
|||
|
:param tracker_type: The tracker_type of this CreateTrackerRequestBody.
|
|||
|
:type: str
|
|||
|
"""
|
|||
|
self._tracker_type = tracker_type
|
|||
|
|
|||
|
@property
|
|||
|
def tracker_name(self):
|
|||
|
"""Gets the tracker_name of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
标识追踪器名称。 当\"tracker_type\"参数值为\"system\"时该参数为默认值\"system\"。 当\"tracker_type\"参数值为\"data\"时该参数需要指定追踪器名称\"。
|
|||
|
|
|||
|
:return: The tracker_name of this CreateTrackerRequestBody.
|
|||
|
:rtype: str
|
|||
|
"""
|
|||
|
return self._tracker_name
|
|||
|
|
|||
|
@tracker_name.setter
|
|||
|
def tracker_name(self, tracker_name):
|
|||
|
"""Sets the tracker_name of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
标识追踪器名称。 当\"tracker_type\"参数值为\"system\"时该参数为默认值\"system\"。 当\"tracker_type\"参数值为\"data\"时该参数需要指定追踪器名称\"。
|
|||
|
|
|||
|
:param tracker_name: The tracker_name of this CreateTrackerRequestBody.
|
|||
|
:type: str
|
|||
|
"""
|
|||
|
self._tracker_name = tracker_name
|
|||
|
|
|||
|
@property
|
|||
|
def is_lts_enabled(self):
|
|||
|
"""Gets the is_lts_enabled of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
是否打开事件分析。
|
|||
|
|
|||
|
:return: The is_lts_enabled of this CreateTrackerRequestBody.
|
|||
|
:rtype: bool
|
|||
|
"""
|
|||
|
return self._is_lts_enabled
|
|||
|
|
|||
|
@is_lts_enabled.setter
|
|||
|
def is_lts_enabled(self, is_lts_enabled):
|
|||
|
"""Sets the is_lts_enabled of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
是否打开事件分析。
|
|||
|
|
|||
|
:param is_lts_enabled: The is_lts_enabled of this CreateTrackerRequestBody.
|
|||
|
:type: bool
|
|||
|
"""
|
|||
|
self._is_lts_enabled = is_lts_enabled
|
|||
|
|
|||
|
@property
|
|||
|
def obs_info(self):
|
|||
|
"""Gets the obs_info of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
|
|||
|
:return: The obs_info of this CreateTrackerRequestBody.
|
|||
|
:rtype: TrackerObsInfo
|
|||
|
"""
|
|||
|
return self._obs_info
|
|||
|
|
|||
|
@obs_info.setter
|
|||
|
def obs_info(self, obs_info):
|
|||
|
"""Sets the obs_info of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
|
|||
|
:param obs_info: The obs_info of this CreateTrackerRequestBody.
|
|||
|
:type: TrackerObsInfo
|
|||
|
"""
|
|||
|
self._obs_info = obs_info
|
|||
|
|
|||
|
@property
|
|||
|
def is_support_trace_files_encryption(self):
|
|||
|
"""Gets the is_support_trace_files_encryption of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
事件文件转储加密功能开关。 当\"tracker_type\"参数值为\"system\"时该参数值有效。 该参数必须与kms_id参数同时使用。
|
|||
|
|
|||
|
:return: The is_support_trace_files_encryption of this CreateTrackerRequestBody.
|
|||
|
:rtype: bool
|
|||
|
"""
|
|||
|
return self._is_support_trace_files_encryption
|
|||
|
|
|||
|
@is_support_trace_files_encryption.setter
|
|||
|
def is_support_trace_files_encryption(self, is_support_trace_files_encryption):
|
|||
|
"""Sets the is_support_trace_files_encryption of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
事件文件转储加密功能开关。 当\"tracker_type\"参数值为\"system\"时该参数值有效。 该参数必须与kms_id参数同时使用。
|
|||
|
|
|||
|
:param is_support_trace_files_encryption: The is_support_trace_files_encryption of this CreateTrackerRequestBody.
|
|||
|
:type: bool
|
|||
|
"""
|
|||
|
self._is_support_trace_files_encryption = is_support_trace_files_encryption
|
|||
|
|
|||
|
@property
|
|||
|
def kms_id(self):
|
|||
|
"""Gets the kms_id of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
事件文件转储加密所采用的秘钥id(从KMS获取)。 当\"tracker_type\"参数值为\"system\"时该参数值有效。 当\"is_support_trace_files_encryption\"参数值为“是”时,此参数为必选项。
|
|||
|
|
|||
|
:return: The kms_id of this CreateTrackerRequestBody.
|
|||
|
:rtype: str
|
|||
|
"""
|
|||
|
return self._kms_id
|
|||
|
|
|||
|
@kms_id.setter
|
|||
|
def kms_id(self, kms_id):
|
|||
|
"""Sets the kms_id of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
事件文件转储加密所采用的秘钥id(从KMS获取)。 当\"tracker_type\"参数值为\"system\"时该参数值有效。 当\"is_support_trace_files_encryption\"参数值为“是”时,此参数为必选项。
|
|||
|
|
|||
|
:param kms_id: The kms_id of this CreateTrackerRequestBody.
|
|||
|
:type: str
|
|||
|
"""
|
|||
|
self._kms_id = kms_id
|
|||
|
|
|||
|
@property
|
|||
|
def is_support_validate(self):
|
|||
|
"""Gets the is_support_validate of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
事件文件转储时是否打开事件文件校验。 当\"tracker_type\"参数值为\"system\"时该参数值有效。
|
|||
|
|
|||
|
:return: The is_support_validate of this CreateTrackerRequestBody.
|
|||
|
:rtype: bool
|
|||
|
"""
|
|||
|
return self._is_support_validate
|
|||
|
|
|||
|
@is_support_validate.setter
|
|||
|
def is_support_validate(self, is_support_validate):
|
|||
|
"""Sets the is_support_validate of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
事件文件转储时是否打开事件文件校验。 当\"tracker_type\"参数值为\"system\"时该参数值有效。
|
|||
|
|
|||
|
:param is_support_validate: The is_support_validate of this CreateTrackerRequestBody.
|
|||
|
:type: bool
|
|||
|
"""
|
|||
|
self._is_support_validate = is_support_validate
|
|||
|
|
|||
|
@property
|
|||
|
def data_bucket(self):
|
|||
|
"""Gets the data_bucket of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
|
|||
|
:return: The data_bucket of this CreateTrackerRequestBody.
|
|||
|
:rtype: DataBucket
|
|||
|
"""
|
|||
|
return self._data_bucket
|
|||
|
|
|||
|
@data_bucket.setter
|
|||
|
def data_bucket(self, data_bucket):
|
|||
|
"""Sets the data_bucket of this CreateTrackerRequestBody.
|
|||
|
|
|||
|
|
|||
|
:param data_bucket: The data_bucket of this CreateTrackerRequestBody.
|
|||
|
:type: DataBucket
|
|||
|
"""
|
|||
|
self._data_bucket = data_bucket
|
|||
|
|
|||
|
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"""
|
|||
|
return pprint.pformat(self.to_dict())
|
|||
|
|
|||
|
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, CreateTrackerRequestBody):
|
|||
|
return False
|
|||
|
|
|||
|
return self.__dict__ == other.__dict__
|
|||
|
|
|||
|
def __ne__(self, other):
|
|||
|
"""Returns true if both objects are not equal"""
|
|||
|
return not self == other
|