Skip to main content

AccountsCollectedForAggregationStats

Properties

NameTypeDescriptionNotes
ScannedInt32The number of accounts which were scanned / iterated over.[required]
UnchangedInt32The number of accounts which existed before, but had no changes.[required]
ChangedInt32The number of accounts which existed before, but had changes.[required]
AddedInt32The number of accounts which are new - have not existed before.[required]
RemovedInt32The number accounts which existed before, but no longer exist (thus getting removed).[required]

Examples

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

[Back to top]