Add GET /vnf_lcm_op_occs API in GVNFM
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / serializers / affected_vls.py
1 # Copyright (C) 2018 Verizon. All Rights Reserved.
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
16 from rest_framework import serializers
17
18 from resource_handle import ResourceHandleSerializer
19
20 CHANGE_TYPES = [
21     "ADDED",
22     "REMOVED",
23     "MODIFIED",
24     "TEMPORARY",
25     "LINK_PORT_ADDED",
26     "LINK_PORT_REMOVED"
27 ]
28
29
30 class AffectedVLsSerializer(serializers.Serializer):
31     id = serializers.UUIDField(
32         help_text="Identifier of the virtual link instance, identifying " +
33         "the applicable 'vnfVirtualLinkResourceInfo' ",
34         required=True
35     )
36     virtualLinkDescId = serializers.UUIDField(
37         help_text="Identifier of the related VLD in the VNFD.",
38         required=True
39     )
40     changeType = serializers.ChoiceField(
41         help_text="Signals the type of change",
42         required=True,
43         choices=CHANGE_TYPES
44     )
45     metadata = serializers.DictField(
46         help_text="Metadata about this resource. ",
47         required=False,
48         allow_null=True)
49     networkResource = ResourceHandleSerializer(
50         help_text="Reference to the VirtualNetwork resource.",
51         required=True,
52         allow_null=False)