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,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/beta/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.BetaResourceObjectsRequest -ObjectType group `
-MaxCount 100
```
- Convert the resource to JSON
```powershell
$ResourceObjectsRequest | ConvertTo-JSON
```
[[Back to top]](#)