Skip to main content

Accessconstraint

Properties

NameTypeDescriptionNotes
typeEnum [ 'ENTITLEMENT', 'ACCESS_PROFILE', 'ROLE' ]Type of Access[required]
ids[]strMust be set only if operator is SELECTED.[optional]
operatorEnum [ 'ALL', 'SELECTED' ]Used to determine whether the scope of the campaign should be reduced for selected ids or all.[required]
}

Example

from sailpoint.certification_campaigns.models.accessconstraint import Accessconstraint

accessconstraint = Accessconstraint(
type='ENTITLEMENT',
ids=["2c90ad2a70ace7d50170acf22ca90010"],
operator='SELECTED'
)

[Back to top]