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,34 @@
---
id: identities-details-report-arguments
title: IdentitiesDetailsReportArguments
pagination_label: IdentitiesDetailsReportArguments
sidebar_label: IdentitiesDetailsReportArguments
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'IdentitiesDetailsReportArguments', 'IdentitiesDetailsReportArguments']
slug: /tools/sdk/python/v3/models/identities-details-report-arguments
tags: ['SDK', 'Software Development Kit', 'IdentitiesDetailsReportArguments', 'IdentitiesDetailsReportArguments']
---
# IdentitiesDetailsReportArguments
Arguments for Identities Details report (IDENTITIES_DETAILS)
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**correlated_only** | **bool** | Flag to specify if only correlated identities are included in report. | [required][default to False]
}
## Example
```python
from sailpoint.v3.models.identities_details_report_arguments import IdentitiesDetailsReportArguments
identities_details_report_arguments = IdentitiesDetailsReportArguments(
correlated_only=True
)
```
[[Back to top]](#)