summaryrefslogtreecommitdiffstats
path: root/mgr/mgr/vnfreg/serializers.py
blob: 372eefe50fc1bd90eedca7831c0ff568e4197782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# Copyright 2018 ZTE Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

from rest_framework import serializers


class VnfInfoSerializer(serializers.Serializer):
    vnfInstId = serializers.CharField(
        help_text="ID of VNF instance",
        required=True,
        max_length=200,
        allow_null=True
    )
    ip = serializers.CharField(
        help_text="Ip of VNF",
        required=True,
        max_length=200,
        allow_null=True
    )
    port = serializers.CharField(
        help_text="Port of VNF",
        required=True,
        max_length=200,
        allow_null=True
    )
    username = serializers.CharField(
        help_text="Username of VNF",
        required=True,
        max_length=255,
        allow_null=True
    )
    password = serializers.CharField(
        help_text="Password of VNF",
        required=True,
        max_length=255,
        allow_null=True
    )


class ResponseSerializer(serializers.Serializer):
    vnfInstId = serializers.CharField(
        help_text="ID of VNF instance",
        required=True,
        max_length=200,
        allow_null=False
    )


class CpSerializer(serializers.Serializer):
    cpId = serializers.CharField(
        help_text="ID of CP",
        required=True,
        max_length=200,
        allow_null=True
    )
    cpdId = serializers.CharField(
        help_text="ID of CPD",
        required=True,
        max_length=200,
        allow_null=True
    )


class SpecificDataSerializer(serializers.Serializer):
    autoScalable = serializers.CharField(
        help_text="Auto scalable",
        required=True,
        max_length=200,
        allow_null=True
    )
    autoHealable = serializers.CharField(
        help_text="Auto healable",
        required=True,
        max_length=200,
        allow_null=True
    )


class ConfigDataSerializer(serializers.Serializer):
    cp = CpSerializer(
        help_text="CP list",
        many=True,
        allow_null=True
    )
    vnfSpecificData = SpecificDataSerializer(
        help_text="VNF specific data",
        required=True,
        allow_null=True
    )


class VnfConfigSerializer(serializers.Serializer):
    vnfInstanceId = serializers.CharField(
        help_text="ID of VNF instance",
        required=True,
        max_length=200,
        allow_null=True
    )
    vnfConfigurationData = ConfigDataSerializer(
        help_text="VNF configuration data",
        required=True,
        allow_null=True
    )