adding method and model docs

This commit is contained in:
darrell-thobe-sp
2025-01-23 10:09:40 -05:00
parent 9d6a7b0fda
commit bddfeda20e
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: load-accounts-task-task-attributes
title: LoadAccountsTaskTaskAttributes
pagination_label: LoadAccountsTaskTaskAttributes
sidebar_label: LoadAccountsTaskTaskAttributes
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'LoadAccountsTaskTaskAttributes']
slug: /tools/sdk/powershell/beta/models/load-accounts-task-task-attributes
tags: ['SDK', 'Software Development Kit', 'LoadAccountsTaskTaskAttributes']
---
# LoadAccountsTaskTaskAttributes
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AppId** | Pointer to **String** | The id of the source | [optional]
**OptimizedAggregation** | Pointer to **String** | The indicator if the aggregation process was enabled/disabled for the aggregation job | [optional]
## Examples
- Prepare the resource
```powershell
$LoadAccountsTaskTaskAttributes = Initialize-PSSailpoint.BetaLoadAccountsTaskTaskAttributes -AppId c31386cb18bb403cbb6df4c86294ff82 `
-OptimizedAggregation enabled
```
- Convert the resource to JSON
```powershell
$LoadAccountsTaskTaskAttributes | ConvertTo-JSON
```
[[Back to top]](#)