add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

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