huaweicloud-sdk-python-v3/huaweicloud-sdk-cts/huaweicloudsdkcts/v3/model/obs_info.py

214 lines
6.6 KiB
Python
Raw Normal View History

2020-05-18 07:34:40 +00:00
# coding: utf-8
import pprint
import re
import six
class ObsInfo(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 = []
2020-05-18 07:34:40 +00:00
openapi_types = {
'bucket_name': 'str',
'file_prefix_name': 'str',
'is_obs_created': 'bool',
'is_authorized_bucket': 'bool',
'bucket_lifecycle': 'str'
2020-05-18 07:34:40 +00:00
}
attribute_map = {
'bucket_name': 'bucket_name',
'file_prefix_name': 'file_prefix_name',
'is_obs_created': 'is_obs_created',
'is_authorized_bucket': 'is_authorized_bucket',
'bucket_lifecycle': 'bucket_lifecycle'
2020-05-18 07:34:40 +00:00
}
def __init__(self, bucket_name=None, file_prefix_name=None, is_obs_created=None, is_authorized_bucket=None, bucket_lifecycle=None): # noqa: E501
2020-05-18 07:34:40 +00:00
"""ObsInfo - a model defined in huaweicloud sdk"""
self._bucket_name = None
self._file_prefix_name = None
self._is_obs_created = None
self._is_authorized_bucket = None
self._bucket_lifecycle = None
2020-05-18 07:34:40 +00:00
self.discriminator = None
if bucket_name is not None:
self.bucket_name = bucket_name
if file_prefix_name is not None:
self.file_prefix_name = file_prefix_name
if is_obs_created is not None:
self.is_obs_created = is_obs_created
if is_authorized_bucket is not None:
self.is_authorized_bucket = is_authorized_bucket
if bucket_lifecycle is not None:
self.bucket_lifecycle = bucket_lifecycle
2020-05-18 07:34:40 +00:00
@property
def bucket_name(self):
"""Gets the bucket_name of this ObsInfo.
标识OBS桶名称由数字或字母开头支持小写字母数字-.长度为363个字符
:return: The bucket_name of this ObsInfo.
:rtype: str
"""
return self._bucket_name
@bucket_name.setter
def bucket_name(self, bucket_name):
"""Sets the bucket_name of this ObsInfo.
标识OBS桶名称由数字或字母开头支持小写字母数字-.长度为363个字符
:param bucket_name: The bucket_name of this ObsInfo.
:type: str
"""
self._bucket_name = bucket_name
@property
def file_prefix_name(self):
"""Gets the file_prefix_name of this ObsInfo.
标识需要存储于OBS的日志文件前缀0-9a-zA-Z'-''.''_'长度为064字符
:return: The file_prefix_name of this ObsInfo.
:rtype: str
"""
return self._file_prefix_name
@file_prefix_name.setter
def file_prefix_name(self, file_prefix_name):
"""Sets the file_prefix_name of this ObsInfo.
标识需要存储于OBS的日志文件前缀0-9a-zA-Z'-''.''_'长度为064字符
:param file_prefix_name: The file_prefix_name of this ObsInfo.
:type: str
"""
self._file_prefix_name = file_prefix_name
@property
def is_obs_created(self):
"""Gets the is_obs_created of this ObsInfo.
标识配置桶是否由追踪器自动创建
:return: The is_obs_created of this ObsInfo.
:rtype: bool
"""
return self._is_obs_created
@is_obs_created.setter
def is_obs_created(self, is_obs_created):
"""Sets the is_obs_created of this ObsInfo.
标识配置桶是否由追踪器自动创建
:param is_obs_created: The is_obs_created of this ObsInfo.
:type: bool
"""
self._is_obs_created = is_obs_created
@property
def is_authorized_bucket(self):
"""Gets the is_authorized_bucket of this ObsInfo.
标识配置桶是否已经授权给CTS服务账号
:return: The is_authorized_bucket of this ObsInfo.
:rtype: bool
"""
return self._is_authorized_bucket
@is_authorized_bucket.setter
def is_authorized_bucket(self, is_authorized_bucket):
"""Sets the is_authorized_bucket of this ObsInfo.
标识配置桶是否已经授权给CTS服务账号
:param is_authorized_bucket: The is_authorized_bucket of this ObsInfo.
:type: bool
"""
self._is_authorized_bucket = is_authorized_bucket
@property
def bucket_lifecycle(self):
"""Gets the bucket_lifecycle of this ObsInfo.
标识配置桶内对象存储周期 \"tracker_type\"参数值为\"data\"时该参数值有效。
:return: The bucket_lifecycle of this ObsInfo.
:rtype: str
"""
return self._bucket_lifecycle
@bucket_lifecycle.setter
def bucket_lifecycle(self, bucket_lifecycle):
"""Sets the bucket_lifecycle of this ObsInfo.
标识配置桶内对象存储周期 \"tracker_type\"参数值为\"data\"时该参数值有效。
:param bucket_lifecycle: The bucket_lifecycle of this ObsInfo.
:type: str
"""
self._bucket_lifecycle = bucket_lifecycle
2020-05-18 07:34:40 +00:00
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
2020-05-18 07:34:40 +00:00
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, ObsInfo):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other