Skip to main content

EntitlementRequestConfig1

Properties

NameTypeDescriptionNotes
AllowEntitlementRequestBooleanIf this is true, entitlement requests are allowed.[optional] [default to $false]
RequestCommentsRequiredBooleanIf this is true, comments are required to submit entitlement requests.[optional] [default to $false]
DeniedCommentsRequiredBooleanIf this is true, comments are required to reject entitlement requests.[optional] [default to $false]
GrantRequestApprovalSchemesStringApproval schemes for granting entitlement request. This can be empty if no approval is needed. Multiple schemes must be comma-separated. The valid schemes are ""entitlementOwner"", ""sourceOwner"", ""manager"" and ""workgroup:{id}"". You can use multiple governance groups (workgroups).[optional] [default to "sourceOwner"]

Examples

  • Prepare the resource
$EntitlementRequestConfig1 = Initialize-PSSailpoint.BetaEntitlementRequestConfig1  -AllowEntitlementRequest true `
-RequestCommentsRequired false `
-DeniedCommentsRequired false `
-GrantRequestApprovalSchemes entitlementOwner, sourceOwner, manager, workgroup:2c918084660f45d6016617daa9210584
  • Convert the resource to JSON
$EntitlementRequestConfig1 | ConvertTo-JSON

[Back to top]