Create/delete subnet relationship 87/18087/1
authorying.yunlong <ying.yunlong@zte.com.cn>
Wed, 11 Oct 2017 01:20:46 +0000 (09:20 +0800)
committerying.yunlong <ying.yunlong@zte.com.cn>
Wed, 11 Oct 2017 01:20:46 +0000 (09:20 +0800)
Create/delete subnetwork relationship to aai in vfc-nfvo-lcm

Change-Id: I90ce3ad4981cc6861f5388bbbe9f247e7ea33dc4
Issue-ID: VFC-517
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
lcm/pub/msapi/aai.py

index 5ceb415..ea37fab 100644 (file)
@@ -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]