Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/RoleSummary.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
v2024-role-summary RoleSummary RoleSummary RoleSummary pythonsdk
python
Python
sdk
RoleSummary
V2024RoleSummary
/tools/sdk/python/v2024/models/role-summary
SDK
Software Development Kit
RoleSummary
V2024RoleSummary

RoleSummary

Role

Properties

Name Type Description Notes
id str The unique ID of the referenced object. [optional]
name str The human readable name of the referenced object. [optional]
display_name str [optional]
type DtoType [optional]
description str [optional]
owner DisplayReference [optional]
disabled bool [optional]
revocable bool [optional]
}

Example

from sailpoint.v2024.models.role_summary import RoleSummary

role_summary = RoleSummary(
id='2c91808568c529c60168cca6f90c1313',
name='John Doe',
display_name='John Q. Doe',
type='IDENTITY',
description='',
owner=,
disabled=True,
revocable=True
)

[Back to top]