Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/AccountsCollectedForAggregationStats.md
2025-05-07 14:37:48 +00:00

1.6 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-accounts-collected-for-aggregation-stats AccountsCollectedForAggregationStats AccountsCollectedForAggregationStats AccountsCollectedForAggregationStats powershellsdk
powershell
PowerShell
sdk
AccountsCollectedForAggregationStats
BetaAccountsCollectedForAggregationStats
/tools/sdk/powershell/beta/models/accounts-collected-for-aggregation-stats
SDK
Software Development Kit
AccountsCollectedForAggregationStats
BetaAccountsCollectedForAggregationStats

AccountsCollectedForAggregationStats

Properties

Name Type Description Notes
Scanned Int32 The number of accounts which were scanned / iterated over. [required]
Unchanged Int32 The number of accounts which existed before, but had no changes. [required]
Changed Int32 The number of accounts which existed before, but had changes. [required]
Added Int32 The number of accounts which are new - have not existed before. [required]
Removed Int32 The number accounts which existed before, but no longer exist (thus getting removed). [required]

Examples

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

[Back to top]