From f0d540a5d4edaaacd56376c79e02bbbd9485aa56 Mon Sep 17 00:00:00 2001 From: "ying.yunlong" Date: Wed, 11 Oct 2017 09:20:46 +0800 Subject: Create/delete subnet relationship Create/delete subnetwork relationship to aai in vfc-nfvo-lcm Change-Id: I90ce3ad4981cc6861f5388bbbe9f247e7ea33dc4 Issue-ID: VFC-517 Signed-off-by: ying.yunlong --- lcm/pub/msapi/aai.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/lcm/pub/msapi/aai.py b/lcm/pub/msapi/aai.py index 5ceb4159..ea37fab5 100644 --- a/lcm/pub/msapi/aai.py +++ b/lcm/pub/msapi/aai.py @@ -322,3 +322,23 @@ def delete_subnet_aai(network_id, subnet_id, resource_version=""): logger.error("Status code is %s, detail is %s.", ret[2], ret[1]) raise NSLCMException("Subnetwork delete exception in AAI") return json.JSONDecoder().decode(ret[1]), ret[2] + + +def put_subnet_relationship(network_id, subnet_id, data): + resource = "/network/l3-networks/l3-network/%s/subnets/subnet/%s/relationship-list/relationship"\ + % (network_id, subnet_id) + ret = call_aai(resource, "PUT", data) + if ret[0] != 0: + logger.error("Status code is %s, detail is %s.", ret[2], ret[1]) + raise NSLCMException("Put or update subnetwork relationship exception in AAI") + return json.JSONDecoder().decode(ret[1]), ret[2] + + +def delete_subnet_relationship(network_id, subnet_id): + resource = "/network/l3-networks/l3-network/%s/subnets/subnet/%s/relationship-list/relationship"\ + % (network_id, subnet_id) + ret = call_aai(resource, "DELETE") + if ret[0] != 0: + logger.error("Status code is %s, detail is %s.", ret[2], ret[1]) + raise NSLCMException("Delete subnetwork relationship exception in AAI") + return json.JSONDecoder().decode(ret[1]), ret[2] -- cgit 1.2.3-korg