Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/Workflow.md
2025-01-28 13:29:29 -05:00

2.3 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
beta-workflow Workflow Workflow Workflow powershellsdk
powershell
PowerShell
sdk
Workflow
BetaWorkflow
/tools/sdk/powershell/beta/models/workflow
SDK
Software Development Kit
Workflow
BetaWorkflow

Workflow

Properties

Name Type Description Notes
Name Pointer to String The name of the workflow [optional]
Owner Pointer to WorkflowBodyOwner [optional]
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]
Id Pointer to String Workflow ID. This is a UUID generated upon creation. [optional]
Modified Pointer to System.DateTime The date and time the workflow was modified. [optional]
ModifiedBy Pointer to WorkflowModifiedBy [optional]
ExecutionCount Pointer to Int32 The number of times this workflow has been executed. [optional]
FailureCount Pointer to Int32 The number of times this workflow has failed during execution. [optional]
Created Pointer to System.DateTime The date and time the workflow was created. [optional]
Creator Pointer to WorkflowAllOfCreator [optional]

Examples

  • Prepare the resource
$Workflow = Initialize-PSSailpoint.BetaWorkflow  -Name Send Email `
 -Owner null `
 -Description Send an email to the identity who's attributes changed. `
 -Definition null `
 -Enabled false `
 -Trigger null `
 -Id d201c5e9-d37b-4aff-af14-66414f39d569 `
 -Modified 2023-12-05T15:18:27.699132301Z `
 -ModifiedBy null `
 -ExecutionCount 2 `
 -FailureCount 0 `
 -Created 2022-01-10T16:06:16.636381447Z `
 -Creator null
  • Convert the resource to JSON
$Workflow | ConvertTo-JSON

[Back to top]