Add vfc-lcm operate subnet from AAI 85/18085/1
authorying.yunlong <ying.yunlong@zte.com.cn>
Wed, 11 Oct 2017 01:17:55 +0000 (09:17 +0800)
committerying.yunlong <ying.yunlong@zte.com.cn>
Wed, 11 Oct 2017 01:17:55 +0000 (09:17 +0800)
Change-Id: I55869add6cfb3eac11ba26f921351b71159bb5bd
Issue-ID: VFC-516
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
lcm/pub/msapi/aai.py

index ec0bee9..5ceb415 100644 (file)
@@ -293,3 +293,32 @@ def delete_network_relationship(network_id):
         logger.error("Status code is %s, detail is %s.", ret[2], ret[1])
         raise NSLCMException("Delete network relationship exception in AAI")
     return json.JSONDecoder().decode(ret[1]), ret[2]
+
+
+def create_subnet_aai(network_id, subnet_id, data):
+    resource = "/network/l3-networks/l3-network/%s/subnets/subnet/%s" % (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("Subnetwork creation exception in AAI")
+    return json.JSONDecoder().decode(ret[1]), ret[2]
+
+
+def query_subnet_aai(network_id, subnet_id):
+    resource = "/network/l3-networks/l3-network/%s/subnets/subnet/%s" % (network_id, subnet_id)
+    ret = call_aai(resource, "GET")
+    if ret[0] != 0:
+        logger.error("Status code is %s, detail is %s.", ret[2], ret[1])
+        raise NSLCMException("Subnetwork query exception in AAI")
+    return json.JSONDecoder().decode(ret[1])
+
+
+def delete_subnet_aai(network_id, subnet_id, resource_version=""):
+    resource = "/network/l3-networks/l3-network/%s/subnets/subnet/%s" % (network_id, subnet_id)
+    if resource_version:
+        resource = resource + "?resource-version=%s" % resource_version
+    ret = call_aai(resource, "DELETE")
+    if ret[0] != 0:
+        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]