# 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)