Skip to main content

SearchArguments

Properties

NameTypeDescriptionNotes
schedule_idstrThe ID of the scheduled search that triggered the saved search execution.[optional]
ownerTypedReferenceThe owner of the scheduled search being tested.[optional]
recipients[]TypedReferenceThe email recipients of the scheduled search being tested.[optional]
}

Example

from sailpoint.v3.models.search_arguments import SearchArguments

search_arguments = SearchArguments(
schedule_id='7a724640-0c17-4ce9-a8c3-4a89738459c8',
owner=sailpoint.v3.models.typed_reference.TypedReference(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313', ),
recipients=[
sailpoint.v3.models.typed_reference.TypedReference(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313', )
]
)

[Back to top]