mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: beta-approval-reminder-and-escalation-config
|
||||
title: ApprovalReminderAndEscalationConfig
|
||||
pagination_label: ApprovalReminderAndEscalationConfig
|
||||
sidebar_label: ApprovalReminderAndEscalationConfig
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'ApprovalReminderAndEscalationConfig', 'BetaApprovalReminderAndEscalationConfig']
|
||||
slug: /tools/sdk/powershell/beta/models/approval-reminder-and-escalation-config
|
||||
tags: ['SDK', 'Software Development Kit', 'ApprovalReminderAndEscalationConfig', 'BetaApprovalReminderAndEscalationConfig']
|
||||
---
|
||||
|
||||
|
||||
# ApprovalReminderAndEscalationConfig
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**DaysUntilEscalation** | Pointer to **Int32** | Number of days to wait before the first reminder. If no reminders are configured, then this is the number of days to wait before escalation. | [optional]
|
||||
**DaysBetweenReminders** | Pointer to **Int32** | Number of days to wait between reminder notifications. | [optional]
|
||||
**MaxReminders** | Pointer to **Int32** | Maximum number of reminder notification to send to the reviewer before approval escalation. | [optional]
|
||||
**FallbackApproverRef** | Pointer to [**IdentityReferenceWithNameAndEmail**](identity-reference-with-name-and-email) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$ApprovalReminderAndEscalationConfig = Initialize-PSSailpoint.BetaApprovalReminderAndEscalationConfig -DaysUntilEscalation 0 `
|
||||
-DaysBetweenReminders 0 `
|
||||
-MaxReminders 1 `
|
||||
-FallbackApproverRef null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$ApprovalReminderAndEscalationConfig | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user