Skip to main content

AccountAggregationCompletedStats

Properties

NameTypeDescriptionNotes
ScannedInt32Number of accounts scanned/iterated over.[required]
UnchangedInt32Number of accounts that existed before but had no changes.[required]
ChangedInt32Number of accounts that existed before but had changes.[required]
AddedInt32Number of accounts that are new and didn't previously exist.[required]
RemovedInt32Number accounts that existed before but were removed and no longer exist.[required]

Examples

  • Prepare the resource
$AccountAggregationCompletedStats = Initialize-PSSailpoint.BetaAccountAggregationCompletedStats  -Scanned 200 `
-Unchanged 190 `
-Changed 6 `
-Added 4 `
-Removed 3
  • Convert the resource to JSON
$AccountAggregationCompletedStats | ConvertTo-JSON

[Back to top]