X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=osm_ro%2Fvimconn_fos.py;h=ca550f279d4df9b3b08a5346c7f2f1018f06b28e;hb=fb5855ccaaffd7f9b5398505be9eed9b5b8e11d9;hp=fd539ccf78f8367088f90e549f595f8f816b000d;hpb=5db670b68349fd1f00a5efc8c0ccd0ef9d073dca;p=osm%2FRO.git diff --git a/osm_ro/vimconn_fos.py b/osm_ro/vimconn_fos.py index fd539ccf..ca550f27 100644 --- a/osm_ro/vimconn_fos.py +++ b/osm_ro/vimconn_fos.py @@ -165,7 +165,7 @@ class vimconnector(vimconn.vimconnector): except Exception as e: raise vimconn.vimconnException("Unable to create network {}. Error {}".format(net_name, e)) # No way from the current rest service to get the actual error, most likely it will be an already existing error - return net_uuid + return net_uuid,{} def get_network_list(self, filter_dict={}): """Obtain tenant networks of VIM @@ -234,7 +234,7 @@ class vimconnector(vimconn.vimconnector): raise vimconn.vimconnNotFoundException("Network {} not found at VIM".format(net_id)) return res[0] - def delete_network(self, net_id): + def delete_network(self, net_id, created_items=None): """Deletes a tenant network from VIM Returns the network identifier or raises an exception upon error or when network is not found """