Skip to main content

AccountAggregationCompleted

Properties

NameTypeDescriptionNotes
SourceAccountAggregationCompletedSource[required]
StatusEnum [ "Success", "Failed", "Terminated" ]The overall status of the aggregation.[required]
StartedSystem.DateTimeThe date and time when the account aggregation started.[required]
CompletedSystem.DateTimeThe date and time when the account aggregation finished.[required]
Errors[]StringA list of errors that occurred during the aggregation.[required]
Warnings[]StringA list of warnings that occurred during the aggregation.[required]
StatsAccountAggregationCompletedStats[required]

Examples

  • Prepare the resource
$AccountAggregationCompleted = Initialize-PSSailpoint.V2024AccountAggregationCompleted  -Source null `
-Status Success `
-Started 2020-06-29T22:01:50.474Z `
-Completed 2020-06-29T22:02:04.090Z `
-Errors null `
-Warnings null `
-Stats null
  • Convert the resource to JSON
$AccountAggregationCompleted | ConvertTo-JSON

[Back to top]