Files
neutron/neutron/services/logapi/api_base.py
Brian Haley 706a24e298 pyupgrade changes for Python3.9+
As discussed at the Epoxy PTG meeting, run an automated
upgrade tool to make code python 3.9+ compliant.

This patch is for code (non-tests).

Result of running:

$ pyupgrade --py39-plus $(git ls-files | grep ".py$")

Fixed PEP8 errors introduced by pyupgrade by running:

$ autopep8 --select=E127,E128,E501 --max-line-length 79 -r \
  --in-place neutron

Also did manual updates as necessary to fix other errors
and warnings after above commands.

Inspired by Octavia and Nova [0].

[0] https://review.opendev.org/c/openstack/nova/+/896986

Change-Id: Ife79df75dd2c9c42d4de36edef1d29b98f5d85da
2024-10-25 14:32:16 -04:00

87 lines
2.9 KiB
Python

# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import abc
class LoggingApiBase(metaclass=abc.ABCMeta):
"""Logging API methods"""
@abc.abstractmethod
def create_log(self, context, log_obj):
"""Create a log_obj invocation.
This method can be implemented by the specific driver subclass
to update the backend where necessary with a specific log object.
:param context: current running context information
:param log_obj: a log objects being created
"""
@abc.abstractmethod
def create_log_precommit(self, context, log_obj):
"""Create a log_obj precommit.
This method can be implemented by the specific driver subclass
to handle the precommit event of a log_object that is being created.
:param context: current running context information
:param log_obj: a log object being created
"""
@abc.abstractmethod
def update_log(self, context, log_obj):
"""Update a log_obj invocation.
This method can be implemented by the specific driver subclass
to update the backend where necessary with a specific log object.
:param context: current running context information
:param log_obj: a log object being updated
"""
@abc.abstractmethod
def update_log_precommit(self, context, log_obj):
"""Update a log_obj precommit.
This method can be implemented by the specific driver subclass
to handle update precommit event of a log_object that is being updated.
:param context: current running context information
:param log_obj: a log_object being updated.
"""
@abc.abstractmethod
def delete_log(self, context, log_obj):
"""Delete a log_obj invocation.
This method can be implemented by the specific driver subclass
to delete the backend where necessary with a specific log object.
:param context: current running context information
:param log_obj: a log_object being deleted
"""
@abc.abstractmethod
def delete_log_precommit(self, context, log_obj):
"""Delete a log_obj precommit.
This method can be implemented by the specific driver subclass
to handle delete precommit event of a log_object that is being deleted.
:param context: current running context information
:param log_obj: a log_object being deleted
"""