Update PowerShell SDK docs: 16676082107

This commit is contained in:
developer-relations-sp
2025-08-01 13:18:14 +00:00
parent d579a4697f
commit f0ccc50d12
4 changed files with 106 additions and 1 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2025-workflow-execution-history
title: WorkflowExecutionHistory
pagination_label: WorkflowExecutionHistory
sidebar_label: WorkflowExecutionHistory
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkflowExecutionHistory', 'V2025WorkflowExecutionHistory']
slug: /tools/sdk/powershell/v2025/models/workflow-execution-history
tags: ['SDK', 'Software Development Kit', 'WorkflowExecutionHistory', 'V2025WorkflowExecutionHistory']
---
# WorkflowExecutionHistory
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Definition** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | The workflow definition for the workflow execution | [optional]
**History** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | List of workflow execution events for the given workflow execution | [optional]
**Trigger** | [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | The trigger that initiated the workflow execution | [optional]
## Examples
- Prepare the resource
```powershell
$WorkflowExecutionHistory = Initialize-V2025WorkflowExecutionHistory -Definition null `
-History null `
-Trigger null
```
- Convert the resource to JSON
```powershell
$WorkflowExecutionHistory | ConvertTo-JSON
```
[[Back to top]](#)

View File

@@ -17,7 +17,7 @@ tags: ['SDK', 'Software Development Kit', 'WorkflowTrigger', 'V2025WorkflowTrigg
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "EVENT", "EXTERNAL", "SCHEDULED", "" ] | The trigger type | [required]
**DisplayName** | **String** | | [optional]
**DisplayName** | **String** | The trigger display name | [optional]
**Attributes** | [**WorkflowTriggerAttributes**](workflow-trigger-attributes) | | [required]
## Examples