adding docs back with new ids

This commit is contained in:
darrell-thobe-sp
2025-01-27 16:01:17 -05:00
parent 90087c5d3f
commit b4a279954e
2823 changed files with 130835 additions and 78 deletions

View File

@@ -0,0 +1,37 @@
---
id: resource-objects-request
title: ResourceObjectsRequest
pagination_label: ResourceObjectsRequest
sidebar_label: ResourceObjectsRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ResourceObjectsRequest']
slug: /tools/sdk/powershell/v2024/models/resource-objects-request
tags: ['SDK', 'Software Development Kit', 'ResourceObjectsRequest']
---
# ResourceObjectsRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ObjectType** | Pointer to **String** | The type of resource objects to iterate over. | [optional] [default to "account"]
**MaxCount** | Pointer to **Int32** | The maximum number of resource objects to iterate over and return. | [optional] [default to 25]
## Examples
- Prepare the resource
```powershell
$ResourceObjectsRequest = Initialize-PSSailpoint.V2024ResourceObjectsRequest -ObjectType group `
-MaxCount 100
```
- Convert the resource to JSON
```powershell
$ResourceObjectsRequest | ConvertTo-JSON
```
[[Back to top]](#)