mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
Update python SDK docs: 16971661330
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: v2024-launcher-request
|
||||
title: LauncherRequest
|
||||
pagination_label: LauncherRequest
|
||||
sidebar_label: LauncherRequest
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'LauncherRequest', 'V2024LauncherRequest']
|
||||
slug: /tools/sdk/python/v2024/models/launcher-request
|
||||
tags: ['SDK', 'Software Development Kit', 'LauncherRequest', 'V2024LauncherRequest']
|
||||
---
|
||||
|
||||
# LauncherRequest
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**name** | **str** | Name of the Launcher, limited to 255 characters | [required]
|
||||
**description** | **str** | Description of the Launcher, limited to 2000 characters | [required]
|
||||
**type** | **Enum** [ 'INTERACTIVE_PROCESS' ] | Launcher type | [required]
|
||||
**disabled** | **bool** | State of the Launcher | [required]
|
||||
**reference** | [**LauncherRequestReference**](launcher-request-reference) | | [optional]
|
||||
**config** | **str** | JSON configuration associated with this Launcher, restricted to a max size of 4KB | [required]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.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.v2024.models.launcher_request_reference.LauncherRequest_reference(
|
||||
type = 'WORKFLOW',
|
||||
id = '2fd6ff94-2081-4d29-acbc-83a0a2f744a5', ),
|
||||
config='{"workflowId" : "6b42d9be-61b6-46af-827e-ea29ba8aa3d9"}'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user