Skip to main content

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

NameTypeDescriptionNotes
rights[]strAll the rights (e.g. actions) that this permission allows on the target[optional] [readonly]
targetstrThe target the permission would grants rights on.[optional] [readonly]
}

Example

from sailpoint.v3.models.permission_dto import PermissionDto

permission_dto = PermissionDto(
rights=[
'SELECT'
],
target='SYS.GV_$TRANSACTION'
)

[Back to top]