Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/LauncherRequest.md
2025-02-03 22:09:17 +00:00

1.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-launcher-request LauncherRequest LauncherRequest LauncherRequest powershellsdk
powershell
PowerShell
sdk
LauncherRequest
BetaLauncherRequest
/tools/sdk/powershell/beta/models/launcher-request
SDK
Software Development Kit
LauncherRequest
BetaLauncherRequest

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 [optional]
Config String JSON configuration associated with this Launcher, restricted to a max size of 4KB [required]

Examples

  • Prepare the resource
$LauncherRequest = Initialize-PSSailpoint.BetaLauncherRequest  -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
$LauncherRequest | ConvertTo-JSON

[Back to top]