genericparser seed code
[modeling/etsicatalog.git] / genericparser / packages / serializers / vnf_pkg_notifications.py
1 # Copyright (C) 2019 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 from rest_framework import serializers
16
17 from genericparser.packages.const import NOTIFICATION_TYPES
18
19 PackageOperationalStateType = ["ENABLED", "DISABLED"]
20 PackageUsageStateType = ["IN_USE", "NOT_IN_USE"]
21
22
23 class VersionSerializer(serializers.Serializer):
24     vnfSoftwareVersion = serializers.CharField(
25         help_text="VNF software version to match.",
26         max_length=255,
27         required=True,
28         allow_null=False
29     )
30     vnfdVersions = serializers.ListField(
31         child=serializers.CharField(),
32         help_text="Match VNF packages that contain "
33                   "VNF products with certain VNFD versions",
34         required=False,
35         allow_null=False
36     )
37
38
39 class vnfProductsSerializer(serializers.Serializer):
40     vnfProductName = serializers.CharField(
41         help_text="Name of the VNF product to match.",
42         max_length=255,
43         required=True,
44         allow_null=False
45     )
46     versions = VersionSerializer(
47         help_text="match VNF packages that contain "
48                   "VNF products with certain versions",
49         required=False,
50         allow_null=False
51     )
52
53
54 class vnfProductsProvidersSerializer(serializers.Serializer):
55     vnfProvider = serializers.CharField(
56         help_text="Name of the VNFprovider to match.",
57         max_length=255,
58         required=True,
59         allow_null=False
60     )
61     vnfProducts = vnfProductsSerializer(
62         help_text="match VNF packages that contain "
63                   "VNF products with certain product names, "
64                   "from one particular provider",
65         required=False,
66         allow_null=False
67     )
68
69
70 class PkgmNotificationsFilter(serializers.Serializer):
71     notificationTypes = serializers.ListField(
72         child=serializers.ChoiceField(
73             required=True,
74             choices=NOTIFICATION_TYPES
75         ),
76         help_text="Match particular notification types",
77         allow_null=False,
78         required=False
79     )
80     vnfProductsFromProviders = vnfProductsProvidersSerializer(
81         help_text="Match VNF packages that contain "
82                   "VNF products from certain providers.",
83         allow_null=False,
84         required=False
85     )
86     vnfdId = serializers.ListField(
87         child=serializers.UUIDField(),
88         help_text="Match VNF packages with a VNFD identifier"
89                   "listed in the attribute",
90         required=False,
91         allow_null=False
92     )
93     vnfPkgId = serializers.ListField(
94         child=serializers.UUIDField(),
95         help_text="Match VNF packages with a VNFD identifier"
96                   "listed in the attribute",
97         required=False,
98         allow_null=False
99     )
100     operationalState = serializers.ListField(
101         child=serializers.ChoiceField(
102             required=True,
103             choices=PackageOperationalStateType
104         ),
105         help_text="Operational state of the VNF package.",
106         allow_null=False,
107         required=False
108     )
109     usageState = serializers.ListField(
110         child=serializers.ChoiceField(
111             required=True,
112             choices=PackageUsageStateType
113         ),
114         help_text="Operational state of the VNF package.",
115         allow_null=False,
116         required=False
117     )