Add lcm notify call in vnf inst and term
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / serializers / create_vnf_req.py
index a8fa665..5ebe3a0 100644 (file)
@@ -30,4 +30,11 @@ class CreateVnfReqSerializer(serializers.Serializer):
         help_text="Human-readable description of the VNF instance to be created.",
         max_length=255,
         required=False,
-        allow_null=True)
+        allow_null=True,
+        allow_blank=True)
+    vnfmInstId = serializers.CharField(
+        help_text="VNFM instance ID passed from nfvo.",
+        max_length=255,
+        required=False,
+        allow_null=True,
+        allow_blank=True)