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.sources.models.resourceobjectsrequest import Resourceobjectsrequest

resourceobjectsrequest = Resourceobjectsrequest(
object_type='account',
max_count=100
)

[Back to top]