vfclcm upgrade from python2 to python3
[vfc/gvnfm/vnflcm.git] / lcm / lcm / nf / serializers / lccn_subscription_request.py
1 # Copyright (C) 2018 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 .lccn_filter_data import LifeCycleChangeNotificationsFilter
18 from .subscription_auth_data import SubscriptionAuthenticationSerializer
19
20
21 class LccnSubscriptionRequestSerializer(serializers.Serializer):
22     callbackUri = serializers.CharField(
23         help_text="The URI of the endpoint to send the notification to.",
24         required=True,
25         allow_null=False)
26     filter = LifeCycleChangeNotificationsFilter(
27         help_text="Filter settings for the subscription, to define the subset of all " +
28         "notifications this subscription relates to.",
29         required=False,
30         allow_null=True)
31     authentication = SubscriptionAuthenticationSerializer(
32         help_text="Authentication parameters to configure the use of Authorization when sending " +
33         "notifications corresponding to this subscription.",
34         required=False,
35         allow_null=True)