Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V3/Models/OrphanIdentitiesReportArguments.md
2025-02-20 12:59:19 -05:00

1.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
orphan-identities-report-arguments OrphanIdentitiesReportArguments OrphanIdentitiesReportArguments OrphanIdentitiesReportArguments pythonsdk
python
Python
sdk
OrphanIdentitiesReportArguments
OrphanIdentitiesReportArguments
/tools/sdk/python/v3/models/orphan-identities-report-arguments
SDK
Software Development Kit
OrphanIdentitiesReportArguments
OrphanIdentitiesReportArguments

OrphanIdentitiesReportArguments

Arguments for Orphan Identities report (ORPHAN_IDENTITIES)

Properties

Name Type Description Notes
selected_formats []str Output report file formats. These are formats for calling GET endpoint as query parameter 'fileFormat'. In case report won't have this argument there will be ['CSV', 'PDF'] as default. [optional]
}

Example

from sailpoint.v3.models.orphan_identities_report_arguments import OrphanIdentitiesReportArguments

orphan_identities_report_arguments = OrphanIdentitiesReportArguments(
selected_formats=[CSV]
)

[Back to top]