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

2.5 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-source-app SourceApp SourceApp SourceApp pythonsdk
python
Python
sdk
SourceApp
V2024SourceApp
/tools/sdk/python/v2024/models/source-app
SDK
Software Development Kit
SourceApp
V2024SourceApp

SourceApp

Properties

Name Type Description Notes
id str The source app id [optional]
cloud_app_id str The deprecated source app id [optional]
name str The source app name [optional]
created datetime Time when the source app was created [optional]
modified datetime Time when the source app was last modified [optional]
enabled bool True if the source app is enabled [optional] [default to False]
provision_request_enabled bool True if the source app is provision request enabled [optional] [default to False]
description str The description of the source app [optional]
match_all_accounts bool True if the source app match all accounts [optional] [default to False]
app_center_enabled bool True if the source app is shown in the app center [optional] [default to True]
account_source SourceAppAccountSource [optional]
owner BaseReferenceDto The owner of source app [optional]
}

Example

from sailpoint.v2024.models.source_app import SourceApp

source_app = SourceApp(
id='2c91808874ff91550175097daaec161c',
cloud_app_id='9854520',
name='my app',
created='2020-10-08T18:33:52.029Z',
modified='2020-10-08T18:33:52.029Z',
enabled=True,
provision_request_enabled=True,
description='the source app for engineers',
match_all_accounts=True,
app_center_enabled=True,
account_source=sailpoint.v2024.models.source_app_account_source.SourceApp_accountSource(
                    id = '2c9180827ca885d7017ca8ce28a000eb', 
                    type = 'SOURCE', 
                    name = 'ODS-AD-Source', 
                    use_for_password_management = False, 
                    password_policies = [{type=PASSWORD_POLICY, id=006a072ecc6647f68bba9f4a4ad34649, name=Password Policy 1}], ),
owner=sailpoint.v2024.models.base_reference_dto.BaseReferenceDto(
                    type = 'IDENTITY', 
                    id = '2c91808568c529c60168cca6f90c1313', 
                    name = 'William Wilson', )
)

[Back to top]