Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/GetLaunchers200Response.md
2025-08-14 17:03:25 +00:00

1.9 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
v2024-get-launchers200-response GetLaunchers200Response GetLaunchers200Response GetLaunchers200Response pythonsdk
python
Python
sdk
GetLaunchers200Response
V2024GetLaunchers200Response
/tools/sdk/python/v2024/models/get-launchers200-response
SDK
Software Development Kit
GetLaunchers200Response
V2024GetLaunchers200Response

GetLaunchers200Response

Properties

Name Type Description Notes
next str Pagination marker [optional]
items []Launcher [optional]
}

Example

from sailpoint.v2024.models.get_launchers200_response import GetLaunchers200Response

get_launchers200_response = GetLaunchers200Response(
next='',
items=[
                    sailpoint.v2024.models.launcher.Launcher(
                        id = '1b630bed-0941-4792-a712-57a5868ca34d', 
                        created = '2024-04-16T20:07:30.601016489Z', 
                        modified = '2024-04-17T18:02:07.320143194Z', 
                        owner = sailpoint.v2024.models.launcher_owner.Launcher_owner(
                            type = 'IDENTITY', 
                            id = '123180847373330f0173c7e1756b6890', ), 
                        name = 'Group Create', 
                        description = 'Create a new Active Directory Group', 
                        type = 'INTERACTIVE_PROCESS', 
                        disabled = False, 
                        reference = sailpoint.v2024.models.launcher_reference.Launcher_reference(
                            type = 'WORKFLOW', 
                            id = '2fd6ff94-2081-4d29-acbc-83a0a2f744a5', ), 
                        config = '{"workflowId" : "6b42d9be-61b6-46af-827e-ea29ba8aa3d9"}', )
                    ]
)

[Back to top]