Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/AccountsCollectedForAggregationStats.md
2025-02-20 12:59:19 -05:00

1.6 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-accounts-collected-for-aggregation-stats AccountsCollectedForAggregationStats AccountsCollectedForAggregationStats AccountsCollectedForAggregationStats pythonsdk
python
Python
sdk
AccountsCollectedForAggregationStats
V2024AccountsCollectedForAggregationStats
/tools/sdk/python/v2024/models/accounts-collected-for-aggregation-stats
SDK
Software Development Kit
AccountsCollectedForAggregationStats
V2024AccountsCollectedForAggregationStats

AccountsCollectedForAggregationStats

Overall statistics about the account collection.

Properties

Name Type Description Notes
scanned int The number of accounts which were scanned / iterated over. [required]
unchanged int The number of accounts which existed before, but had no changes. [required]
changed int The number of accounts which existed before, but had changes. [required]
added int The number of accounts which are new - have not existed before. [required]
removed int The number accounts which existed before, but no longer exist (thus getting removed). [required]
}

Example

from sailpoint.v2024.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]