mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user