0d427f82eea514f5d32503d14f4287995723a5e6
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / serializers / ext_cp_info.py
1 # Copyright 2018 ZTE Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #         http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 from rest_framework import serializers
16
17 from cp_protocol_info import CpProtocolInfoSerializer
18
19
20 class ExtCpInfoSerializer(serializers.Serializer):
21     id = serializers.CharField(
22         help_text="Identifier of the external CP instance and the related information instance.",
23         max_length=255,
24         required=True,
25         allow_null=True,
26         allow_blank=False)
27     cpdId = serializers.CharField(
28         help_text="Identifier of the external CPD, VnfExtCpd, in the VNFD.",
29         max_length=255,
30         required=True,
31         allow_null=True,
32         allow_blank=False)
33     cpProtocolInfo = CpProtocolInfoSerializer(
34         help_text="Network protocol information for this CP.",
35         many=True,
36         required=False,
37         allow_null=True)
38     extLinkPortId = serializers.CharField(
39         help_text="Identifier of the extLinkPortInfo structure inside the extVirtualLinkInfo structure.",
40         max_length=255,
41         required=False,
42         allow_null=True,
43         allow_blank=True)