get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / DeleteNodeType.py
1 from PLC.Faults import *
2 from PLC.Method import Method
3 from PLC.Parameter import Parameter, Mixed
4 from PLC.NodeTypes import NodeType, NodeTypes
5 from PLC.Auth import Auth
6
7 class DeleteNodeType(Method):
8     """
9     Deletes a node node type.
10
11     WARNING: This will cause the deletion of all nodes in this boot
12     state.
13
14     Returns 1 if successful, faults otherwise.
15     """
16
17     roles = ['admin']
18
19     accepts = [
20         Auth(),
21         NodeType.fields['node_type']
22         ]
23
24     returns = Parameter(int, '1 if successful')
25
26
27     def call(self, auth, name):
28         node_types = NodeTypes(self.api, [name])
29         if not node_types:
30             raise PLCInvalidArgument, "No such node type"
31         node_type = node_types[0]
32
33         node_type.delete()
34
35         return 1