Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ResourceObjectsResponse.md
2025-01-28 13:29:29 -05:00

1.5 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
v2024-resource-objects-response ResourceObjectsResponse ResourceObjectsResponse ResourceObjectsResponse powershellsdk
powershell
PowerShell
sdk
ResourceObjectsResponse
V2024ResourceObjectsResponse
/tools/sdk/powershell/v2024/models/resource-objects-response
SDK
Software Development Kit
ResourceObjectsResponse
V2024ResourceObjectsResponse

ResourceObjectsResponse

Properties

Name Type Description Notes
Id Pointer to String ID of the source [optional] [readonly]
Name Pointer to String Name of the source [optional] [readonly]
ObjectCount Pointer to Int32 The number of objects that were fetched by the connector. [optional] [readonly]
ElapsedMillis Pointer to Int32 The number of milliseconds spent on the entire request. [optional] [readonly]
ResourceObjects Pointer to []ResourceObject Fetched objects from the source connector. [optional] [readonly]

Examples

  • Prepare the resource
$ResourceObjectsResponse = Initialize-PSSailpoint.V2024ResourceObjectsResponse  -Id 2c91808568c529c60168cca6f90c1313 `
 -Name ODS-AD-Test [source-999999] `
 -ObjectCount 25 `
 -ElapsedMillis 1055 `
 -ResourceObjects null
  • Convert the resource to JSON
$ResourceObjectsResponse | ConvertTo-JSON

[Back to top]