Skip to main content

AccountsCollectedForAggregation

Properties

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

Examples

  • Prepare the resource
$AccountsCollectedForAggregation = Initialize-PSSailpoint.BetaAccountsCollectedForAggregation  -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
$AccountsCollectedForAggregation | ConvertTo-JSON

[Back to top]