test with just powershell beta docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 20:18:21 -05:00
parent 42436403b2
commit f36c734ca4
1824 changed files with 1 additions and 130758 deletions

View File

@@ -1,39 +0,0 @@
---
id: workflow-trigger
title: WorkflowTrigger
pagination_label: WorkflowTrigger
sidebar_label: WorkflowTrigger
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkflowTrigger']
slug: /tools/sdk/powershell/v3/models/workflow-trigger
tags: ['SDK', 'Software Development Kit', 'WorkflowTrigger']
---
# WorkflowTrigger
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "EVENT", "EXTERNAL", "SCHEDULED", "" ] | The trigger type | [required]
**DisplayName** | Pointer to **String** | | [optional]
**Attributes** | [**WorkflowTriggerAttributes**](workflow-trigger-attributes) | | [required]
## Examples
- Prepare the resource
```powershell
$WorkflowTrigger = Initialize-PSSailpoint.V3WorkflowTrigger -Type EVENT `
-DisplayName null `
-Attributes null
```
- Convert the resource to JSON
```powershell
$WorkflowTrigger | ConvertTo-JSON
```
[[Back to top]](#)