How to use the azure-iot-hub.azure.iot.hub.protocol.models.device_registry_operation_error_py3.DeviceRegistryOperationError function in azure-iot-hub

To help you get started, we’ve selected a few azure-iot-hub examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-iot-sdk-python / azure-iot-hub / azure / iot / hub / protocol / models / device_registry_operation_error_py3.py View on Github external
def __init__(
        self,
        *,
        device_id: str = None,
        error_code=None,
        error_status: str = None,
        module_id: str = None,
        operation: str = None,
        **kwargs
    ) -> None:
        super(DeviceRegistryOperationError, self).__init__(**kwargs)
        self.device_id = device_id
        self.error_code = error_code
        self.error_status = error_status
        self.module_id = module_id
        self.operation = operation