mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 04:19:34 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: beta-email-notification-option
|
||||
title: EmailNotificationOption
|
||||
pagination_label: EmailNotificationOption
|
||||
sidebar_label: EmailNotificationOption
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'EmailNotificationOption', 'BetaEmailNotificationOption']
|
||||
slug: /tools/sdk/powershell/beta/models/email-notification-option
|
||||
tags: ['SDK', 'Software Development Kit', 'EmailNotificationOption', 'BetaEmailNotificationOption']
|
||||
---
|
||||
|
||||
|
||||
# EmailNotificationOption
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**NotifyManagers** | Pointer to **Boolean** | If true, then the manager is notified of the lifecycle state change. | [optional] [default to $false]
|
||||
**NotifyAllAdmins** | Pointer to **Boolean** | If true, then all the admins are notified of the lifecycle state change. | [optional] [default to $false]
|
||||
**NotifySpecificUsers** | Pointer to **Boolean** | If true, then the users specified in ""emailAddressList"" below are notified of lifecycle state change. | [optional] [default to $false]
|
||||
**EmailAddressList** | Pointer to **[]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
|
||||
```powershell
|
||||
$EmailNotificationOption = Initialize-PSSailpoint.BetaEmailNotificationOption -NotifyManagers true `
|
||||
-NotifyAllAdmins true `
|
||||
-NotifySpecificUsers true `
|
||||
-EmailAddressList [test@test.com, test2@test.com]
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$EmailNotificationOption | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user