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,45 @@
---
id: workflow-body
title: WorkflowBody
pagination_label: WorkflowBody
sidebar_label: WorkflowBody
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'WorkflowBody', 'WorkflowBody']
slug: /tools/sdk/powershell/v3/models/workflow-body
tags: ['SDK', 'Software Development Kit', 'WorkflowBody', 'WorkflowBody']
---
# WorkflowBody
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | Pointer to **String** | The name of the workflow | [optional]
**Owner** | Pointer to [**WorkflowBodyOwner**](workflow-body-owner) | | [optional]
**Description** | Pointer to **String** | Description of what the workflow accomplishes | [optional]
**Definition** | Pointer to [**WorkflowDefinition**](workflow-definition) | | [optional]
**Enabled** | Pointer to **Boolean** | Enable or disable the workflow. Workflows cannot be created in an enabled state. | [optional] [default to $false]
**Trigger** | Pointer to [**WorkflowTrigger**](workflow-trigger) | | [optional]
## Examples
- Prepare the resource
```powershell
$WorkflowBody = Initialize-PSSailpoint.V3WorkflowBody -Name Send Email `
-Owner null `
-Description Send an email to the identity who's attributes changed. `
-Definition null `
-Enabled false `
-Trigger null
```
- Convert the resource to JSON
```powershell
$WorkflowBody | ConvertTo-JSON
```
[[Back to top]](#)