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

164 lines
4.1 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 = {
'timestamp': 'int',
'unit': 'str',
'statistics': 'list[StatisticValue]'
}
attribute_map = {
'timestamp': 'timestamp',
'unit': 'unit',
'statistics': 'statistics'
}
def __init__(self, timestamp=None, unit=None, statistics=None):
"""MetricDataPoints - a model defined in huaweicloud sdk"""
self._timestamp = None
self._unit = None
self._statistics = None
self.discriminator = None
if timestamp is not None:
self.timestamp = timestamp
if unit is not None:
self.unit = unit
if statistics is not None:
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.
:type: 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.
:type: str
"""
self._unit = unit
@property
def statistics(self):
"""Gets the statistics of this MetricDataPoints.
统计方式
:return: The statistics of this MetricDataPoints.
:rtype: list[StatisticValue]
"""
return self._statistics
@statistics.setter
def statistics(self, statistics):
"""Sets the statistics of this MetricDataPoints.
统计方式
:param statistics: The statistics of this MetricDataPoints.
:type: list[StatisticValue]
"""
self._statistics = statistics
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-07-09 10:57:08 +00:00
import simplejson as json
2021-07-26 11:24:08 +00:00
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, MetricDataPoints):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other