Skip to main content

AccountAggregationCompleted

Properties

NameTypeDescriptionNotes
sourceAccountAggregationCompletedSource[required]
statusEnum [ 'Success', 'Failed', 'Terminated' ]Aggregation's overall status.[required]
starteddatetimeDate and time when the account aggregation started.[required]
completeddatetimeDate and time when the account aggregation finished.[required]
errors[]strList of errors that occurred during the aggregation.[required]
warnings[]strList of warnings that occurred during the aggregation.[required]
statsAccountAggregationCompletedStats[required]
}

Example

from sailpoint.beta.models.account_aggregation_completed import AccountAggregationCompleted

account_aggregation_completed = AccountAggregationCompleted(
source=sailpoint.beta.models.account_aggregation_completed_source.AccountAggregationCompleted_source(
type = 'SOURCE',
id = '2c9180835d191a86015d28455b4b232a',
name = 'HR Active Directory', ),
status=Success,
started='2020-06-29T22:01:50.474Z',
completed='2020-06-29T22:02:04.090Z',
errors=[
'Accounts unable to be aggregated.'
],
warnings=[
'Account Skipped'
],
stats=sailpoint.beta.models.account_aggregation_completed_stats.AccountAggregationCompleted_stats(
scanned = 200,
unchanged = 190,
changed = 6,
added = 4,
removed = 3, )
)

[Back to top]