Skip to main content

Basesettings

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]
}

Example

from sailpoint.data_access_security.models.basesettings import Basesettings

basesettings = Basesettings(
is_enabled=True,
cluster_id='cluster-001'
)

[Back to top]