558dcf3653aefdb62be9c3faf701449728ebbee4
[plcapi.git] / PLC / Methods / GetNodeNetworks.py
1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.Filter import Filter
5 from PLC.NodeNetworks import NodeNetwork, NodeNetworks
6 from PLC.Auth import Auth
7
8 class GetNodeNetworks(Method):
9     """
10     Returns an array of structs containing details about node network
11     interfacess. If nodenetworks_filter is specified and is an array
12     of node network identifiers, or a struct of node network
13     attributes, only node network interfaces matching the filter will
14     be returned. If return_fields is specified, only the
15     specified details will be returned.
16     """
17
18     roles = ['admin', 'pi', 'user', 'tech', 'node', 'anonymous']
19
20     accepts = [
21         Auth(),
22         Mixed([NodeNetwork.fields['nodenetwork_id']],
23               Filter(NodeNetwork.fields)),
24         Parameter([str], "List of fields to return", nullok = True)
25         ]
26
27     returns = [NodeNetwork.fields]
28     
29     def call(self, auth, nodenetwork_filter = None, return_fields = None):
30         return NodeNetworks(self.api, nodenetwork_filter, return_fields)