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