Official Plugins (Kuzzle v2.x)
Device Manager v0.x
2

registerQos #

Add properties definition to the qos field of the devices collection.

Copied to clipboard!
registerQos (mappings: JSONObject, options: JSONObject);

Arguments Type Description
mappings
JSONObject
Mappings definiton of the qos property
options
JSONObject
Additional options

options #

Properties Type Description
group
string
Name of the group for which the mappings should apply. If unspecified, mappings will apply to every group who does not have specific definition.

Usage #

Copied to clipboard!
import { DeviceManagerPlugin } from 'kuzzle-plugin-device-manager';

const deviceManagerPlugin = new DeviceManagerPlugin();

deviceManagerPlugin.devices.registerQos({
  battery: { type: 'integer' }
}, { group: 'water_management' });