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

1.3 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
v2024-role-mining-potential-role-export-request RoleMiningPotentialRoleExportRequest RoleMiningPotentialRoleExportRequest RoleMiningPotentialRoleExportRequest pythonsdk
python
Python
sdk
RoleMiningPotentialRoleExportRequest
V2024RoleMiningPotentialRoleExportRequest
/tools/sdk/python/v2024/models/role-mining-potential-role-export-request
SDK
Software Development Kit
RoleMiningPotentialRoleExportRequest
V2024RoleMiningPotentialRoleExportRequest

RoleMiningPotentialRoleExportRequest

Properties

Name Type Description Notes
min_entitlement_popularity int The minimum popularity among identities in the role which an entitlement must have to be included in the report [optional]
include_common_access bool If false, do not include entitlements that are highly popular among the entire orginization [optional]
}

Example

from sailpoint.v2024.models.role_mining_potential_role_export_request import RoleMiningPotentialRoleExportRequest

role_mining_potential_role_export_request = RoleMiningPotentialRoleExportRequest(
min_entitlement_popularity=0,
include_common_access=True
)

[Back to top]