50f98f0c4b43df17842c0569f06b55fc51b908ca
[openstack-build/neutron-build.git] / neutron / services / qos / notification_drivers / qos_base.py
1 #    Licensed under the Apache License, Version 2.0 (the "License"); you may
2 #    not use this file except in compliance with the License. You may obtain
3 #    a copy of the License at
4 #
5 #         http://www.apache.org/licenses/LICENSE-2.0
6 #
7 #    Unless required by applicable law or agreed to in writing, software
8 #    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
9 #    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
10 #    License for the specific language governing permissions and limitations
11 #    under the License.
12 import abc
13
14 import six
15
16
17 @six.add_metaclass(abc.ABCMeta)
18 class QosServiceNotificationDriverBase(object):
19     """QoS service notification driver base class."""
20
21     @abc.abstractmethod
22     def get_description(self):
23         """Get the notification driver description.
24         """
25
26     @abc.abstractmethod
27     def create_policy(self, context, policy):
28         """Create the QoS policy."""
29
30     @abc.abstractmethod
31     def update_policy(self, context, policy):
32         """Update the QoS policy.
33
34         Apply changes to the QoS policy.
35         """
36
37     @abc.abstractmethod
38     def delete_policy(self, context, policy):
39         """Delete the QoS policy.
40
41         Remove all rules for this policy and free up all the resources.
42         """