vfclcm upgrade from python2 to python3
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / serializers / vnf_virtual_link_resource_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 from .resource_handle import ResourceHandleSerializer
17 from .vnf_link_port_info import VnfLinkPortInfoSerializer
18
19
20 class VnfVirtualLinkResourceInfoSerializer(serializers.Serializer):
21     id = serializers.CharField(
22         help_text="Identifier of this VnfVirtualLinkResourceInfo instance.",
23         max_length=255,
24         required=True,
25         allow_null=False,
26         allow_blank=False)
27     virtualLinkDescId = serializers.CharField(
28         help_text="Identifier of the VNF Virtual Link Descriptor (VLD) in the VNFD.",
29         max_length=255,
30         required=True,
31         allow_null=False,
32         allow_blank=False)
33     networkResource = ResourceHandleSerializer(
34         help_text="Reference to the VirtualNetwork resource.",
35         required=True,
36         allow_null=False)
37     reservationId = serializers.CharField(
38         help_text="The reservation identifier applicable to the resource.",
39         max_length=255,
40         required=False,
41         allow_null=True,
42         allow_blank=True)
43     vnfLinkPorts = VnfLinkPortInfoSerializer(
44         help_text="Links ports of this VL. \
45         Shall be present when the linkPort is used for external connectivity by the VNF",
46         many=True,
47         required=False,
48         allow_null=True)
49     metadata = serializers.DictField(
50         help_text="Metadata about this resource.",
51         child=serializers.CharField(help_text="KeyValue Pairs", allow_blank=True),
52         required=False,
53         allow_null=True)