Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/AccessRequestConfig.md
2025-05-07 14:37:48 +00:00

2.0 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-access-request-config AccessRequestConfig AccessRequestConfig AccessRequestConfig powershellsdk
powershell
PowerShell
sdk
AccessRequestConfig
BetaAccessRequestConfig
/tools/sdk/powershell/beta/models/access-request-config
SDK
Software Development Kit
AccessRequestConfig
BetaAccessRequestConfig

AccessRequestConfig

Properties

Name Type Description Notes
ApprovalsMustBeExternal Boolean If this is true, approvals must be processed by an external system. Also, if this is true, it blocks Request Center access requests and returns an error for any user who isn't an org admin. [optional] [default to $false]
AutoApprovalEnabled Boolean If this is true and the requester and reviewer are the same, the request is automatically approved. [optional] [default to $false]
ReauthorizationEnabled Boolean If this is true, reauthorization will be enforced for appropriately configured access items. Enablement of this feature is currently in a limited state. [optional] [default to $false]
RequestOnBehalfOfConfig RequestOnBehalfOfConfig [optional]
ApprovalReminderAndEscalationConfig ApprovalReminderAndEscalationConfig [optional]
EntitlementRequestConfig EntitlementRequestConfig1 [optional]

Examples

  • Prepare the resource
$AccessRequestConfig = Initialize-BetaAccessRequestConfig  -ApprovalsMustBeExternal true `
 -AutoApprovalEnabled true `
 -ReauthorizationEnabled true `
 -RequestOnBehalfOfConfig null `
 -ApprovalReminderAndEscalationConfig null `
 -EntitlementRequestConfig null
  • Convert the resource to JSON
$AccessRequestConfig | ConvertTo-JSON

[Back to top]