adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: beta-resource-objects-request
title: ResourceObjectsRequest
pagination_label: ResourceObjectsRequest
sidebar_label: ResourceObjectsRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'ResourceObjectsRequest', 'BetaResourceObjectsRequest']
slug: /tools/sdk/powershell/beta/models/resource-objects-request
tags: ['SDK', 'Software Development Kit', 'ResourceObjectsRequest', 'BetaResourceObjectsRequest']
---
# 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]](#)