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.apps.models.sourceappcreatedto import Sourceappcreatedto

sourceappcreatedto = Sourceappcreatedto(
name='my app',
description='the source app for engineers',
match_all_accounts=True,
account_source=sailpoint.apps.models.sourceappcreatedto_account_source.sourceappcreatedto_accountSource(
id = '2c9180827ca885d7017ca8ce28a000eb',
type = 'SOURCE',
name = 'ODS-AD-Source', )
)

[Back to top]