8488ea847893ada64692f3fe8af3dff77edb5079
[plcapi.git] / PLC / Methods / GetInterfaceTags.py
1 # $Id$
2 #
3 # Thierry Parmentelat - INRIA
4 #
5 # $Revision$
6 #
7 from PLC.Faults import *
8 from PLC.Method import Method
9 from PLC.Parameter import Parameter, Mixed
10 from PLC.Filter import Filter
11 from PLC.Auth import Auth
12
13 from PLC.InterfaceTags import InterfaceTag, InterfaceTags
14 from PLC.Sites import Site, Sites
15 from PLC.Interfaces import Interface, Interfaces
16
17 class GetInterfaceTags(Method):
18     """
19     Returns an array of structs containing details about
20     interfaces and related settings.
21
22     If interface_tag_filter is specified and is an array of
23     interface setting identifiers, only interface settings matching
24     the filter will be returned. If return_fields is specified, only
25     the specified details will be returned.
26     """
27
28     roles = ['admin', 'pi', 'user', 'node']
29
30     accepts = [
31         Auth(),
32         Mixed([InterfaceTag.fields['interface_tag_id']],
33               Parameter(int,"Interface setting id"),
34               Filter(InterfaceTag.fields)),
35         Parameter([str], "List of fields to return", nullok = True)
36         ]
37
38     returns = [InterfaceTag.fields]
39     
40
41     def call(self, auth, interface_tag_filter = None, return_fields = None):
42
43         interface_tags = InterfaceTags(self.api, interface_tag_filter, return_fields)
44
45         return interface_tags