huaweicloud-sdk-python-v3/huaweicloud-sdk-iotanalytics/huaweicloudsdkiotanalytics/v1/model/property_model_response.py

312 lines
12 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 PropertyModelResponse:
"""
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 = {
'name': 'str',
'display_name': 'str',
'source_type': 'str',
'data_schema': 'DataSchema',
'unit': 'str',
'value': 'object',
'is_tag': 'bool',
'property_id': 'str'
}
attribute_map = {
'name': 'name',
'display_name': 'display_name',
'source_type': 'source_type',
'data_schema': 'data_schema',
'unit': 'unit',
'value': 'value',
'is_tag': 'is_tag',
'property_id': 'property_id'
}
def __init__(self, name=None, display_name=None, source_type=None, data_schema=None, unit=None, value=None, is_tag=None, property_id=None):
"""PropertyModelResponse
The model defined in huaweicloud sdk
:param name: 属性名称,正则:\"^[a-zA-Z0-9_]{1,64}$\"
:type name: str
:param display_name: 属性显示名称,正则:\"^[\\\\u4E00-\\\\u9FA5A-Za-z0-9_@#.-]{1,64}$\"
:type display_name: str
:param source_type: 属性类别静态配置static、测量数据measurement、分析任务analysis
:type source_type: str
:param data_schema:
:type data_schema: :class:`huaweicloudsdkiotanalytics.v1.DataSchema`
:param unit: 单位
:type unit: str
:param value: 静态属性的值1 1.1 \"value\" {\"name\":\"value\"}
:type value: object
:param is_tag: 属性是否为标签。资产ID、标签属性、时间戳三者组成属性数据唯一键两条唯一键相同的属性数据以覆盖方式存储一个模型中只能配置三个属性为标签标签配置后标签不能删除配置标签的属性也不能删除只有integer、double、string类型的属性可以被配置为标签。示例 资产ID asset1上依次上报如下六组数据 资产ID 属性A标签 属性B 属性C 时间戳 asset1 valueA_1 valueB_1 valueC_1 T1 asset1 valueA_1 valueB_2 valueC_2 T2 asset1 valueA_2 valueB_3 valueC_3 T2 asset1 valueA_2 valueB_4 valueC_4 T2 asset1 valueB_5 valueC_5 T3 asset1 valueB_6 valueC_6 T3 根据唯一键规则最终存储为如下四组数据: 资产ID 属性A标签 属性B 属性C 时间戳 asset1 valueA_1 valueB_1 valueC_1 T1 asset1 valueA_1 valueB_2 valueC_2 T2 asset1 valueA_2 valueB_4 valueC_4 T2 asset1 valueB_6 valueC_6 T3
:type is_tag: bool
:param property_id: 属性ID
:type property_id: str
"""
self._name = None
self._display_name = None
self._source_type = None
self._data_schema = None
self._unit = None
self._value = None
self._is_tag = None
self._property_id = None
self.discriminator = None
self.name = name
if display_name is not None:
self.display_name = display_name
self.source_type = source_type
self.data_schema = data_schema
if unit is not None:
self.unit = unit
if value is not None:
self.value = value
if is_tag is not None:
self.is_tag = is_tag
if property_id is not None:
self.property_id = property_id
@property
def name(self):
"""Gets the name of this PropertyModelResponse.
属性名称,正则:\"^[a-zA-Z0-9_]{1,64}$\"
:return: The name of this PropertyModelResponse.
:rtype: str
"""
return self._name
@name.setter
def name(self, name):
"""Sets the name of this PropertyModelResponse.
属性名称,正则:\"^[a-zA-Z0-9_]{1,64}$\"
:param name: The name of this PropertyModelResponse.
:type name: str
"""
self._name = name
@property
def display_name(self):
"""Gets the display_name of this PropertyModelResponse.
属性显示名称,正则:\"^[\\\\u4E00-\\\\u9FA5A-Za-z0-9_@#.-]{1,64}$\"
:return: The display_name of this PropertyModelResponse.
:rtype: str
"""
return self._display_name
@display_name.setter
def display_name(self, display_name):
"""Sets the display_name of this PropertyModelResponse.
属性显示名称,正则:\"^[\\\\u4E00-\\\\u9FA5A-Za-z0-9_@#.-]{1,64}$\"
:param display_name: The display_name of this PropertyModelResponse.
:type display_name: str
"""
self._display_name = display_name
@property
def source_type(self):
"""Gets the source_type of this PropertyModelResponse.
属性类别静态配置static、测量数据measurement、分析任务analysis
:return: The source_type of this PropertyModelResponse.
:rtype: str
"""
return self._source_type
@source_type.setter
def source_type(self, source_type):
"""Sets the source_type of this PropertyModelResponse.
属性类别静态配置static、测量数据measurement、分析任务analysis
:param source_type: The source_type of this PropertyModelResponse.
:type source_type: str
"""
self._source_type = source_type
@property
def data_schema(self):
"""Gets the data_schema of this PropertyModelResponse.
:return: The data_schema of this PropertyModelResponse.
:rtype: :class:`huaweicloudsdkiotanalytics.v1.DataSchema`
"""
return self._data_schema
@data_schema.setter
def data_schema(self, data_schema):
"""Sets the data_schema of this PropertyModelResponse.
:param data_schema: The data_schema of this PropertyModelResponse.
:type data_schema: :class:`huaweicloudsdkiotanalytics.v1.DataSchema`
"""
self._data_schema = data_schema
@property
def unit(self):
"""Gets the unit of this PropertyModelResponse.
单位
:return: The unit of this PropertyModelResponse.
:rtype: str
"""
return self._unit
@unit.setter
def unit(self, unit):
"""Sets the unit of this PropertyModelResponse.
单位
:param unit: The unit of this PropertyModelResponse.
:type unit: str
"""
self._unit = unit
@property
def value(self):
"""Gets the value of this PropertyModelResponse.
静态属性的值1 1.1 \"value\" {\"name\":\"value\"}
:return: The value of this PropertyModelResponse.
:rtype: object
"""
return self._value
@value.setter
def value(self, value):
"""Sets the value of this PropertyModelResponse.
静态属性的值1 1.1 \"value\" {\"name\":\"value\"}
:param value: The value of this PropertyModelResponse.
:type value: object
"""
self._value = value
@property
def is_tag(self):
"""Gets the is_tag of this PropertyModelResponse.
属性是否为标签。资产ID、标签属性、时间戳三者组成属性数据唯一键两条唯一键相同的属性数据以覆盖方式存储一个模型中只能配置三个属性为标签标签配置后标签不能删除配置标签的属性也不能删除只有integer、double、string类型的属性可以被配置为标签。示例 资产ID asset1上依次上报如下六组数据 资产ID 属性A标签 属性B 属性C 时间戳 asset1 valueA_1 valueB_1 valueC_1 T1 asset1 valueA_1 valueB_2 valueC_2 T2 asset1 valueA_2 valueB_3 valueC_3 T2 asset1 valueA_2 valueB_4 valueC_4 T2 asset1 valueB_5 valueC_5 T3 asset1 valueB_6 valueC_6 T3 根据唯一键规则最终存储为如下四组数据: 资产ID 属性A标签 属性B 属性C 时间戳 asset1 valueA_1 valueB_1 valueC_1 T1 asset1 valueA_1 valueB_2 valueC_2 T2 asset1 valueA_2 valueB_4 valueC_4 T2 asset1 valueB_6 valueC_6 T3
:return: The is_tag of this PropertyModelResponse.
:rtype: bool
"""
return self._is_tag
@is_tag.setter
def is_tag(self, is_tag):
"""Sets the is_tag of this PropertyModelResponse.
属性是否为标签。资产ID、标签属性、时间戳三者组成属性数据唯一键两条唯一键相同的属性数据以覆盖方式存储一个模型中只能配置三个属性为标签标签配置后标签不能删除配置标签的属性也不能删除只有integer、double、string类型的属性可以被配置为标签。示例 资产ID asset1上依次上报如下六组数据 资产ID 属性A标签 属性B 属性C 时间戳 asset1 valueA_1 valueB_1 valueC_1 T1 asset1 valueA_1 valueB_2 valueC_2 T2 asset1 valueA_2 valueB_3 valueC_3 T2 asset1 valueA_2 valueB_4 valueC_4 T2 asset1 valueB_5 valueC_5 T3 asset1 valueB_6 valueC_6 T3 根据唯一键规则最终存储为如下四组数据: 资产ID 属性A标签 属性B 属性C 时间戳 asset1 valueA_1 valueB_1 valueC_1 T1 asset1 valueA_1 valueB_2 valueC_2 T2 asset1 valueA_2 valueB_4 valueC_4 T2 asset1 valueB_6 valueC_6 T3
:param is_tag: The is_tag of this PropertyModelResponse.
:type is_tag: bool
"""
self._is_tag = is_tag
@property
def property_id(self):
"""Gets the property_id of this PropertyModelResponse.
属性ID
:return: The property_id of this PropertyModelResponse.
:rtype: str
"""
return self._property_id
@property_id.setter
def property_id(self, property_id):
"""Sets the property_id of this PropertyModelResponse.
属性ID
:param property_id: The property_id of this PropertyModelResponse.
:type property_id: str
"""
self._property_id = property_id
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, PropertyModelResponse):
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
"""Returns true if both objects are not equal"""
return not self == other