Skip to main content

Activityconfigurationsettings

Properties

NameTypeDescriptionNotes
is_enabledboolIndicates whether the feature or configuration is enabled.[optional] [default to False]
cluster_idstrThe identifier of the cluster associated with this configuration, if applicable.[optional]
retention_time_periodintThe time period for retaining activity logs.[optional]
retention_time_typestrThe type of retention period (e.g., days, months, years).[optional]
exclude_users[]strList of user identifiers to exclude from activity tracking.[optional]
exclude_folders[]strList of folder paths to exclude from activity tracking.[optional]
exclude_file_extensions[]strList of file extensions to exclude from activity tracking.[optional]
exclude_actions[]strList of actions to exclude from activity tracking.[optional]
}

Example

from sailpoint.data_access_security.models.activityconfigurationsettings import Activityconfigurationsettings

activityconfigurationsettings = Activityconfigurationsettings(
is_enabled=True,
cluster_id='cluster-001',
retention_time_period=30,
retention_time_type='days',
exclude_users=["user1","user2"],
exclude_folders=["/tmp","/archive"],
exclude_file_extensions=[".log",".bak"],
exclude_actions=["delete","move"]
)

[Back to top]