mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
1.5 KiB
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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-create-workflow-request | CreateWorkflowRequest | CreateWorkflowRequest | CreateWorkflowRequest | powershellsdk |
|
/tools/sdk/powershell/v2024/models/create-workflow-request |
|
CreateWorkflowRequest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Name | String | The name of the workflow | [required] |
| Owner | WorkflowBodyOwner | [optional] | |
| Description | String | Description of what the workflow accomplishes | [optional] |
| Definition | WorkflowDefinition | [optional] | |
| Enabled | Boolean | Enable or disable the workflow. Workflows cannot be created in an enabled state. | [optional] [default to $false] |
| Trigger | WorkflowTrigger | [optional] |
Examples
- Prepare the resource
$CreateWorkflowRequest = Initialize-V2024CreateWorkflowRequest -Name Send Email `
-Owner null `
-Description Send an email to the identity who's attributes changed. `
-Definition null `
-Enabled false `
-Trigger null
- Convert the resource to JSON
$CreateWorkflowRequest | ConvertTo-JSON