Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/AccessConstraint.md
2025-04-01 09:23:12 -04:00

1.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-access-constraint AccessConstraint AccessConstraint AccessConstraint pythonsdk
python
Python
sdk
AccessConstraint
V2025AccessConstraint
/tools/sdk/python/v2025/models/access-constraint
SDK
Software Development Kit
AccessConstraint
V2025AccessConstraint

AccessConstraint

Properties

Name Type Description Notes
type Enum [ 'ENTITLEMENT', 'ACCESS_PROFILE', 'ROLE' ] Type of Access [required]
ids []str Must be set only if operator is SELECTED. [optional]
operator Enum [ 'ALL', 'SELECTED' ] Used to determine whether the scope of the campaign should be reduced for selected ids or all. [required]
}

Example

from sailpoint.v2025.models.access_constraint import AccessConstraint

access_constraint = AccessConstraint(
type='ENTITLEMENT',
ids=[2c90ad2a70ace7d50170acf22ca90010],
operator='SELECTED'
)

[Back to top]