Skip to main content

SearchSchedule

Properties

NameTypeDescriptionNotes
SavedSearchIdStringThe ID of the saved search that will be executed.[required]
CreatedSystem.DateTimeThe date the scheduled search was initially created.[optional] [readonly]
ModifiedSystem.DateTimeThe last date the scheduled search was modified.[optional] [readonly]
ScheduleSchedule2[required]
Recipients[]SearchScheduleRecipientsInnerA list of identities that should receive the scheduled search report via email.[required]
EnabledBooleanIndicates if the scheduled search is enabled.[optional] [default to $false]
EmailEmptyResultsBooleanIndicates if email generation should occur when search returns no results.[optional] [default to $false]
DisplayQueryDetailsBooleanIndicates if the generated email should include the query and search results preview (which could include PII).[optional] [default to $false]

Examples

  • Prepare the resource
$SearchSchedule = Initialize-PSSailpoint.V2024SearchSchedule  -SavedSearchId 554f1511-f0a1-4744-ab14-599514d3e57c `
-Created 2018-06-25T20:22:28.104Z `
-Modified 2018-06-25T20:22:28.104Z `
-Schedule null `
-Recipients null `
-Enabled false `
-EmailEmptyResults false `
-DisplayQueryDetails false
  • Convert the resource to JSON
$SearchSchedule | ConvertTo-JSON

[Back to top]