fix NS Subscription serializer error
[vfc/nfvo/lcm.git] / lcm / ns / serializers / sol / lccn_subscription.py
1 # Copyright (c) 2019, CMCC Technologies Co., Ltd.
2 # Copyright 2019 ZTE Corporation.
3
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 from rest_framework import serializers
17
18 from lcm.ns.serializers.sol.lccn_filter_data import LifeCycleChangeNotificationsFilter
19 from lcm.ns.serializers.sol.pub_serializers import LinkSerializer
20
21
22 class LccnSubscriptionLinkSerializer(serializers.Serializer):
23     self = LinkSerializer(
24         help_text="URI of this resource.",
25         required=True,
26         allow_null=False)
27
28
29 class LccnSubscriptionSerializer(serializers.Serializer):
30     id = serializers.CharField(
31         help_text="Identifier of this subscription resource.",
32         required=True,
33         allow_null=False)
34     filter = LifeCycleChangeNotificationsFilter(
35         help_text="Filter settings for this subscription, to define the of all notifications this subscription relates to.",
36         required=False)
37     callbackUri = serializers.CharField(
38         help_text="The URI of the endpoint to send the notification to.",
39         required=True,
40         allow_null=False)
41     _links = LccnSubscriptionLinkSerializer(
42         help_text="Links to resources related to this resource.",
43         required=True)
44
45
46 class LccnSubscriptionsSerializer(serializers.ListSerializer):
47     child = LccnSubscriptionSerializer()