fix NS Subscription serializer error
[vfc/nfvo/lcm.git] / lcm / ns / serializers / sol / lccn_subscription_request.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.subscription_auth_data import SubscriptionAuthenticationSerializer
20
21
22 class LccnSubscriptionRequestSerializer(serializers.Serializer):
23     filter = LifeCycleChangeNotificationsFilter(
24         help_text="Filter settings for this subscription, to define the subset of all notifications this subscription relates to.",
25         required=False)
26     callbackUri = serializers.CharField(
27         help_text="The URI of the endpoint to send the notification to.",
28         required=True)
29     authentication = SubscriptionAuthenticationSerializer(
30         help_text="Authentication parameters to conFigure the use of Authorization when sending notifications corresponding to this subscription.",
31         required=False)