huaweicloud-sdk-python-v3/huaweicloud-sdk-aom/huaweicloudsdkaom/v2/model/metric_data_points.py

178 lines
4.6 KiB
Python
Raw Normal View History

# coding: utf-8
import re
import six
2021-07-26 11:24:08 +00:00
from huaweicloudsdkcore.utils.http_utils import sanitize_for_serialization
class MetricDataPoints:
"""
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 = {
2021-10-11 13:05:37 +00:00
'statistics': 'list[StatisticValue]',
'timestamp': 'int',
2021-10-11 13:05:37 +00:00
'unit': 'str'
}
attribute_map = {
2021-10-11 13:05:37 +00:00
'statistics': 'statistics',
'timestamp': 'timestamp',
2021-10-11 13:05:37 +00:00
'unit': 'unit'
}
2021-10-11 13:05:37 +00:00
def __init__(self, statistics=None, timestamp=None, unit=None):
2022-04-21 12:03:46 +00:00
"""MetricDataPoints
The model defined in huaweicloud sdk
:param statistics: 统计方式
:type statistics: list[:class:`huaweicloudsdkaom.v2.StatisticValue`]
:param timestamp: 时间戳
:type timestamp: int
:param unit: 时间序列单位
:type unit: str
"""
2021-10-11 13:05:37 +00:00
self._statistics = None
self._timestamp = None
self._unit = None
self.discriminator = None
2021-10-11 13:05:37 +00:00
if statistics is not None:
self.statistics = statistics
if timestamp is not None:
self.timestamp = timestamp
if unit is not None:
self.unit = unit
2021-10-11 13:05:37 +00:00
@property
def statistics(self):
"""Gets the statistics of this MetricDataPoints.
统计方式
:return: The statistics of this MetricDataPoints.
2022-04-21 12:03:46 +00:00
:rtype: list[:class:`huaweicloudsdkaom.v2.StatisticValue`]
2021-10-11 13:05:37 +00:00
"""
return self._statistics
@statistics.setter
def statistics(self, statistics):
"""Sets the statistics of this MetricDataPoints.
统计方式
:param statistics: The statistics of this MetricDataPoints.
2022-04-21 12:03:46 +00:00
:type statistics: list[:class:`huaweicloudsdkaom.v2.StatisticValue`]
2021-10-11 13:05:37 +00:00
"""
self._statistics = statistics
@property
def timestamp(self):
"""Gets the timestamp of this MetricDataPoints.
时间戳
:return: The timestamp of this MetricDataPoints.
:rtype: int
"""
return self._timestamp
@timestamp.setter
def timestamp(self, timestamp):
"""Sets the timestamp of this MetricDataPoints.
时间戳
:param timestamp: The timestamp of this MetricDataPoints.
2022-04-21 12:03:46 +00:00
:type timestamp: int
"""
self._timestamp = timestamp
@property
def unit(self):
"""Gets the unit of this MetricDataPoints.
时间序列单位
:return: The unit of this MetricDataPoints.
:rtype: str
"""
return self._unit
@unit.setter
def unit(self, unit):
"""Sets the unit of this MetricDataPoints.
时间序列单位
:param unit: The unit of this MetricDataPoints.
2022-04-21 12:03:46 +00:00
:type unit: str
"""
self._unit = unit
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):
2021-08-10 12:26:18 +00:00
"""Returns the string representation of the model"""
2021-07-09 10:57:08 +00:00
import simplejson as json
2021-08-10 12:26:18 +00:00
if six.PY2:
import sys
reload(sys)
sys.setdefaultencoding("utf-8")
return json.dumps(sanitize_for_serialization(self), ensure_ascii=False)
def __repr__(self):
2021-08-10 12:26:18 +00:00
"""For `print`"""
return self.to_str()
def __eq__(self, other):
"""Returns true if both objects are equal"""
if not isinstance(other, MetricDataPoints):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other