Skip to main content

SourceAppCreateDto

Properties

NameTypeDescriptionNotes
namestrThe source app name[required]
descriptionstrThe description of the source app[required]
match_all_accountsboolTrue if the source app match all accounts[optional] [default to False]
account_sourceSourceAppCreateDtoAccountSource[required]
}

Example

from sailpoint.v2024.models.source_app_create_dto import SourceAppCreateDto

source_app_create_dto = SourceAppCreateDto(
name='my app',
description='the source app for engineers',
match_all_accounts=True,
account_source=sailpoint.v2024.models.source_app_create_dto_account_source.SourceAppCreateDto_accountSource(
id = '2c9180827ca885d7017ca8ce28a000eb',
type = 'SOURCE',
name = 'ODS-AD-Source', )
)

[Back to top]