svn keywords
[plcapi.git] / PLC / Methods / AddSliceInstantiation.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.SliceInstantiations import SliceInstantiation, SliceInstantiations
7 from PLC.Auth import Auth
8
9 class AddSliceInstantiation(Method):
10     """
11     Adds a new slice instantiation state.
12
13     Returns 1 if successful, faults otherwise.
14     """
15
16     roles = ['admin']
17
18     accepts = [
19         Auth(),
20         SliceInstantiation.fields['instantiation']
21         ]
22
23     returns = Parameter(int, '1 if successful')
24
25
26     def call(self, auth, name):
27         slice_instantiation = SliceInstantiation(self.api)
28         slice_instantiation['instantiation'] = name
29         slice_instantiation.sync(insert = True)
30
31         return 1