Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/LauncherOwner.md
2025-02-20 12:59:19 -05:00

793 B

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-owner LauncherOwner LauncherOwner LauncherOwner pythonsdk
python
Python
sdk
LauncherOwner
BetaLauncherOwner
/tools/sdk/python/beta/models/launcher-owner
SDK
Software Development Kit
LauncherOwner
BetaLauncherOwner

LauncherOwner

Owner of the Launcher

Properties

Name Type Description Notes
type str Owner type [required]
id str Owner ID [required]
}

Example

from sailpoint.beta.models.launcher_owner import LauncherOwner

launcher_owner = LauncherOwner(
type='IDENTITY',
id='123180847373330f0173c7e1756b6890'
)

[Back to top]