Skip to main content

SourceApp

Properties

NameTypeDescriptionNotes
idstrThe source app id[optional]
cloud_app_idstrThe deprecated source app id[optional]
namestrThe source app name[optional]
createddatetimeTime when the source app was created[optional]
modifieddatetimeTime when the source app was last modified[optional]
enabledboolTrue if the source app is enabled[optional] [default to False]
provision_request_enabledboolTrue if the source app is provision request enabled[optional] [default to False]
descriptionstrThe description of the source app[optional]
match_all_accountsboolTrue if the source app match all accounts[optional] [default to False]
app_center_enabledboolTrue if the source app is shown in the app center[optional] [default to True]
account_sourceSourceAppAccountSource[optional]
ownerBaseReferenceDtoThe 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]