0f8ec5e94859aad8f6ab3496ac8597b101da56a9
[plcapi.git] / PLC / Methods / GetEventObjects.py
1 # $Id$
2 from PLC.Faults import *
3 from PLC.Method import Method
4 from PLC.Parameter import Parameter, Mixed
5 from PLC.Filter import Filter
6 from PLC.EventObjects import EventObject, EventObjects
7 from PLC.Auth import Auth
8
9 class GetEventObjects(Method):
10     """
11     Returns an array of structs containing details about events and
12     faults. If event_filter is specified and is an array of event
13     identifiers, or a struct of event attributes, only events matching
14     the filter will be returned. If return_fields is specified, only the
15     specified details will be returned.
16     """
17
18     roles = ['admin']
19
20     accepts = [
21         Auth(),
22         Mixed(Filter(EventObject.fields)),
23         Parameter([str], "List of fields to return", nullok = True)
24         ]
25
26     returns = [EventObject.fields]
27
28     def call(self, auth, event_filter = None, return_fields = None):
29         return EventObjects(self.api, event_filter, return_fields)
30