fix nslcm middleware
[vfc/nfvo/lcm.git] / lcm / ns / serializers / sol / affected_pnfs.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 from lcm.ns.const import CHANGE_TYPES, CHANGE_RESULT
18
19
20 CHANGE_TYPE = [
21     CHANGE_TYPES.ADD,
22     CHANGE_TYPES.REMOVE,
23     CHANGE_TYPES.MODIFY
24 ]
25
26
27 class AffectedPnfsSerializer(serializers.Serializer):
28     pnfId = serializers.UUIDField(
29         help_text="Identifier of the affected PNF. This identifier is allocated by the OSS/BSS. ",
30         required=True
31     )
32     pnfdId = serializers.UUIDField(
33         help_text="Identifier of the PNFD on which the PNF is based.",
34         required=True
35     )
36     pnfProfileId = serializers.UUIDField(
37         help_text="Identifier of the VNF profile of the NSD.",
38         required=True
39     )
40     pnfName = serializers.CharField(
41         help_text="Name of the PNF.",
42         required=True)
43     cpInstanceId = serializers.UUIDField(
44         help_text="Identifier of the NS profile of the NSD.",
45         required=True
46     )
47     changeType = serializers.ChoiceField(
48         help_text="Signals the type of change",
49         required=True,
50         choices=CHANGE_TYPE
51     )
52     changeResult = serializers.ChoiceField(
53         help_text="Signals the type of change",
54         required=True,
55         choices=CHANGE_RESULT
56     )