Add GET /vnf_lcm_op_occs API in GVNFM
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / serializers / affected_vnfcs.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 ]
26
27
28 class AffectedVnfcsSerializer(serializers.Serializer):
29     id = serializers.UUIDField(
30         help_text="Identifier of the Vnfc instance, identifying the " +
31         "applicable 'vnfcResourceInfo' entry in the 'VnfInstance' data type",
32         required=True
33     )
34     vduId = serializers.UUIDField(
35         help_text="Identifier of the related VDU in the VNFD.",
36         required=True
37     )
38     changeType = serializers.ChoiceField(
39         help_text="Signals the type of change",
40         required=True,
41         choices=CHANGE_TYPES
42     )
43     affectedVnfcCpIds = serializers.ListField(
44         help_text="Identifiers of CP(s) of the VNFC instance that " +
45         "were affected by the change",
46         required=False,
47         child=serializers.UUIDField(required=True)
48     )
49     addedStorageResourceIds = serializers.ListField(
50         help_text="References to VirtualStorage resources that " +
51         "have been added",
52         required=False,
53         child=serializers.UUIDField()
54     )
55     removedStorageResourceIds = serializers.ListField(
56         help_text="References to VirtualStorage resources that " +
57         "have been removed.",
58         required=False,
59         child=serializers.UUIDField()
60     )
61     metadata = serializers.DictField(
62         help_text="Metadata about this resource. ",
63         required=False,
64         allow_null=True)
65     computeResource = ResourceHandleSerializer(
66         help_text="Reference to the VirtualCompute resource.",
67         required=True,
68         allow_null=False)