Source code for wolk_gateway_module.model.device_registration_response_result

"""Device registration response results."""
#   Copyright 2019 WolkAbout Technology s.r.o.
#
#   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.
from enum import Enum
from enum import unique


[docs]@unique class DeviceRegistrationResponseResult(Enum): """ Enumeration of possible registration response results. :ivar OK: Device was successfully registered :vartype OK: str :ivar ERROR_GATEWAY_NOT_FOUND: Gateway that sent the registration request was not found :vartype ERROR_GATEWAY_NOT_FOUND: str :ivar ERROR_NOT_A_GATEWAY: Sender of request is not a gateway :vartype ERROR_NOT_A_GATEWAY: str :ivar ERROR_KEY_CONFLICT: Device with that key already exists :vartype ERROR_KEY_CONFLICT: str :ivar ERROR_MAXIMUM_NUMBER_OF_DEVICES_EXCEEDED: Reached limit for number of devices :vartype ERROR_MAXIMUM_NUMBER_OF_DEVICES_EXCEEDED: str :ivar ERROR_VALIDATION_ERROR: Some data in the registration request was not valid :vartype ERROR_VALIDATION_ERROR: str :ivar ERROR_INVALID_DTO: The request was not valid - faulty JSON :vartype ERROR_INVALID_DTO: str :ivar ERROR_KEY_MISSING: Device key was not provided :vartype ERROR_KEY_MISSING: str :ivar ERROR_SUBDEVICE_MANAGEMENT_FORBIDDEN: Gateway is not able to register devices :vartype ERROR_SUBDEVICE_MANAGEMENT_FORBIDDEN: str :ivar ERROR_UNKNOWN: Unknown error occurred :vartype ERROR_UNKNOWN: str """ OK = "OK" ERROR_GATEWAY_NOT_FOUND = "ERROR_GATEWAY_NOT_FOUND" ERROR_NOT_A_GATEWAY = "ERROR_NOT_A_GATEWAY" ERROR_KEY_CONFLICT = "ERROR_KEY_CONFLICT" ERROR_MAXIMUM_NUMBER_OF_DEVICES_EXCEEDED = ( "ERROR_MAXIMUM_NUMBER_OF_DEVICES_EXCEEDED" ) ERROR_VALIDATION_ERROR = "ERROR_VALIDATION_ERROR" ERROR_INVALID_DTO = "ERROR_INVALID_DTO" ERROR_KEY_MISSING = "ERROR_KEY_MISSING" ERROR_SUBDEVICE_MANAGEMENT_FORBIDDEN = ( "ERROR_SUBDEVICE_MANAGEMENT_FORBIDDEN" ) ERROR_UNKNOWN = "ERROR_UNKNOWN"