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.
20 lines
651 B
20 lines
651 B
# Copyright (C) 2005-2024 Splunk Inc. All Rights Reserved.
|
|
|
|
from ITOA.itoa_object import ItoaObject
|
|
|
|
|
|
class ItsiMigration(ItoaObject):
|
|
'''
|
|
Implements ITSI Migration
|
|
'''
|
|
|
|
log_prefix = '[ITSI Migration] '
|
|
collection_name = 'itsi_migration'
|
|
|
|
def __init__(self, session_key, current_user_name):
|
|
super(ItsiMigration, self).__init__(session_key,
|
|
current_user_name,
|
|
'migration',
|
|
collection_name=self.collection_name,
|
|
title_validation_required=False)
|