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,36 @@
---
id: v2024-report-details
title: ReportDetails
pagination_label: ReportDetails
sidebar_label: ReportDetails
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'ReportDetails', 'V2024ReportDetails']
slug: /tools/sdk/python/v2024/models/report-details
tags: ['SDK', 'Software Development Kit', 'ReportDetails', 'V2024ReportDetails']
---
# ReportDetails
Details about report to be processed.
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**report_type** | **Enum** [ 'ACCOUNTS', 'IDENTITIES_DETAILS', 'IDENTITIES', 'IDENTITY_PROFILE_IDENTITY_ERROR', 'ORPHAN_IDENTITIES', 'SEARCH_EXPORT', 'UNCORRELATED_ACCOUNTS' ] | Use this property to define what report should be processed in the RDE service. | [optional]
**arguments** | [**ReportDetailsArguments**](report-details-arguments) | | [optional]
}
## Example
```python
from sailpoint.v2024.models.report_details import ReportDetails
report_details = ReportDetails(
report_type='ACCOUNTS',
arguments={application=2c9180897e7742b2017e781782f705b9, sourceName=Active Directory}
)
```
[[Back to top]](#)