adding v3 docs back in

This commit is contained in:
darrell-thobe-sp
2025-01-23 20:41:57 -05:00
parent f36c734ca4
commit 7194b934e8
658 changed files with 47533 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
---
id: saved-search-name
title: SavedSearchName
pagination_label: SavedSearchName
sidebar_label: SavedSearchName
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'SavedSearchName']
slug: /tools/sdk/powershell/v3/models/saved-search-name
tags: ['SDK', 'Software Development Kit', 'SavedSearchName']
---
# SavedSearchName
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Name** | Pointer to **String** | The name of the saved search. | [optional]
**Description** | Pointer to **String** | The description of the saved search. | [optional]
## Examples
- Prepare the resource
```powershell
$SavedSearchName = Initialize-PSSailpoint.V3SavedSearchName -Name Disabled accounts `
-Description Disabled accounts
```
- Convert the resource to JSON
```powershell
$SavedSearchName | ConvertTo-JSON
```
[[Back to top]](#)