243fbe1f0ba9eca93c6c72e48c6d40eb03a51bed
[plcapi.git] / PLC / Methods / GetNodeTypes.py
1 # $Id$
2 from PLC.Faults import *
3 from PLC.Method import Method
4 from PLC.Parameter import Parameter, Mixed
5 from PLC.NodeTypes import NodeType, NodeTypes
6 from PLC.Auth import Auth
7
8 class GetNodeTypes(Method):
9     """
10     Returns an array of all valid node node types.
11     """
12
13     roles = ['admin', 'pi', 'user', 'tech', 'node']
14
15     accepts = [
16         Auth()
17         ]
18
19     returns = [NodeType.fields['node_type']]
20     
21
22     def call(self, auth):
23         return [node_type['node_type'] for node_type in NodeTypes(self.api)]