IoticAgent.Core.Const module

QAPI Constants

class IoticAgent.Core.Const.DescribeScope

Bases: enum.Enum

Determines how a resource is described

AUTO - Uses local meta if available, otherwise public

PUBLIC - Public metadata (public)

LOCAL - Container-local meta (only available if container running in ‘private’ mode)

LOCAL_OWN - Container-local meta for own resource only

AUTO = 'auto'
LOCAL = 'local'
LOCAL_OWN = 'localOwn'
PUBLIC = 'public'
class IoticAgent.Core.Const.SearchScope

Bases: enum.Enum

Determines how search is performed

PUBLIC - Public metadata search

LOCAL - Container-local search (only available if container running in ‘private’ mode)

LOCAL_OWN - Container-local search for own things only

LOCAL = 'local'
LOCAL_OWN = 'localOwn'
PUBLIC = 'public'
class IoticAgent.Core.Const.SearchType

Bases: enum.Enum

Determines what results a search returns

FULL - Provides most information

REDUCED - Limit output including only points and their type

LOCATED - Minimal location + label format (e.g. for display on a map)

FULL = 'full'
LOCATED = 'located'
MINIMAL = 'minimal'
REDUCED = 'reduced'