huaweicloud-sdk-python-v3/huaweicloud-sdk-evs/huaweicloudsdkevs/v2/model/create_volume_response.py

165 lines
5.0 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 pprint
import re
import six
from huaweicloudsdkcore.sdk_response import SdkResponse
class CreateVolumeResponse(SdkResponse):
"""
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 = {
'job_id': 'str',
'order_id': 'str',
'volume_ids': 'list[str]'
}
attribute_map = {
'job_id': 'job_id',
'order_id': 'order_id',
'volume_ids': 'volume_ids'
}
def __init__(self, job_id=None, order_id=None, volume_ids=None):
"""CreateVolumeResponse - a model defined in huaweicloud sdk"""
super().__init__()
self._job_id = None
self._order_id = None
self._volume_ids = None
self.discriminator = None
if job_id is not None:
self.job_id = job_id
if order_id is not None:
self.order_id = order_id
if volume_ids is not None:
self.volume_ids = volume_ids
@property
def job_id(self):
"""Gets the job_id of this CreateVolumeResponse.
任务ID云硬盘为按需计费时返回该参数。 > 说明: > > 如果需要查询job的状态请参考\"[查询job的状态](https://support.huaweicloud.com/api-evs/evs_04_0054.html)\"
:return: The job_id of this CreateVolumeResponse.
:rtype: str
"""
return self._job_id
@job_id.setter
def job_id(self, job_id):
"""Sets the job_id of this CreateVolumeResponse.
任务ID云硬盘为按需计费时返回该参数。 > 说明: > > 如果需要查询job的状态请参考\"[查询job的状态](https://support.huaweicloud.com/api-evs/evs_04_0054.html)\"
:param job_id: The job_id of this CreateVolumeResponse.
:type: str
"""
self._job_id = job_id
@property
def order_id(self):
"""Gets the order_id of this CreateVolumeResponse.
订单ID云硬盘为包周期计费时返回该参数。 > 说明: > > - 如果您需要支付订单,请参考:\"[支付包周期产品订单](https://support.huaweicloud.com/api-oce/zh-cn_topic_0075746561.html)\"
:return: The order_id of this CreateVolumeResponse.
:rtype: str
"""
return self._order_id
@order_id.setter
def order_id(self, order_id):
"""Sets the order_id of this CreateVolumeResponse.
订单ID云硬盘为包周期计费时返回该参数。 > 说明: > > - 如果您需要支付订单,请参考:\"[支付包周期产品订单](https://support.huaweicloud.com/api-oce/zh-cn_topic_0075746561.html)\"
:param order_id: The order_id of this CreateVolumeResponse.
:type: str
"""
self._order_id = order_id
@property
def volume_ids(self):
"""Gets the volume_ids of this CreateVolumeResponse.
待创建的磁盘ID列表。
:return: The volume_ids of this CreateVolumeResponse.
:rtype: list[str]
"""
return self._volume_ids
@volume_ids.setter
def volume_ids(self, volume_ids):
"""Sets the volume_ids of this CreateVolumeResponse.
待创建的磁盘ID列表。
:param volume_ids: The volume_ids of this CreateVolumeResponse.
:type: list[str]
"""
self._volume_ids = volume_ids
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, CreateVolumeResponse):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other