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