update to doc files

This commit is contained in:
darrell-thobe-sp
2025-01-24 14:40:05 -05:00
parent 19e073b551
commit 39d2297259
1001 changed files with 70946 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
---
id: accounts-collected-for-aggregation-stats
title: AccountsCollectedForAggregationStats
pagination_label: AccountsCollectedForAggregationStats
sidebar_label: AccountsCollectedForAggregationStats
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccountsCollectedForAggregationStats']
slug: /tools/sdk/powershell/beta/models/accounts-collected-for-aggregation-stats
tags: ['SDK', 'Software Development Kit', 'AccountsCollectedForAggregationStats']
---
# 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
```powershell
$AccountsCollectedForAggregationStats = Initialize-PSSailpoint.BetaAccountsCollectedForAggregationStats -Scanned 200 `
-Unchanged 190 `
-Changed 6 `
-Added 4 `
-Removed 3
```
- Convert the resource to JSON
```powershell
$AccountsCollectedForAggregationStats | ConvertTo-JSON
```
[[Back to top]](#)