The watcher.objects.action Module¶
- 
class 
watcher.objects.action.Action(context=None, **kwargs)[source]¶ Bases:
watcher.objects.base.WatcherPersistentObject,watcher.objects.base.WatcherObject,watcher.objects.base.WatcherObjectDictCompat- 
classmethod 
get(context, *args, **kwargs)[source]¶ Find a action based on its id or uuid and return a Action object.
Parameters: - action_id – the id or uuid of a action.
 - eager – Load object fields if True (Default: False)
 
Returns: a
Actionobject.
- 
classmethod 
get_by_id(context, *args, **kwargs)[source]¶ Find a action based on its integer id and return a Action object.
Parameters: - action_id – the id of a action.
 - eager – Load object fields if True (Default: False)
 
Returns: a
Actionobject.
- 
classmethod 
get_by_uuid(context, *args, **kwargs)[source]¶ Find a action based on uuid and return a
Actionobject.Parameters: - uuid – the uuid of a action.
 - context – Security context
 - eager – Load object fields if True (Default: False)
 
Returns: a
Actionobject.
- 
classmethod 
list(context, *args, **kwargs)[source]¶ Return a list of Action objects.
Parameters: - context – Security context.
 - limit – maximum number of resources to return in a single result.
 - marker – pagination marker for large data sets.
 - filters – Filters to apply. Defaults to None.
 - sort_key – column to sort results by.
 - sort_dir – direction to sort. “asc” or “desc”.
 - eager – Load object fields if True (Default: False)
 
Returns: a list of
Actionobject.
- 
refresh(*args, **kwargs)[source]¶ Loads updates for this Action.
Loads a action with the same uuid from the database and checks for updated attributes. Updates are applied from the loaded action column by column, if there are any updates. :param eager: Load object fields if True (Default: False)
- 
classmethod