Skip to main content

ResourceObjectsResponse

Properties

NameTypeDescriptionNotes
IdStringID of the source[optional] [readonly]
NameStringName of the source[optional] [readonly]
ObjectCountInt32The number of objects that were fetched by the connector.[optional] [readonly]
ElapsedMillisInt32The number of milliseconds spent on the entire request.[optional] [readonly]
ResourceObjects[]ResourceObjectFetched objects from the source connector.[optional] [readonly]

Examples

  • Prepare the resource
$ResourceObjectsResponse = Initialize-PSSailpoint.BetaResourceObjectsResponse  -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]