mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
Update PowerShell SDK docs: 16967723041
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: v2024-launcher-request
|
||||
title: LauncherRequest
|
||||
pagination_label: LauncherRequest
|
||||
sidebar_label: LauncherRequest
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'LauncherRequest', 'V2024LauncherRequest']
|
||||
slug: /tools/sdk/powershell/v2024/models/launcher-request
|
||||
tags: ['SDK', 'Software Development Kit', 'LauncherRequest', 'V2024LauncherRequest']
|
||||
---
|
||||
|
||||
|
||||
# LauncherRequest
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Name** | **String** | Name of the Launcher, limited to 255 characters | [required]
|
||||
**Description** | **String** | Description of the Launcher, limited to 2000 characters | [required]
|
||||
**Type** | **Enum** [ "INTERACTIVE_PROCESS" ] | Launcher type | [required]
|
||||
**Disabled** | **Boolean** | State of the Launcher | [required]
|
||||
**Reference** | [**LauncherRequestReference**](launcher-request-reference) | | [optional]
|
||||
**Config** | **String** | JSON configuration associated with this Launcher, restricted to a max size of 4KB | [required]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$LauncherRequest = Initialize-V2024LauncherRequest -Name Group Create `
|
||||
-Description Create a new Active Directory Group `
|
||||
-Type INTERACTIVE_PROCESS `
|
||||
-Disabled false `
|
||||
-Reference null `
|
||||
-Config {"workflowId" : "6b42d9be-61b6-46af-827e-ea29ba8aa3d9"}
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$LauncherRequest | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user