Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/SearchArguments.md
2025-04-01 09:23:12 -04:00

1.4 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
v2025-search-arguments SearchArguments SearchArguments SearchArguments pythonsdk
python
Python
sdk
SearchArguments
V2025SearchArguments
/tools/sdk/python/v2025/models/search-arguments
SDK
Software Development Kit
SearchArguments
V2025SearchArguments

SearchArguments

Properties

Name Type Description Notes
schedule_id str The ID of the scheduled search that triggered the saved search execution. [optional]
owner TypedReference The owner of the scheduled search being tested. [optional]
recipients []TypedReference The email recipients of the scheduled search being tested. [optional]
}

Example

from sailpoint.v2025.models.search_arguments import SearchArguments

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

[Back to top]