You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
602 B
23 lines
602 B
# Copyright (C) 2005-2025 Splunk Inc. All Rights Reserved.
|
|
|
|
|
|
from .base_migration_interface import BaseMigrationInterface
|
|
|
|
|
|
class NoopMigrationInterface(BaseMigrationInterface):
|
|
"""
|
|
Interface which does nothing
|
|
"""
|
|
|
|
def _iterator_from_kvstore(self, object_type):
|
|
pass
|
|
|
|
def migration_get(self, object_type, limit=100):
|
|
return None
|
|
|
|
def migration_save_single_object_to_kvstore(self, object_type, validation=True, dupname_tag=None, skip_local_failure=False, transaction_id=None):
|
|
pass
|
|
|
|
def migration_delete_kvstore(self, object_type):
|
|
pass
|