Skip to main content

AccessConstraint

Properties

NameTypeDescriptionNotes
TypeEnum [ "ENTITLEMENT", "ACCESS_PROFILE", "ROLE" ]Type of Access[required]
Ids[]StringMust 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]

Examples

  • Prepare the resource
$AccessConstraint = Initialize-PSSailpoint.V2024AccessConstraint  -Type ENTITLEMENT `
-Ids [2c90ad2a70ace7d50170acf22ca90010] `
-Operator SELECTED
  • Convert the resource to JSON
$AccessConstraint | ConvertTo-JSON

[Back to top]