Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/AccessConstraint.md
2025-05-07 14:37:48 +00: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
v2024-access-constraint AccessConstraint AccessConstraint AccessConstraint powershellsdk
powershell
PowerShell
sdk
AccessConstraint
V2024AccessConstraint
/tools/sdk/powershell/v2024/models/access-constraint
SDK
Software Development Kit
AccessConstraint
V2024AccessConstraint

AccessConstraint

Properties

Name Type Description Notes
Type Enum [ "ENTITLEMENT", "ACCESS_PROFILE", "ROLE" ] Type of Access [required]
Ids []String 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]

Examples

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

[Back to top]