Skip to main content

AccountAggregationCompletedStats

Overall statistics about the account aggregation.

Properties

NameTypeDescriptionNotes
scannedintNumber of accounts scanned/iterated over.[required]
unchangedintNumber of accounts that existed before but had no changes.[required]
changedintNumber of accounts that existed before but had changes.[required]
addedintNumber of accounts that are new and didn't previously exist.[required]
removedintNumber accounts that existed before but were removed and no longer exist.[required]
}

Example

from sailpoint.beta.models.account_aggregation_completed_stats import AccountAggregationCompletedStats

account_aggregation_completed_stats = AccountAggregationCompletedStats(
scanned=200,
unchanged=190,
changed=6,
added=4,
removed=3
)

[Back to top]