only beta

This commit is contained in:
darrell-thobe-sp
2025-01-28 08:57:33 -05:00
parent fb685431b3
commit ca4e98517f
444 changed files with 0 additions and 18963 deletions

View File

@@ -1,39 +0,0 @@
---
id: v2024-search-arguments
title: SearchArguments
pagination_label: SearchArguments
sidebar_label: SearchArguments
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SearchArguments']
slug: /tools/sdk/powershell/v2024/models/search-arguments
tags: ['SDK', 'Software Development Kit', 'SearchArguments']
---
# SearchArguments
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ScheduleId** | Pointer to **String** | The ID of the scheduled search that triggered the saved search execution. | [optional]
**Owner** | Pointer to [**TypedReference**](typed-reference) | The owner of the scheduled search being tested. | [optional]
**Recipients** | Pointer to [**[]TypedReference**](typed-reference) | The email recipients of the scheduled search being tested. | [optional]
## Examples
- Prepare the resource
```powershell
$SearchArguments = Initialize-PSSailpoint.V2024SearchArguments -ScheduleId 7a724640-0c17-4ce9-a8c3-4a89738459c8 `
-Owner null `
-Recipients null
```
- Convert the resource to JSON
```powershell
$SearchArguments | ConvertTo-JSON
```
[[Back to top]](#)