Skip to main content

Permissioncollectorsettings

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]
analyze_unique_permissionsboolIndicates whether unique permissions should be analyzed for resources.[optional] [default to False]
calculate_effective_permissionsboolIndicates whether effective permissions should be calculated.[optional] [default to False]
calculate_riskiest_permissionsboolIndicates whether riskiest permissions should be calculated.[optional] [default to False]
effective_permissions_sourcestrSource for effective permissions calculation.[optional]
}

Example

from sailpoint.data_access_security.models.permissioncollectorsettings import Permissioncollectorsettings

permissioncollectorsettings = Permissioncollectorsettings(
is_enabled=True,
cluster_id='cluster-001',
analyze_unique_permissions=True,
calculate_effective_permissions=True,
calculate_riskiest_permissions=False,
effective_permissions_source='S3'
)

[Back to top]