Skip to main content

ResourceObjectsRequest

Request model for peek resource objects from source connectors.

Properties

NameTypeDescriptionNotes
object_typestrThe type of resource objects to iterate over.[optional] [default to 'account']
max_countintThe maximum number of resource objects to iterate over and return.[optional] [default to 25]
}

Example

from sailpoint.v2024.models.resource_objects_request import ResourceObjectsRequest

resource_objects_request = ResourceObjectsRequest(
object_type='account',
max_count=100
)

[Back to top]