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: create-workflow-request
title: CreateWorkflowRequest
pagination_label: CreateWorkflowRequest
sidebar_label: CreateWorkflowRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CreateWorkflowRequest', 'CreateWorkflowRequest']
slug: /tools/sdk/powershell/v3/models/create-workflow-request
tags: ['SDK', 'Software Development Kit', 'CreateWorkflowRequest', 'CreateWorkflowRequest']
---
# CreateWorkflowRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | **String** | The name of the workflow | [required]
**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
$CreateWorkflowRequest = Initialize-PSSailpoint.V3CreateWorkflowRequest -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
$CreateWorkflowRequest | ConvertTo-JSON
```
[[Back to top]](#)