EntitlementDocumentAllOfPermissions
Properties
Name | Type | Description | Notes |
---|---|---|---|
target | str | The target the permission would grants rights on. | [optional] |
rights | []str | All the rights (e.g. actions) that this permission allows on the target | [optional] |
} |
Example
from sailpoint.v3.models.entitlement_document_all_of_permissions import EntitlementDocumentAllOfPermissions
entitlement_document_all_of_permissions = EntitlementDocumentAllOfPermissions(
target='SYS.GV_$TRANSACTION',
rights=[
'SELECT'
]
)