Skip to main content

EntitlementDocumentAllOfPermissions

Properties

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

Example

from sailpoint.v2024.models.entitlement_document_all_of_permissions import EntitlementDocumentAllOfPermissions

entitlement_document_all_of_permissions = EntitlementDocumentAllOfPermissions(
target='SYS.GV_$TRANSACTION',
rights=[
'SELECT'
]
)

[Back to top]