Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/WorkflowTrigger.md
2025-02-03 22:09:17 +00:00

1.0 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-workflow-trigger WorkflowTrigger WorkflowTrigger WorkflowTrigger powershellsdk
powershell
PowerShell
sdk
WorkflowTrigger
V2024WorkflowTrigger
/tools/sdk/powershell/v2024/models/workflow-trigger
SDK
Software Development Kit
WorkflowTrigger
V2024WorkflowTrigger

WorkflowTrigger

Properties

Name Type Description Notes
Type Enum [ "EVENT", "EXTERNAL", "SCHEDULED", "" ] The trigger type [required]
DisplayName String [optional]
Attributes WorkflowTriggerAttributes [required]

Examples

  • Prepare the resource
$WorkflowTrigger = Initialize-PSSailpoint.V2024WorkflowTrigger  -Type EVENT `
 -DisplayName null `
 -Attributes null
  • Convert the resource to JSON
$WorkflowTrigger | ConvertTo-JSON

[Back to top]