add license
[vfc/nfvo/lcm.git] / lcm / ns / serializers / sol / affected_vnffgs.py
1 # Copyright (c) 2019, CMCC Technologies Co., Ltd.
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 lcm.ns import const
19
20
21 CHANGE_TYPE = [
22     const.CHANGE_TYPES.ADD,
23     const.CHANGE_TYPES.REMOVE,
24     const.CHANGE_TYPES.MODIFY
25 ]
26
27
28 class AffectedVnffgsSerializer(serializers.Serializer):
29     vnffgInstanceId = serializers.UUIDField(
30         help_text="Identifier of the VNFFG instance.",
31         required=True
32     )
33     vnffgdId = serializers.UUIDField(
34         help_text="Identifier of the VNFFGD of the VNFFG instance.",
35         required=True
36     )
37     changeType = serializers.ChoiceField(
38         help_text="Signals the type of change",
39         required=True,
40         choices=CHANGE_TYPE
41     )
42     changeResult = serializers.ChoiceField(
43         help_text="Signals the type of change",
44         required=True,
45         choices=const.CHANGE_RESULT
46     )