vfclcm upgrade from python2 to python3
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / serializers / vnf_instance.py
index bd45362..020ddf7 100644 (file)
@@ -15,9 +15,9 @@
 
 from rest_framework import serializers
 
-from vim_connection_info import VimConnectionInfoSerializer
-from instantiated_vnf_info import InstantiatedVnfInfoSerializer
-from _links import _LinksSerializer
+from .vim_connection_info import VimConnectionInfoSerializer
+from .instantiated_vnf_info import InstantiatedVnfInfoSerializer
+from ._links import _LinksSerializer
 
 
 class VnfInstanceSerializer(serializers.Serializer):
@@ -50,9 +50,9 @@ class VnfInstanceSerializer(serializers.Serializer):
         help_text="Provider of the VNF and the VNFD. \
         The value is copied from the VNFD. ",
         max_length=255,
-        required=True,
+        required=False,
         allow_null=True,
-        allow_blank=False)
+        allow_blank=True)
     vnfProductName = serializers.CharField(
         help_text="Name to identify the VNF Product. \
         The value is copied from the VNFD.",
@@ -71,22 +71,22 @@ class VnfInstanceSerializer(serializers.Serializer):
         help_text="Identifies the version of the VNFD. \
         The value is copied from the VNFD.",
         max_length=255,
-        required=True,
+        required=False,
         allow_null=True,
-        allow_blank=False)
+        allow_blank=True)
     vnfPkgId = serializers.CharField(
         help_text="Identifier of information held by the NFVO about the specific VNF package on which the VNF is based. \
         This attribute can be modified with the PATCH method.",
         max_length=255,
-        required=True,
+        required=False,
         allow_null=True,
-        allow_blank=False)
+        allow_blank=True)
     vnfConfigurableProperties = serializers.DictField(
         help_text="Current values of the configurable properties of the VNF instance. \
         Configurable properties referred in this attribute are declared in the VNFD",
         child=serializers.CharField(help_text="KeyValue Pairs", allow_blank=True),
         required=False,
-        allow_null=True,)
+        allow_null=True)
     vimConnectionInfo = VimConnectionInfoSerializer(
         help_text="Information about VIM connections to be used for managing the resources for the VNF instance. \
         This attribute can be modified with the PATCH method.",
@@ -95,9 +95,9 @@ class VnfInstanceSerializer(serializers.Serializer):
     instantiationState = serializers.ChoiceField(
         help_text="The instantiation state of the VNF.",
         choices=["NOT_INSTANTIATED", "INSTANTIATED"],
-        required=False,
-        allow_null=True,
-        allow_blank=True)
+        required=True,
+        allow_null=False,
+        allow_blank=False)
     instantiatedVnfInfo = InstantiatedVnfInfoSerializer(
         help_text="Information specific to an instantiated VNF instance. \
         This attribute shall be present if the instantiateState attribute value is INSTANTIATED",