fix the serializer bug of nslcm
[vfc/nfvo/lcm.git] / lcm / ns / serializers / affected_vls.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.const import CHANGE_TYPES, CHANGE_RESULT
19
20 CHANGE_TYPE = [
21     CHANGE_TYPES.ADD,
22     CHANGE_TYPES.DELETE,
23     CHANGE_TYPES.MODIFY,
24     CHANGE_TYPES.ADD_LINK_PORT,
25     CHANGE_TYPES.REMOVE_LINK_PORT
26 ]
27
28
29 class AffectedVLsSerializer(serializers.Serializer):
30     id = serializers.UUIDField(
31         help_text="Identifier of the VL Instance.",
32         required=True
33     )
34     virtualLinkDescId = serializers.UUIDField(
35         help_text="Identifier of the VLD in the NSD for this VL.",
36         required=True
37     )
38     changeType = serializers.ChoiceField(
39         help_text="Signals the type of change",
40         required=True,
41         choices=CHANGE_TYPE
42     )
43     changeResult = serializers.ChoiceField(
44         help_text="Signals the result of change identified by the 'changeType' attribute.",
45         required=True,
46         choices=CHANGE_RESULT
47     )