adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
---
id: v2024-search-arguments
title: SearchArguments
pagination_label: SearchArguments
sidebar_label: SearchArguments
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SearchArguments', 'V2024SearchArguments']
slug: /tools/sdk/powershell/v2024/models/search-arguments
tags: ['SDK', 'Software Development Kit', 'SearchArguments', 'V2024SearchArguments']
---
# 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]](#)