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.
25 lines
931 B
25 lines
931 B
# Copyright (C) 2005-2025 Splunk Inc. All Rights Reserved.
|
|
|
|
from ITOA.itoa_object import ItoaObject
|
|
|
|
|
|
class ItsiEntityManagementRules(ItoaObject):
|
|
log_prefix = '[ITSI Entity Management Rules]'
|
|
collection_name = 'itsi_entity_management_policies'
|
|
|
|
def __init__(self, session_key, current_user_name):
|
|
super(ItsiEntityManagementRules, self).__init__(session_key, current_user_name,
|
|
object_type='entity_management_rules',
|
|
collection_name=self.collection_name,
|
|
title_validation_required=True,
|
|
is_securable_object=True)
|
|
|
|
def _validate_cron(self, cron):
|
|
pass
|
|
|
|
def _validate_lookBackPeriod(self, lookBackPeriod):
|
|
pass
|
|
|
|
def _validate_titles(self, titles):
|
|
pass
|