Fix the typo for terminate 47/76247/1
authorbharath <bharath_ves@hotmail.com>
Thu, 24 Jan 2019 05:30:01 +0000 (11:00 +0530)
committerbharath <bharath_ves@hotmail.com>
Thu, 24 Jan 2019 05:31:38 +0000 (11:01 +0530)
Change-Id: Ie55a81f712033fc8a4b039a90d5dd07dd6123f47
Issue-ID: VFC-1173
Signed-off-by: Bharath Thiruveedula<bharath.thiruveedula@verizon.com>
lcm/ns_vnfs/serializers/serializers.py

index b588cf1..dbb566e 100644 (file)
@@ -58,7 +58,7 @@ class GrantVnfReqSerializer(serializers.Serializer):
     vnfDescriptorId = serializers.CharField(help_text="ID of VNF Descriptor", required=False, allow_null=True, allow_blank=True)
     lifecycleOperation = serializers.ChoiceField(
         help_text="Lifecycle Operation",
-        choices=["Terminal", "Instantiate", "Scalein", "Scaleout", "Scaledown", "Scaleup", "Heal"],
+        choices=["Terminate", "Instantiate", "Scalein", "Scaleout", "Scaledown", "Scaleup", "Heal"],
         required=True
     )
     jobId = serializers.CharField(help_text="ID of Job", required=False, allow_null=True, allow_blank=True)
@@ -157,7 +157,7 @@ class NotifyLcmReqSerializer(serializers.Serializer):
     )
     operation = serializers.ChoiceField(
         help_text="Lifecycle Operation",
-        choices=["Terminal", "Instantiate", "Scalein", "Scaleout", "Scaledown", "Scaleup", "Heal"],
+        choices=["Terminate", "Instantiate", "Scalein", "Scaleout", "Scaledown", "Scaleup", "Heal"],
         required=True
     )
     jobId = serializers.CharField(help_text="ID of Job", required=False, allow_null=True, allow_blank=True)