vfclcm upgrade from python2 to python3
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / serializers / ext_virtual_link_data.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 .vnf_ext_cp_data import VnfExtCpDataSerializer
18 from .ext_link_port_data import ExtLinkPortDataSerializer
19
20
21 class ExtVirtualLinkDataSerizlizer(serializers.Serializer):
22     id = serializers.CharField(
23         help_text="The identifier of the external VL instance. \
24         The identifier is assigned by the NFV-MANO entity that manages this VL instance.",
25         max_length=255,
26         required=True,
27         allow_null=True)
28     vimConnectionId = serializers.CharField(
29         help_text="Identifier of the VIM connection to manage this resource. \
30         This attribute shall only be supported and present if VNF-related resource management in direct mode is applicable.",
31         max_length=255,
32         required=False,
33         allow_null=True)
34     resourceProviderId = serializers.CharField(
35         help_text="Identifies the entity responsible for the management of this resource. \
36         This attribute shall only be supported and present if VNF-related resource management in indirect mode is applicable.",
37         max_length=255,
38         required=False,
39         allow_null=True)
40     resourceId = serializers.CharField(
41         help_text="The identifier of the resource in the scope of the VIM or the resource provider.",
42         max_length=255,
43         required=True,
44         allow_null=False)
45     resourceSubnetId = serializers.CharField(
46         help_text="Subnet defined by the identifier of the subnet resource in the VIM.",
47         max_length=255,
48         required=True,
49         allow_null=False)
50     extCps = VnfExtCpDataSerializer(
51         help_text="External CPs of the VNF to be connected to this external VL.",
52         many=True,
53         required=True,
54         allow_null=False)
55     extLinkPorts = ExtLinkPortDataSerializer(
56         help_text="Externally provided link ports to be used to connect external connection points to this external VL. \
57         If this attribute is not present, the VNFM shall create the link port on the external VL.",
58         many=True,
59         required=False,
60         allow_null=True)