Skip to main content

Applicationcrawlersettings

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]
calculate_resource_sizeCrawlresourcessizesoptions[optional]
crawl_snapshots_folderboolIndicates whether to crawl the snapshots folder.[optional] [default to False]
crawl_mailboxesboolIndicates whether to crawl mailboxes.[optional] [default to False]
crawl_public_foldersboolIndicates whether to crawl public folders.[optional] [default to False]
excluded_paths_by_regexstrRegular expression pattern for paths to exclude from crawling.[optional]
crawl_top_level_shares[]strList of top-level shares to crawl.[optional]
excluded_resources[]strList of resource identifiers to exclude from crawling.[optional]
include_resources[]strList of resource identifiers to include in crawling.[optional]
}

Example

from sailpoint.data_access_security.models.applicationcrawlersettings import Applicationcrawlersettings

applicationcrawlersettings = Applicationcrawlersettings(
is_enabled=True,
cluster_id='cluster-001',
calculate_resource_size=2,
crawl_snapshots_folder=True,
crawl_mailboxes=False,
crawl_public_folders=True,
excluded_paths_by_regex='^/archive/.*',
crawl_top_level_shares=["share1","share2"],
excluded_resources=["resourceA","resourceB"],
include_resources=["resourceX","resourceY"]
)

[Back to top]