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

2.4 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 AccountsCollectedForAggregation AccountsCollectedForAggregation AccountsCollectedForAggregation pythonsdk
python
Python
sdk
AccountsCollectedForAggregation
V2024AccountsCollectedForAggregation
/tools/sdk/python/v2024/models/accounts-collected-for-aggregation
SDK
Software Development Kit
AccountsCollectedForAggregation
V2024AccountsCollectedForAggregation

AccountsCollectedForAggregation

Properties

Name Type Description Notes
source AccountsCollectedForAggregationSource [required]
status Enum [ 'Success', 'Failed', 'Terminated' ] The overall status of the collection. [required]
started datetime The date and time when the account collection started. [required]
completed datetime The date and time when the account collection finished. [required]
errors []str A list of errors that occurred during the collection. [required]
warnings []str A list of warnings that occurred during the collection. [required]
stats AccountsCollectedForAggregationStats [required]
}

Example

from sailpoint.v2024.models.accounts_collected_for_aggregation import AccountsCollectedForAggregation

accounts_collected_for_aggregation = AccountsCollectedForAggregation(
source=sailpoint.v2024.models.accounts_collected_for_aggregation_source.AccountsCollectedForAggregation_source(
                    id = '4e4d982dddff4267ab12f0f1e72b5a6d', 
                    type = 'SOURCE', 
                    name = 'Corporate Active Directory', ),
status=Success,
started='2020-06-29T22:01:50.474Z',
completed='2020-06-29T22:02:04.090Z',
errors=[
                    'Unable to collect accounts for aggregation.'
                    ],
warnings=[
                    'Account Skipped'
                    ],
stats=sailpoint.v2024.models.accounts_collected_for_aggregation_stats.AccountsCollectedForAggregation_stats(
                    scanned = 200, 
                    unchanged = 190, 
                    changed = 6, 
                    added = 4, 
                    removed = 3, )
)

[Back to top]