Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/EntitlementAccessRequestConfig.md
2025-05-14 14:14:03 +00:00

1.6 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
beta-entitlement-access-request-config EntitlementAccessRequestConfig EntitlementAccessRequestConfig EntitlementAccessRequestConfig powershellsdk
powershell
PowerShell
sdk
EntitlementAccessRequestConfig
BetaEntitlementAccessRequestConfig
/tools/sdk/powershell/beta/models/entitlement-access-request-config
SDK
Software Development Kit
EntitlementAccessRequestConfig
BetaEntitlementAccessRequestConfig

EntitlementAccessRequestConfig

Properties

Name Type Description Notes
ApprovalSchemes []EntitlementApprovalScheme Ordered list of approval steps for the access request. Empty when no approval is required. [optional]
RequestCommentRequired Boolean If the requester must provide a comment during access request. [optional] [default to $false]
DenialCommentRequired Boolean If the reviewer must provide a comment when denying the access request. [optional] [default to $false]
ReauthorizationRequired Boolean Is Reauthorization Required [optional] [default to $false]

Examples

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

[Back to top]