starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,63 @@
---
id: v2024-saved-search-complete
title: SavedSearchComplete
pagination_label: SavedSearchComplete
sidebar_label: SavedSearchComplete
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'SavedSearchComplete', 'V2024SavedSearchComplete']
slug: /tools/sdk/python/v2024/models/saved-search-complete
tags: ['SDK', 'Software Development Kit', 'SavedSearchComplete', 'V2024SavedSearchComplete']
---
# SavedSearchComplete
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**file_name** | **str** | A name for the report file. | [required]
**owner_email** | **str** | The email address of the identity that owns the saved search. | [required]
**owner_name** | **str** | The name of the identity that owns the saved search. | [required]
**query** | **str** | The search query that was used to generate the report. | [required]
**search_name** | **str** | The name of the saved search. | [required]
**search_results** | [**SavedSearchCompleteSearchResults**](saved-search-complete-search-results) | | [required]
**signed_s3_url** | **str** | The Amazon S3 URL to download the report from. | [required]
}
## Example
```python
from sailpoint.v2024.models.saved_search_complete import SavedSearchComplete
saved_search_complete = SavedSearchComplete(
file_name='Modified.zip',
owner_email='test@sailpoint.com',
owner_name='Cloud Support',
query='modified:[now-7y/d TO now]',
search_name='Modified Activity',
search_results=sailpoint.v2024.models.saved_search_complete_search_results.SavedSearchComplete_searchResults(
account = sailpoint.v2024.models.saved_search_complete_search_results_account.SavedSearchComplete_searchResults_Account(
count = '3',
noun = 'accounts',
preview = [
[]
], ),
entitlement = sailpoint.v2024.models.saved_search_complete_search_results_entitlement.SavedSearchComplete_searchResults_Entitlement(
count = '2',
noun = 'entitlements',
preview = [
[]
], ),
identity = sailpoint.v2024.models.saved_search_complete_search_results_identity.SavedSearchComplete_searchResults_Identity(
count = '2',
noun = 'identities',
preview = [
[]
], ), ),
signed_s3_url='https://sptcbu-org-data-useast1.s3.amazonaws.com/arsenal-john/reports/Events%20Export.2020-05-06%2018%2759%20GMT.3e580592-86e4-4953-8aea-49e6ef20a086.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20200506T185919Z&X-Amz-SignedHeaders=host&X-Amz-Expires=899&X-Amz-Credential=AKIAV5E54XOGTS4Q4L7A%2F20200506%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=2e732bb97a12a1fd8a215613e3c31fcdae8ba1fb6a25916843ab5b51d2ddefbc'
)
```
[[Back to top]](#)