mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
1.6 KiB
1.6 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-execution-event | WorkflowExecutionEvent | WorkflowExecutionEvent | WorkflowExecutionEvent | powershellsdk |
|
/tools/sdk/powershell/beta/models/workflow-execution-event |
|
WorkflowExecutionEvent
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| Type | Enum [ "WorkflowExecutionScheduled", "WorkflowExecutionStarted", "WorkflowExecutionCompleted", "WorkflowExecutionFailed", "WorkflowTaskScheduled", "WorkflowTaskStarted", "WorkflowTaskCompleted", "WorkflowTaskFailed", "ActivityTaskScheduled", "ActivityTaskStarted", "ActivityTaskCompleted", "ActivityTaskFailed" ] | The type of event | [optional] |
| Timestamp | System.DateTime | The date-time when the event occurred | [optional] |
| Attributes | [SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | Additional attributes associated with the event | [optional] |
Examples
- Prepare the resource
$WorkflowExecutionEvent = Initialize-BetaWorkflowExecutionEvent -Type WorkflowTaskScheduled `
-Timestamp 2022-02-07T20:13:31.640618296Z `
-Attributes {}
- Convert the resource to JSON
$WorkflowExecutionEvent | ConvertTo-JSON