From: fujinhua Date: Wed, 28 Feb 2018 08:10:42 +0000 (+0800) Subject: Add VnfExtCpConfig Serializer X-Git-Tag: v1.1.0~122 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F77%2F33377%2F1;p=vfc%2Fnfvo%2Flcm.git Add VnfExtCpConfig Serializer Change-Id: I61d1de2818365c444f011b4c9b6cc9a829874845 Issue-ID: VFC-779 Signed-off-by: fujinhua --- diff --git a/lcm/v2/serializers.py b/lcm/v2/serializers.py index 2abaad5f..20517a49 100644 --- a/lcm/v2/serializers.py +++ b/lcm/v2/serializers.py @@ -284,6 +284,25 @@ class CpProtocolDataSerializer(serializers.Serializer): ) +class VnfExtCpConfigSerializer(serializers.Serializer): + cpInstanceId = serializers.CharField( + help_text="Identifier of the external CP instance to which this set of configuration parameters is requested to be applied.", + required=False, + allow_null=True, + allow_blank=True + ) + linkPortId = serializers.CharField( + help_text="Identifier of a pre-configured link port to which the external CP will be associated.", + required=False, + allow_null=True, + allow_blank=True + ) + cpProtocolData = CpProtocolDataSerializer( + help_text="Parameters for configuring the network protocols on the link port that connects the CP to a VL.", + many=True + ) + + class GrantSerializer(serializers.Serializer): id = serializers.CharField( help_text="Identifier of the grant.",