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

128 lines
3.7 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.
"""
openapi_types = {
'bucket_name': 'str',
'file_prefix_name': 'str'
}
attribute_map = {
'bucket_name': 'bucket_name',
'file_prefix_name': 'file_prefix_name'
}
def __init__(self, bucket_name=None, file_prefix_name=None): # noqa: E501
"""ObsInfo - a model defined in huaweicloud sdk"""
self._bucket_name = None
self._file_prefix_name = None
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
@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
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:
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, ObsInfo):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other