get rid of svn keywords once and for good
[plcapi.git] / PLC / Methods / SliceCreate.py
index a749454..e752505 100644 (file)
@@ -1,3 +1,8 @@
+from PLC.Faults import *
+from PLC.Method import Method
+from PLC.Parameter import Parameter, Mixed
+from PLC.Auth import Auth
+from PLC.Slices import Slice, Slices
 from PLC.Methods.AddSlice import AddSlice
 
 class SliceCreate(AddSlice):
@@ -6,3 +11,15 @@ class SliceCreate(AddSlice):
     """
 
     status = "deprecated"
+
+    accepts = [
+        Auth(),
+        Slice.fields['name'],
+        AddSlice.accepts[1]
+        ]
+
+    returns = Parameter(int, 'New slice_id (> 0) if successful')
+
+    def call(self, auth, name, slice_fields = {}):
+        slice_fields['name'] = name
+        return AddSlice.call(self, auth, slice_fields)