More complete handling of 4.2 calls mapped to 4.3 calls.
[plcapi.git] / PLC / v42LegacySliceAttributes.py
similarity index 70%
rename from PLC/v42LegacyTypes.py
rename to PLC/v42LegacySliceAttributes.py
index e6fd697..c887aee 100644 (file)
@@ -1,7 +1,10 @@
 # $Id: $
 
 # mapping of argument/return names for *{SliceAttribute,NetworkSetting}Type* and *TagType* calls
-v42_to_v43_argmap = { "name":"tagname" }
+
+v42_to_v43_argmap = { "name":"tagname",
+                      "slice_attribute_id":"slice_tag_id",
+                      }
 v43_to_v42_argmap = dict([ (v,k) for k,v in v42_to_v43_argmap.iteritems()])
 
 def v42rename (x): return v42_to_v43_argmap.get(x,x)