huaweicloud-sdk-python-v3/huaweicloud-sdk-vpc/huaweicloudsdkvpc/v2/model/list_resource_resp.py

188 lines
5.0 KiB
Python

# coding: utf-8
import re
import six
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
class ListResourceResp:
"""
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 = {
'resouce_detail': 'object',
'resource_id': 'str',
'resource_name': 'str',
'tags': 'list[ResourceTag]'
}
attribute_map = {
'resouce_detail': 'resouce_detail',
'resource_id': 'resource_id',
'resource_name': 'resource_name',
'tags': 'tags'
}
def __init__(self, resouce_detail=None, resource_id=None, resource_name=None, tags=None):
"""ListResourceResp - a model defined in huaweicloud sdk"""
self._resouce_detail = None
self._resource_id = None
self._resource_name = None
self._tags = None
self.discriminator = None
self.resouce_detail = resouce_detail
self.resource_id = resource_id
self.resource_name = resource_name
if tags is not None:
self.tags = tags
@property
def resouce_detail(self):
"""Gets the resouce_detail of this ListResourceResp.
资源详情。 资源对象,用于扩展。默认为空
:return: The resouce_detail of this ListResourceResp.
:rtype: object
"""
return self._resouce_detail
@resouce_detail.setter
def resouce_detail(self, resouce_detail):
"""Sets the resouce_detail of this ListResourceResp.
资源详情。 资源对象,用于扩展。默认为空
:param resouce_detail: The resouce_detail of this ListResourceResp.
:type: object
"""
self._resouce_detail = resouce_detail
@property
def resource_id(self):
"""Gets the resource_id of this ListResourceResp.
资源ID
:return: The resource_id of this ListResourceResp.
:rtype: str
"""
return self._resource_id
@resource_id.setter
def resource_id(self, resource_id):
"""Sets the resource_id of this ListResourceResp.
资源ID
:param resource_id: The resource_id of this ListResourceResp.
:type: str
"""
self._resource_id = resource_id
@property
def resource_name(self):
"""Gets the resource_name of this ListResourceResp.
资源名称,没有默认为空字符串
:return: The resource_name of this ListResourceResp.
:rtype: str
"""
return self._resource_name
@resource_name.setter
def resource_name(self, resource_name):
"""Sets the resource_name of this ListResourceResp.
资源名称,没有默认为空字符串
:param resource_name: The resource_name of this ListResourceResp.
:type: str
"""
self._resource_name = resource_name
@property
def tags(self):
"""Gets the tags of this ListResourceResp.
标签列表,没有标签默认为空数组
:return: The tags of this ListResourceResp.
:rtype: list[ResourceTag]
"""
return self._tags
@tags.setter
def tags(self, tags):
"""Sets the tags of this ListResourceResp.
标签列表,没有标签默认为空数组
:param tags: The tags of this ListResourceResp.
:type: list[ResourceTag]
"""
self._tags = tags
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):
import simplejson as json
return json.dumps(sanitize_for_serialization(self))
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, ListResourceResp):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other