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