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,53 @@
---
id: v2025-saved-search-complete-search-results
title: SavedSearchCompleteSearchResults
pagination_label: SavedSearchCompleteSearchResults
sidebar_label: SavedSearchCompleteSearchResults
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SavedSearchCompleteSearchResults', 'V2025SavedSearchCompleteSearchResults']
slug: /tools/sdk/python/v2025/models/saved-search-complete-search-results
tags: ['SDK', 'Software Development Kit', 'SavedSearchCompleteSearchResults', 'V2025SavedSearchCompleteSearchResults']
---
# SavedSearchCompleteSearchResults
A preview of the search results for each object type. This includes a count as well as headers, and the first several rows of data, per object type.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**account** | [**SavedSearchCompleteSearchResultsAccount**](saved-search-complete-search-results-account) | | [optional]
**entitlement** | [**SavedSearchCompleteSearchResultsEntitlement**](saved-search-complete-search-results-entitlement) | | [optional]
**identity** | [**SavedSearchCompleteSearchResultsIdentity**](saved-search-complete-search-results-identity) | | [optional]
}
## Example
```python
from sailpoint.v2025.models.saved_search_complete_search_results import SavedSearchCompleteSearchResults
saved_search_complete_search_results = SavedSearchCompleteSearchResults(
account=sailpoint.v2025.models.saved_search_complete_search_results_account.SavedSearchComplete_searchResults_Account(
count = '3',
noun = 'accounts',
preview = [
[]
], ),
entitlement=sailpoint.v2025.models.saved_search_complete_search_results_entitlement.SavedSearchComplete_searchResults_Entitlement(
count = '2',
noun = 'entitlements',
preview = [
[]
], ),
identity=sailpoint.v2025.models.saved_search_complete_search_results_identity.SavedSearchComplete_searchResults_Identity(
count = '2',
noun = 'identities',
preview = [
[]
], )
)
```
[[Back to top]](#)