Skip to main content

EntitlementAccessRequestConfig

Properties

NameTypeDescriptionNotes
ApprovalSchemes[]EntitlementApprovalSchemeOrdered list of approval steps for the access request. Empty when no approval is required.[optional]
RequestCommentRequiredBooleanIf the requester must provide a comment during access request.[optional] [default to $false]
DenialCommentRequiredBooleanIf the reviewer must provide a comment when denying the access request.[optional] [default to $false]

Examples

  • Prepare the resource
$EntitlementAccessRequestConfig = Initialize-PSSailpoint.BetaEntitlementAccessRequestConfig  -ApprovalSchemes null `
-RequestCommentRequired true `
-DenialCommentRequired false
  • Convert the resource to JSON
$EntitlementAccessRequestConfig | ConvertTo-JSON

[Back to top]