Skip to main content

LauncherRequest

Properties

NameTypeDescriptionNotes
NameStringName of the Launcher, limited to 255 characters[required]
DescriptionStringDescription of the Launcher, limited to 2000 characters[required]
TypeEnum [ "INTERACTIVE_PROCESS" ]Launcher type[required]
DisabledBooleanState of the Launcher[required]
ReferenceLauncherRequestReference[optional]
ConfigStringJSON 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]