Skip to main content

AccountAggregationStatus

Properties

NameTypeDescriptionNotes
StartSystem.DateTimeWhen the aggregation started.[optional]
StatusEnum [ "STARTED", "ACCOUNTS_COLLECTED", "COMPLETED", "CANCELLED", "RETRIED", "TERMINATED" ]STARTED - Aggregation started, but source account iteration has not completed. ACCOUNTS_COLLECTED - Source account iteration completed, but all accounts have not yet been processed. COMPLETED - Aggregation completed (possibly with errors). CANCELLED - Aggregation cancelled by user. RETRIED - Aggregation retried because of connectivity issues with the Virtual Appliance. TERMINATED - Aggregation marked as failed after 3 tries after connectivity issues with the Virtual Appliance.[optional]
TotalAccountsInt32The total number of NEW, CHANGED and DELETED accounts that need to be processed for this aggregation. This does not include accounts that were unchanged since the previous aggregation. This can be zero if there were no new, changed or deleted accounts since the previous aggregation. Only available when status is ACCOUNTS_COLLECTED or COMPLETED.[optional]
ProcessedAccountsInt32The number of NEW, CHANGED and DELETED accounts that have been processed so far. This reflects the number of accounts that have been processed at the time of the API call, and may increase on subsequent API calls while the status is ACCOUNTS_COLLECTED. Only available when status is ACCOUNTS_COLLECTED or COMPLETED.[optional]

Examples

  • Prepare the resource
$AccountAggregationStatus = Initialize-PSSailpoint.V2024AccountAggregationStatus  -Start 2021-01-31T14:30:05.104Z `
-Status ACCOUNTS_COLLECTED `
-TotalAccounts 520 `
-ProcessedAccounts 150
  • Convert the resource to JSON
$AccountAggregationStatus | ConvertTo-JSON

[Back to top]