removing beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 23:30:59 -05:00
parent 7194b934e8
commit befdd82384
999 changed files with 0 additions and 70946 deletions

View File

@@ -1,39 +0,0 @@
---
id: workflow-execution-event
title: WorkflowExecutionEvent
pagination_label: WorkflowExecutionEvent
sidebar_label: WorkflowExecutionEvent
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkflowExecutionEvent']
slug: /tools/sdk/powershell/beta/models/workflow-execution-event
tags: ['SDK', 'Software Development Kit', 'WorkflowExecutionEvent']
---
# WorkflowExecutionEvent
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | Pointer to **Enum** [ "WorkflowExecutionScheduled", "WorkflowExecutionStarted", "WorkflowExecutionCompleted", "WorkflowExecutionFailed", "WorkflowTaskScheduled", "WorkflowTaskStarted", "WorkflowTaskCompleted", "WorkflowTaskFailed", "ActivityTaskScheduled", "ActivityTaskStarted", "ActivityTaskCompleted", "ActivityTaskFailed" ] | The type of event | [optional]
**Timestamp** | Pointer to **System.DateTime** | The date-time when the event occurred | [optional]
**Attributes** | Pointer to [**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
```powershell
$WorkflowExecutionEvent = Initialize-PSSailpoint.BetaWorkflowExecutionEvent -Type WorkflowTaskScheduled `
-Timestamp 2022-02-07T20:13:31.640618296Z `
-Attributes {}
```
- Convert the resource to JSON
```powershell
$WorkflowExecutionEvent | ConvertTo-JSON
```
[[Back to top]](#)