huaweicloud-sdk-python-v3/huaweicloud-sdk-smn/huaweicloudsdksmn/v2/model/version_item.py

255 lines
7.7 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 six
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
class VersionItem:
"""
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',
'min_version': 'str',
'status': 'str',
'updated': 'str',
'version': 'str',
'links': 'list[LinksItem]'
}
attribute_map = {
'id': 'id',
'min_version': 'min_version',
'status': 'status',
'updated': 'updated',
'version': 'version',
'links': 'links'
}
def __init__(self, id=None, min_version=None, status=None, updated=None, version=None, links=None):
"""VersionItem
The model defined in huaweicloud sdk
:param id: 版本ID版本号如v2。
:type id: str
:param min_version: 若该版本API支持微版本则返回支持的最小微版本号若不支持微版本则返回空。
:type min_version: str
:param status: 版本状态为如下3种 CURRENT表示该版本为主推版本。 SUPPORTED表示为老版本但是现在还继续支持。 DEPRECATED表示为废弃版本存在后续删除的可能。
:type status: str
:param updated: 版本发布时间要求用UTC时间格式表示。如v2发布的时间2014-06-28T12:20:21Z。
:type updated: str
:param version: 若该版本API支持微版本则返回支持的最大微版本号若不支持微版本则返回空。
:type version: str
:param links: API的URL地址。
:type links: list[:class:`huaweicloudsdksmn.v2.LinksItem`]
"""
self._id = None
self._min_version = None
self._status = None
self._updated = None
self._version = None
self._links = None
self.discriminator = None
self.id = id
self.min_version = min_version
self.status = status
self.updated = updated
self.version = version
self.links = links
@property
def id(self):
"""Gets the id of this VersionItem.
版本ID版本号如v2。
:return: The id of this VersionItem.
:rtype: str
"""
return self._id
@id.setter
def id(self, id):
"""Sets the id of this VersionItem.
版本ID版本号如v2。
:param id: The id of this VersionItem.
:type id: str
"""
self._id = id
@property
def min_version(self):
"""Gets the min_version of this VersionItem.
若该版本API支持微版本则返回支持的最小微版本号若不支持微版本则返回空。
:return: The min_version of this VersionItem.
:rtype: str
"""
return self._min_version
@min_version.setter
def min_version(self, min_version):
"""Sets the min_version of this VersionItem.
若该版本API支持微版本则返回支持的最小微版本号若不支持微版本则返回空。
:param min_version: The min_version of this VersionItem.
:type min_version: str
"""
self._min_version = min_version
@property
def status(self):
"""Gets the status of this VersionItem.
版本状态为如下3种 CURRENT表示该版本为主推版本。 SUPPORTED表示为老版本但是现在还继续支持。 DEPRECATED表示为废弃版本存在后续删除的可能。
:return: The status of this VersionItem.
:rtype: str
"""
return self._status
@status.setter
def status(self, status):
"""Sets the status of this VersionItem.
版本状态为如下3种 CURRENT表示该版本为主推版本。 SUPPORTED表示为老版本但是现在还继续支持。 DEPRECATED表示为废弃版本存在后续删除的可能。
:param status: The status of this VersionItem.
:type status: str
"""
self._status = status
@property
def updated(self):
"""Gets the updated of this VersionItem.
版本发布时间要求用UTC时间格式表示。如v2发布的时间2014-06-28T12:20:21Z。
:return: The updated of this VersionItem.
:rtype: str
"""
return self._updated
@updated.setter
def updated(self, updated):
"""Sets the updated of this VersionItem.
版本发布时间要求用UTC时间格式表示。如v2发布的时间2014-06-28T12:20:21Z。
:param updated: The updated of this VersionItem.
:type updated: str
"""
self._updated = updated
@property
def version(self):
"""Gets the version of this VersionItem.
若该版本API支持微版本则返回支持的最大微版本号若不支持微版本则返回空。
:return: The version of this VersionItem.
:rtype: str
"""
return self._version
@version.setter
def version(self, version):
"""Sets the version of this VersionItem.
若该版本API支持微版本则返回支持的最大微版本号若不支持微版本则返回空。
:param version: The version of this VersionItem.
:type version: str
"""
self._version = version
@property
def links(self):
"""Gets the links of this VersionItem.
API的URL地址。
:return: The links of this VersionItem.
:rtype: list[:class:`huaweicloudsdksmn.v2.LinksItem`]
"""
return self._links
@links.setter
def links(self, links):
"""Sets the links of this VersionItem.
API的URL地址。
:param links: The links of this VersionItem.
:type links: list[:class:`huaweicloudsdksmn.v2.LinksItem`]
"""
self._links = links
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, VersionItem):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other