Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/RightSetDTO.md
2025-07-15 17:25:39 +00:00

2.5 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
v2025-right-set-dto RightSetDTO RightSetDTO RightSetDTO pythonsdk
python
Python
sdk
RightSetDTO
V2025RightSetDTO
/tools/sdk/python/v2025/models/right-set-dto
SDK
Software Development Kit
RightSetDTO
V2025RightSetDTO

RightSetDTO

A RightSetDTO represents a collection of rights that assigned to capability or scope, enabling them to possess specific rights to access corresponding APIs.

Properties

Name Type Description Notes
id str The unique identifier of the RightSet. [optional]
name str The human-readable name of the RightSet. [optional]
description str A human-readable description of the RightSet. [optional]
category str The category of the RightSet. [optional]
rights []str Right is the most granular unit that determines specific API permissions, this is a list of rights associated with the RightSet. [optional]
right_set_ids []str List of unique identifiers for related RightSets, current RightSet contains rights from these RightSets. [optional]
ui_assignable_child_right_set_ids []str List of unique identifiers for UI-assignable child RightSets, used to build UI components. [optional]
ui_assignable bool Indicates whether the RightSet is UI-assignable. [optional] [default to False]
translated_name str The translated name of the RightSet. [optional]
translated_description str The translated description of the RightSet. [optional]
parent_id str The unique identifier of the parent RightSet for UI Assignable RightSet. [optional]
}

Example

from sailpoint.v2025.models.right_set_dto import RightSetDTO

right_set_dto = RightSetDTO(
id='idn:ui-right-set-example',
name='Right Set Name',
description='This is a description of the RightSet.',
category='identity',
rights=[idn:ui-right-set-example:read, idn:ui-right-set-example:write],
right_set_ids=[idn:ui-right-set-example-update, idn:ui-right-set-example-delete],
ui_assignable_child_right_set_ids=[idn:ui-right-set-example-detail, idn:ui-right-set-example-management],
ui_assignable=True,
translated_name='Translated Right Set Name',
translated_description='This is a translated description of the RightSet.',
parent_id='idn:ui-parent-example'
)

[Back to top]