mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
1.6 KiB
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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-email-notification-option | EmailNotificationOption | EmailNotificationOption | EmailNotificationOption | powershellsdk |
|
/tools/sdk/powershell/v2024/models/email-notification-option |
|
EmailNotificationOption
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| NotifyManagers | Boolean | If true, then the manager is notified of the lifecycle state change. | [optional] [default to $false] |
| NotifyAllAdmins | Boolean | If true, then all the admins are notified of the lifecycle state change. | [optional] [default to $false] |
| NotifySpecificUsers | Boolean | If true, then the users specified in ""emailAddressList"" below are notified of lifecycle state change. | [optional] [default to $false] |
| EmailAddressList | []String | List of user email addresses. If ""notifySpecificUsers"" option is true, then these users are notified of lifecycle state change. | [optional] |
Examples
- Prepare the resource
$EmailNotificationOption = Initialize-PSSailpoint.V2024EmailNotificationOption -NotifyManagers true `
-NotifyAllAdmins true `
-NotifySpecificUsers true `
-EmailAddressList [test@test.com, test2@test.com]
- Convert the resource to JSON
$EmailNotificationOption | ConvertTo-JSON