adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
---
id: v2024-workflow-execution
title: WorkflowExecution
pagination_label: WorkflowExecution
sidebar_label: WorkflowExecution
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkflowExecution']
slug: /tools/sdk/powershell/v2024/models/workflow-execution
tags: ['SDK', 'Software Development Kit', 'WorkflowExecution']
---
# WorkflowExecution
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | Workflow execution ID. | [optional]
**WorkflowId** | Pointer to **String** | Workflow ID. | [optional]
**RequestId** | Pointer to **String** | Backend ID that tracks a workflow request in the system. Provide this ID in a customer support ticket for debugging purposes. | [optional]
**StartTime** | Pointer to **System.DateTime** | Date/time when the workflow started. | [optional]
**CloseTime** | Pointer to **System.DateTime** | Date/time when the workflow ended. | [optional]
**Status** | Pointer to **Enum** [ "Completed", "Failed", "Canceled", "Executing" ] | Workflow execution status. | [optional]
## Examples
- Prepare the resource
```powershell
$WorkflowExecution = Initialize-PSSailpoint.V2024WorkflowExecution -Id b393f4e2-4785-4d7f-ab27-3a6b8ded4c81 `
-WorkflowId d201c5d9-d37b-4a2f-af14-66414f39d568 `
-RequestId 41e12a74fa7b4a6a98ae47887b64acdb `
-StartTime 2022-02-07T20:13:29.356648026Z `
-CloseTime 2022-02-07T20:13:31.682410165Z `
-Status Completed
```
- Convert the resource to JSON
```powershell
$WorkflowExecution | ConvertTo-JSON
```
[[Back to top]](#)