Skip to main content

LauncherRequest

Properties

NameTypeDescriptionNotes
namestrName of the Launcher, limited to 255 characters[required]
descriptionstrDescription of the Launcher, limited to 2000 characters[required]
typeEnum [ 'INTERACTIVE_PROCESS' ]Launcher type[required]
disabledboolState of the Launcher[required]
referenceLauncherRequestReference[optional]
configstrJSON configuration associated with this Launcher, restricted to a max size of 4KB[required]
}

Example

from sailpoint.beta.models.launcher_request import LauncherRequest

launcher_request = LauncherRequest(
name='Group Create',
description='Create a new Active Directory Group',
type='INTERACTIVE_PROCESS',
disabled=False,
reference=sailpoint.beta.models.launcher_request_reference.LauncherRequest_reference(
type = 'WORKFLOW',
id = '2fd6ff94-2081-4d29-acbc-83a0a2f744a5', ),
config='{"workflowId" : "6b42d9be-61b6-46af-827e-ea29ba8aa3d9"}'
)

[Back to top]