Skip to main content

AccountsCollectedForAggregationStats

Overall statistics about the account collection.

Properties

NameTypeDescriptionNotes
scannedintThe number of accounts which were scanned / iterated over.[required]
unchangedintThe number of accounts which existed before, but had no changes.[required]
changedintThe number of accounts which existed before, but had changes.[required]
addedintThe number of accounts which are new - have not existed before.[required]
removedintThe number accounts which existed before, but no longer exist (thus getting removed).[required]
}

Example

from sailpoint.beta.models.accounts_collected_for_aggregation_stats import AccountsCollectedForAggregationStats

accounts_collected_for_aggregation_stats = AccountsCollectedForAggregationStats(
scanned=200,
unchanged=190,
changed=6,
added=4,
removed=3
)

[Back to top]