X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=PLC%2FMethods%2FAddNodeGroup.py;fp=PLC%2FMethods%2FAddNodeGroup.py;h=fe16b8111bfa5aa038c8ce39062e696c74aee3a5;hb=2d9b3a88df1d606e2517fa2e1e1bc421d7b370ec;hp=74ba22272f528b2947bf3bbb2a2910650f1adea5;hpb=1c885b4dfeed6ee4a50c5429bdb6514cdc775314;p=plcapi.git diff --git a/PLC/Methods/AddNodeGroup.py b/PLC/Methods/AddNodeGroup.py index 74ba222..fe16b81 100644 --- a/PLC/Methods/AddNodeGroup.py +++ b/PLC/Methods/AddNodeGroup.py @@ -4,27 +4,33 @@ from PLC.Parameter import Parameter, Mixed from PLC.NodeGroups import NodeGroup, NodeGroups from PLC.Auth import PasswordAuth +can_update = lambda (field, value): field in \ + ['description'] + class AddNodeGroup(Method): """ - Adds a new node group. Any values specified in optional_vals are used, - otherwise defaults are used. + Adds a new node group. Any values specified in nodegroup_fields + are used, otherwise defaults are used. Returns the new nodegroup_id (> 0) if successful, faults otherwise. """ roles = ['admin'] + update_fields = dict(filter(can_update, NodeGroup.fields.items())) + accepts = [ PasswordAuth(), NodeGroup.fields['name'], - NodeGroup.fields['description'] + update_fields ] returns = Parameter(int, 'New nodegroup_id (> 0) if successful') - def call(self, auth, name, description): - # Create node group - nodegroup = NodeGroup(self.api, {'name': name, 'description': description}) + def call(self, auth, name, nodegroup_fields = {}): + nodegroup_fields = dict(filter(can_update, nodegroup_fields.items())) + nodegroup = NodeGroup(self.api, nodegroup_fields) + nodegroup['name'] = name nodegroup.sync() return nodegroup['nodegroup_id']