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.
18 lines
702 B
18 lines
702 B
# Copyright (C) 2005-2025 Splunk Inc. All Rights Reserved.
|
|
|
|
from ITOA.itoa_object import ItoaObject
|
|
|
|
|
|
class ItsiKPIStateCache(ItoaObject):
|
|
log_prefix = '[ITSI KPI State Cache] '
|
|
collection_name = 'itsi_kpi_state_cache'
|
|
|
|
def __init__(self, session_key, current_user_name):
|
|
"""
|
|
@param session_key: The active splunkd session key
|
|
@param current_user_name: The user initializing the objects
|
|
"""
|
|
super(ItsiKPIStateCache, self).__init__(session_key, current_user_name, 'kpi_state_cache',
|
|
collection_name=self.collection_name,
|
|
title_validation_required=False)
|