Add VimConnectionInfo serializer 01/33301/1
authorfujinhua <fu.jinhua@zte.com.cn>
Wed, 28 Feb 2018 01:56:12 +0000 (09:56 +0800)
committerfujinhua <fu.jinhua@zte.com.cn>
Wed, 28 Feb 2018 01:56:12 +0000 (09:56 +0800)
Change-Id: I22dca2e052d21784434ebbe4f2eae3e5b43fbf46
Issue-ID: VFC-779
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
lcm/v2/serializers.py

index 3d1d308..8fa57a5 100644 (file)
@@ -45,6 +45,43 @@ class GrantRequestSerializer(serializers.Serializer):
     )
 
 
+class VimConnectionInfoSerializer(serializers.Serializer):
+    id = serializers.CharField(
+        help_text="The identifier of the VIM Connection. This identifier is managed by the NFVO.",
+        required=True
+    )
+    vimId = serializers.CharField(
+        help_text="The identifier of the VIM instance. This identifier is managed by the NFVO.",
+        required=False,
+        allow_null=True,
+        allow_blank=True
+    )
+    vimType = serializers.CharField(
+        help_text="Discriminator for the different types of the VIM information.",
+        required=False,
+        allow_null=True,
+        allow_blank=True
+    )
+    interfaceInfo = serializers.DictField(
+        help_text="Information about the interface or interfaces to the VIM.",
+        child=serializers.CharField(help_text="Interface Info", allow_blank=True),
+        required=False,
+        allow_null=True
+    )
+    accessInfo = serializers.DictField(
+        help_text="Authentication credentials for accessing the VIM.",
+        child=serializers.CharField(help_text="Access Info", allow_blank=True),
+        required=False,
+        allow_null=True
+    )
+    extra = serializers.DictField(
+        help_text="VIM type specific additional information.",
+        child=serializers.CharField(help_text="Extra", allow_blank=True),
+        required=False,
+        allow_null=True
+    )
+
+
 class GrantSerializer(serializers.Serializer):
     id = serializers.CharField(
         help_text="Identifier of the grant.",