adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
---
id: v2024-workflow-library-trigger
title: WorkflowLibraryTrigger
pagination_label: WorkflowLibraryTrigger
sidebar_label: WorkflowLibraryTrigger
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkflowLibraryTrigger', 'V2024WorkflowLibraryTrigger']
slug: /tools/sdk/powershell/v2024/models/workflow-library-trigger
tags: ['SDK', 'Software Development Kit', 'WorkflowLibraryTrigger', 'V2024WorkflowLibraryTrigger']
---
# WorkflowLibraryTrigger
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | Trigger ID. This is a static namespaced ID for the trigger. | [optional]
**Type** | Pointer to **Enum** [ "EVENT", "SCHEDULED", "EXTERNAL" ] | Trigger type | [optional]
**Deprecated** | Pointer to **Boolean** | | [optional]
**DeprecatedBy** | Pointer to **System.DateTime** | | [optional]
**IsSimulationEnabled** | Pointer to **Boolean** | | [optional]
**OutputSchema** | Pointer to [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | Example output schema | [optional]
**Name** | Pointer to **String** | Trigger Name | [optional]
**Description** | Pointer to **String** | Trigger Description | [optional]
**IsDynamicSchema** | Pointer to **Boolean** | Determines whether the dynamic output schema is returned in place of the action's output schema. The dynamic schema lists non-static properties, like properties of a workflow form where each form has different fields. These will be provided dynamically based on available form fields. | [optional] [default to $false]
**InputExample** | Pointer to [**SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | Example trigger payload if applicable | [optional]
**FormFields** | Pointer to [**[]WorkflowLibraryFormFields**](workflow-library-form-fields) | One or more inputs that the trigger accepts | [optional]
## Examples
- Prepare the resource
```powershell
$WorkflowLibraryTrigger = Initialize-PSSailpoint.V2024WorkflowLibraryTrigger -Id idn:identity-attributes-changed `
-Type EVENT `
-Deprecated null `
-DeprecatedBy null `
-IsSimulationEnabled null `
-OutputSchema null `
-Name Identity Attributes Changed `
-Description One or more identity attributes changed. `
-IsDynamicSchema false `
-InputExample {changes=[{attribute=department, newValue=marketing, oldValue=sales}, {attribute=manager, newValue={id=ee769173319b41d19ccec6c235423236c, name=mean.guy, type=IDENTITY}, oldValue={id=ee769173319b41d19ccec6c235423237b, name=nice.guy, type=IDENTITY}}, {attribute=email, newValue=john.doe@gmail.com, oldValue=john.doe@hotmail.com}], identity={id=ee769173319b41d19ccec6cea52f237b, name=john.doe, type=IDENTITY}} `
-FormFields []
```
- Convert the resource to JSON
```powershell
$WorkflowLibraryTrigger | ConvertTo-JSON
```
[[Back to top]](#)