Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/CreateWorkflowRequest.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05: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
create-workflow-request CreateWorkflowRequest CreateWorkflowRequest CreateWorkflowRequest powershellsdk
powershell
PowerShell
sdk
CreateWorkflowRequest
/tools/sdk/powershell/beta/models/create-workflow-request
SDK
Software Development Kit
CreateWorkflowRequest

CreateWorkflowRequest

Properties

Name Type Description Notes
Name String The name of the workflow [required]
Owner WorkflowBodyOwner [required]
Description Pointer to String Description of what the workflow accomplishes [optional]
Definition Pointer to WorkflowDefinition [optional]
Enabled Pointer to Boolean Enable or disable the workflow. Workflows cannot be created in an enabled state. [optional] [default to $false]
Trigger Pointer to WorkflowTrigger [optional]

Examples

  • Prepare the resource
$CreateWorkflowRequest = Initialize-PSSailpoint.BetaCreateWorkflowRequest  -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

[Back to top]