485 lines
14 KiB
Python
485 lines
14 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
ThingsBoard REST API
|
|
|
|
ThingsBoard Professional Edition IoT platform REST API documentation. # noqa: E501
|
|
|
|
OpenAPI spec version: 3.5.0PE
|
|
Contact: info@thingsboard.io
|
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
"""
|
|
|
|
# Copyright 2023. ThingsBoard
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import pprint
|
|
import re # noqa: F401
|
|
|
|
import six
|
|
|
|
class Edge(object):
|
|
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
|
|
Do not edit the class manually.
|
|
"""
|
|
"""
|
|
Attributes:
|
|
swagger_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.
|
|
"""
|
|
swagger_types = {
|
|
'additional_info': 'JsonNode',
|
|
'owner_id': 'EntityId',
|
|
'id': 'EdgeId',
|
|
'created_time': 'int',
|
|
'tenant_id': 'TenantId',
|
|
'customer_id': 'CustomerId',
|
|
'root_rule_chain_id': 'RuleChainId',
|
|
'name': 'str',
|
|
'type': 'str',
|
|
'label': 'str',
|
|
'routing_key': 'str',
|
|
'secret': 'str',
|
|
'edge_license_key': 'str',
|
|
'cloud_endpoint': 'str'
|
|
}
|
|
|
|
attribute_map = {
|
|
'additional_info': 'additionalInfo',
|
|
'owner_id': 'ownerId',
|
|
'id': 'id',
|
|
'created_time': 'createdTime',
|
|
'tenant_id': 'tenantId',
|
|
'customer_id': 'customerId',
|
|
'root_rule_chain_id': 'rootRuleChainId',
|
|
'name': 'name',
|
|
'type': 'type',
|
|
'label': 'label',
|
|
'routing_key': 'routingKey',
|
|
'secret': 'secret',
|
|
'edge_license_key': 'edgeLicenseKey',
|
|
'cloud_endpoint': 'cloudEndpoint'
|
|
}
|
|
|
|
def __init__(self, additional_info=None, owner_id=None, id=None, created_time=None, tenant_id=None, customer_id=None, root_rule_chain_id=None, name=None, type=None, label=None, routing_key=None, secret=None, edge_license_key=None, cloud_endpoint=None): # noqa: E501
|
|
"""Edge - a model defined in Swagger""" # noqa: E501
|
|
self._additional_info = None
|
|
self._owner_id = None
|
|
self._id = None
|
|
self._created_time = None
|
|
self._tenant_id = None
|
|
self._customer_id = None
|
|
self._root_rule_chain_id = None
|
|
self._name = None
|
|
self._type = None
|
|
self._label = None
|
|
self._routing_key = None
|
|
self._secret = None
|
|
self._edge_license_key = None
|
|
self._cloud_endpoint = None
|
|
self.discriminator = None
|
|
if additional_info is not None:
|
|
self.additional_info = additional_info
|
|
if owner_id is not None:
|
|
self.owner_id = owner_id
|
|
if id is not None:
|
|
self.id = id
|
|
if created_time is not None:
|
|
self.created_time = created_time
|
|
if tenant_id is not None:
|
|
self.tenant_id = tenant_id
|
|
if customer_id is not None:
|
|
self.customer_id = customer_id
|
|
if root_rule_chain_id is not None:
|
|
self.root_rule_chain_id = root_rule_chain_id
|
|
self.name = name
|
|
self.type = type
|
|
if label is not None:
|
|
self.label = label
|
|
self.routing_key = routing_key
|
|
self.secret = secret
|
|
self.edge_license_key = edge_license_key
|
|
self.cloud_endpoint = cloud_endpoint
|
|
|
|
@property
|
|
def additional_info(self):
|
|
"""Gets the additional_info of this Edge. # noqa: E501
|
|
|
|
|
|
:return: The additional_info of this Edge. # noqa: E501
|
|
:rtype: JsonNode
|
|
"""
|
|
return self._additional_info
|
|
|
|
@additional_info.setter
|
|
def additional_info(self, additional_info):
|
|
"""Sets the additional_info of this Edge.
|
|
|
|
|
|
:param additional_info: The additional_info of this Edge. # noqa: E501
|
|
:type: JsonNode
|
|
"""
|
|
|
|
self._additional_info = additional_info
|
|
|
|
@property
|
|
def owner_id(self):
|
|
"""Gets the owner_id of this Edge. # noqa: E501
|
|
|
|
|
|
:return: The owner_id of this Edge. # noqa: E501
|
|
:rtype: EntityId
|
|
"""
|
|
return self._owner_id
|
|
|
|
@owner_id.setter
|
|
def owner_id(self, owner_id):
|
|
"""Sets the owner_id of this Edge.
|
|
|
|
|
|
:param owner_id: The owner_id of this Edge. # noqa: E501
|
|
:type: EntityId
|
|
"""
|
|
|
|
self._owner_id = owner_id
|
|
|
|
@property
|
|
def id(self):
|
|
"""Gets the id of this Edge. # noqa: E501
|
|
|
|
|
|
:return: The id of this Edge. # noqa: E501
|
|
:rtype: EdgeId
|
|
"""
|
|
return self._id
|
|
|
|
@id.setter
|
|
def id(self, id):
|
|
"""Sets the id of this Edge.
|
|
|
|
|
|
:param id: The id of this Edge. # noqa: E501
|
|
:type: EdgeId
|
|
"""
|
|
|
|
self._id = id
|
|
|
|
@property
|
|
def created_time(self):
|
|
"""Gets the created_time of this Edge. # noqa: E501
|
|
|
|
Timestamp of the edge creation, in milliseconds # noqa: E501
|
|
|
|
:return: The created_time of this Edge. # noqa: E501
|
|
:rtype: int
|
|
"""
|
|
return self._created_time
|
|
|
|
@created_time.setter
|
|
def created_time(self, created_time):
|
|
"""Sets the created_time of this Edge.
|
|
|
|
Timestamp of the edge creation, in milliseconds # noqa: E501
|
|
|
|
:param created_time: The created_time of this Edge. # noqa: E501
|
|
:type: int
|
|
"""
|
|
|
|
self._created_time = created_time
|
|
|
|
@property
|
|
def tenant_id(self):
|
|
"""Gets the tenant_id of this Edge. # noqa: E501
|
|
|
|
|
|
:return: The tenant_id of this Edge. # noqa: E501
|
|
:rtype: TenantId
|
|
"""
|
|
return self._tenant_id
|
|
|
|
@tenant_id.setter
|
|
def tenant_id(self, tenant_id):
|
|
"""Sets the tenant_id of this Edge.
|
|
|
|
|
|
:param tenant_id: The tenant_id of this Edge. # noqa: E501
|
|
:type: TenantId
|
|
"""
|
|
|
|
self._tenant_id = tenant_id
|
|
|
|
@property
|
|
def customer_id(self):
|
|
"""Gets the customer_id of this Edge. # noqa: E501
|
|
|
|
|
|
:return: The customer_id of this Edge. # noqa: E501
|
|
:rtype: CustomerId
|
|
"""
|
|
return self._customer_id
|
|
|
|
@customer_id.setter
|
|
def customer_id(self, customer_id):
|
|
"""Sets the customer_id of this Edge.
|
|
|
|
|
|
:param customer_id: The customer_id of this Edge. # noqa: E501
|
|
:type: CustomerId
|
|
"""
|
|
|
|
self._customer_id = customer_id
|
|
|
|
@property
|
|
def root_rule_chain_id(self):
|
|
"""Gets the root_rule_chain_id of this Edge. # noqa: E501
|
|
|
|
|
|
:return: The root_rule_chain_id of this Edge. # noqa: E501
|
|
:rtype: RuleChainId
|
|
"""
|
|
return self._root_rule_chain_id
|
|
|
|
@root_rule_chain_id.setter
|
|
def root_rule_chain_id(self, root_rule_chain_id):
|
|
"""Sets the root_rule_chain_id of this Edge.
|
|
|
|
|
|
:param root_rule_chain_id: The root_rule_chain_id of this Edge. # noqa: E501
|
|
:type: RuleChainId
|
|
"""
|
|
|
|
self._root_rule_chain_id = root_rule_chain_id
|
|
|
|
@property
|
|
def name(self):
|
|
"""Gets the name of this Edge. # noqa: E501
|
|
|
|
Unique Edge Name in scope of Tenant # noqa: E501
|
|
|
|
:return: The name of this Edge. # noqa: E501
|
|
:rtype: str
|
|
"""
|
|
return self._name
|
|
|
|
@name.setter
|
|
def name(self, name):
|
|
"""Sets the name of this Edge.
|
|
|
|
Unique Edge Name in scope of Tenant # noqa: E501
|
|
|
|
:param name: The name of this Edge. # noqa: E501
|
|
:type: str
|
|
"""
|
|
if name is None:
|
|
raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
|
|
|
|
self._name = name
|
|
|
|
@property
|
|
def type(self):
|
|
"""Gets the type of this Edge. # noqa: E501
|
|
|
|
Edge type # noqa: E501
|
|
|
|
:return: The type of this Edge. # noqa: E501
|
|
:rtype: str
|
|
"""
|
|
return self._type
|
|
|
|
@type.setter
|
|
def type(self, type):
|
|
"""Sets the type of this Edge.
|
|
|
|
Edge type # noqa: E501
|
|
|
|
:param type: The type of this Edge. # noqa: E501
|
|
:type: str
|
|
"""
|
|
if type is None:
|
|
raise ValueError("Invalid value for `type`, must not be `None`") # noqa: E501
|
|
|
|
self._type = type
|
|
|
|
@property
|
|
def label(self):
|
|
"""Gets the label of this Edge. # noqa: E501
|
|
|
|
Label that may be used in widgets # noqa: E501
|
|
|
|
:return: The label of this Edge. # noqa: E501
|
|
:rtype: str
|
|
"""
|
|
return self._label
|
|
|
|
@label.setter
|
|
def label(self, label):
|
|
"""Sets the label of this Edge.
|
|
|
|
Label that may be used in widgets # noqa: E501
|
|
|
|
:param label: The label of this Edge. # noqa: E501
|
|
:type: str
|
|
"""
|
|
|
|
self._label = label
|
|
|
|
@property
|
|
def routing_key(self):
|
|
"""Gets the routing_key of this Edge. # noqa: E501
|
|
|
|
Edge routing key ('username') to authorize on cloud # noqa: E501
|
|
|
|
:return: The routing_key of this Edge. # noqa: E501
|
|
:rtype: str
|
|
"""
|
|
return self._routing_key
|
|
|
|
@routing_key.setter
|
|
def routing_key(self, routing_key):
|
|
"""Sets the routing_key of this Edge.
|
|
|
|
Edge routing key ('username') to authorize on cloud # noqa: E501
|
|
|
|
:param routing_key: The routing_key of this Edge. # noqa: E501
|
|
:type: str
|
|
"""
|
|
if routing_key is None:
|
|
raise ValueError("Invalid value for `routing_key`, must not be `None`") # noqa: E501
|
|
|
|
self._routing_key = routing_key
|
|
|
|
@property
|
|
def secret(self):
|
|
"""Gets the secret of this Edge. # noqa: E501
|
|
|
|
Edge secret ('password') to authorize on cloud # noqa: E501
|
|
|
|
:return: The secret of this Edge. # noqa: E501
|
|
:rtype: str
|
|
"""
|
|
return self._secret
|
|
|
|
@secret.setter
|
|
def secret(self, secret):
|
|
"""Sets the secret of this Edge.
|
|
|
|
Edge secret ('password') to authorize on cloud # noqa: E501
|
|
|
|
:param secret: The secret of this Edge. # noqa: E501
|
|
:type: str
|
|
"""
|
|
if secret is None:
|
|
raise ValueError("Invalid value for `secret`, must not be `None`") # noqa: E501
|
|
|
|
self._secret = secret
|
|
|
|
@property
|
|
def edge_license_key(self):
|
|
"""Gets the edge_license_key of this Edge. # noqa: E501
|
|
|
|
Edge license key obtained from license portal # noqa: E501
|
|
|
|
:return: The edge_license_key of this Edge. # noqa: E501
|
|
:rtype: str
|
|
"""
|
|
return self._edge_license_key
|
|
|
|
@edge_license_key.setter
|
|
def edge_license_key(self, edge_license_key):
|
|
"""Sets the edge_license_key of this Edge.
|
|
|
|
Edge license key obtained from license portal # noqa: E501
|
|
|
|
:param edge_license_key: The edge_license_key of this Edge. # noqa: E501
|
|
:type: str
|
|
"""
|
|
if edge_license_key is None:
|
|
raise ValueError("Invalid value for `edge_license_key`, must not be `None`") # noqa: E501
|
|
|
|
self._edge_license_key = edge_license_key
|
|
|
|
@property
|
|
def cloud_endpoint(self):
|
|
"""Gets the cloud_endpoint of this Edge. # noqa: E501
|
|
|
|
Edge uses this cloud URL to activate and periodically check it's license # noqa: E501
|
|
|
|
:return: The cloud_endpoint of this Edge. # noqa: E501
|
|
:rtype: str
|
|
"""
|
|
return self._cloud_endpoint
|
|
|
|
@cloud_endpoint.setter
|
|
def cloud_endpoint(self, cloud_endpoint):
|
|
"""Sets the cloud_endpoint of this Edge.
|
|
|
|
Edge uses this cloud URL to activate and periodically check it's license # noqa: E501
|
|
|
|
:param cloud_endpoint: The cloud_endpoint of this Edge. # noqa: E501
|
|
:type: str
|
|
"""
|
|
if cloud_endpoint is None:
|
|
raise ValueError("Invalid value for `cloud_endpoint`, must not be `None`") # noqa: E501
|
|
|
|
self._cloud_endpoint = cloud_endpoint
|
|
|
|
def to_dict(self):
|
|
"""Returns the model properties as a dict"""
|
|
result = {}
|
|
|
|
for attr, _ in six.iteritems(self.swagger_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:
|
|
result[attr] = value
|
|
if issubclass(Edge, dict):
|
|
for key, value in self.items():
|
|
result[key] = 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, Edge):
|
|
return False
|
|
|
|
return self.__dict__ == other.__dict__
|
|
|
|
def __ne__(self, other):
|
|
"""Returns true if both objects are not equal"""
|
|
return not self == other
|