Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/ApprovalConfigEscalationConfig.md
2025-07-30 20:42:10 +00:00

1.5 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
v2025-approval-config-escalation-config ApprovalConfigEscalationConfig ApprovalConfigEscalationConfig ApprovalConfigEscalationConfig powershellsdk
powershell
PowerShell
sdk
ApprovalConfigEscalationConfig
V2025ApprovalConfigEscalationConfig
/tools/sdk/powershell/v2025/models/approval-config-escalation-config
SDK
Software Development Kit
ApprovalConfigEscalationConfig
V2025ApprovalConfigEscalationConfig

ApprovalConfigEscalationConfig

Properties

Name Type Description Notes
Enabled Boolean Indicates if escalations are enabled. [optional] [default to $false]
DaysUntilFirstEscalation Int64 Number of days until the first escalation. [optional]
EscalationCronSchedule String Cron schedule for escalations. [optional]
EscalationChain []ApprovalConfigEscalationConfigEscalationChainInner Escalation chain configuration. [optional]

Examples

  • Prepare the resource
$ApprovalConfigEscalationConfig = Initialize-V2025ApprovalConfigEscalationConfig  -Enabled true `
 -DaysUntilFirstEscalation 2 `
 -EscalationCronSchedule */5 * * * * `
 -EscalationChain null
  • Convert the resource to JSON
$ApprovalConfigEscalationConfig | ConvertTo-JSON

[Back to top]