Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/ResourceObjectsRequest.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
resource-objects-request ResourceObjectsRequest ResourceObjectsRequest ResourceObjectsRequest powershellsdk
powershell
PowerShell
sdk
ResourceObjectsRequest
/tools/sdk/powershell/beta/models/resource-objects-request
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
$ResourceObjectsRequest = Initialize-PSSailpoint.BetaResourceObjectsRequest  -ObjectType group `
 -MaxCount 100
  • Convert the resource to JSON
$ResourceObjectsRequest | ConvertTo-JSON

[Back to top]