Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/PermissionDto.md
2025-04-18 12:50:08 +00:00

1.1 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-permission-dto PermissionDto PermissionDto PermissionDto pythonsdk
python
Python
sdk
PermissionDto
V2025PermissionDto
/tools/sdk/python/v2025/models/permission-dto
SDK
Software Development Kit
PermissionDto
V2025PermissionDto

PermissionDto

Simplified DTO for the Permission objects stored in SailPoint's database. The data is aggregated from customer systems and is free-form, so its appearance can vary largely between different clients/customers.

Properties

Name Type Description Notes
rights []str All the rights (e.g. actions) that this permission allows on the target [optional] [readonly]
target str The target the permission would grants rights on. [optional] [readonly]
}

Example

from sailpoint.v2025.models.permission_dto import PermissionDto

permission_dto = PermissionDto(
rights=HereIsRight1,
target='SYS.GV_$TRANSACTION'
)

[Back to top]