X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_lcm%2Fdata_utils%2Fnsd.py;fp=osm_lcm%2Fdata_utils%2Fnsd.py;h=d436e1f525fb708e0733503eb21c338b9ec6e474;hb=7f26b3f6740e12dd35d8024b14c3fe3a32ec5dbf;hp=9b6fb81fe27dc8872cbbfcfe660f664318d1130b;hpb=3ff2325f97dda222d286d0d8ceb720de8b1a537c;p=osm%2FLCM.git diff --git a/osm_lcm/data_utils/nsd.py b/osm_lcm/data_utils/nsd.py index 9b6fb81..d436e1f 100644 --- a/osm_lcm/data_utils/nsd.py +++ b/osm_lcm/data_utils/nsd.py @@ -21,7 +21,6 @@ # For those usages not covered by the Apache License, Version 2.0 please # contact: fbravo@whitestack.com ## -import ast from osm_lcm.data_utils.list_utils import find_in_list @@ -41,12 +40,6 @@ def get_virtual_link_profiles(nsd): return nsd.get("df")[0].get("virtual-link-profile", ()) -def replace_vnf_id(nsd, old_vnf_id, new_vnf_id): - dict_str = str(nsd) - dict_str.replace(old_vnf_id, new_vnf_id) - return ast.literal_eval(dict_str) - - def get_ns_configuration(nsd): return nsd.get("ns-configuration", {})