karbor/smaug/protection/protection_plugin.py

70 lines
1.8 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.
from oslo_config import cfg
from oslo_log import log as logging
CONF = cfg.CONF
LOG = logging.getLogger(__name__)
class ProtectionData(object):
def __init__(self):
super(ProtectionData, self).__init__()
self.protection_id = None
self.protection_target = None
self.status = None
# TODO(wangliuan)
class ProtectionPlugin(object):
def __init__(self):
super(ProtectionPlugin, self).__init__()
self.protectable_type = None
self.schema = None
# TODO(wangliuan)
def get_supported_resources_types(self):
# TODO(wangliuan)
pass
def get_options_schema(self, resource_type):
# TODO(wangliuan)
pass
def get_saved_info_schema(self, resource_type):
# TODO(wangliuan)
pass
def get_restore_schema(self, resource_type):
# TODO(wangliuan)
pass
def get_saved_info(self, metadata_store, resource):
# TODO(wangliuan)
pass
def get_protection_stats(self, protection_id):
# TODO(wangliuan)
pass
def on_resource_start(self, context):
# TODO(wangliuan)
pass
def on_resource_end(self, context):
# TODO(wangliuan)
pass