Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/Beta/Models/EntitlementRef.md
2025-02-20 12:59:19 -05:00

1017 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-entitlement-ref EntitlementRef EntitlementRef EntitlementRef pythonsdk
python
Python
sdk
EntitlementRef
BetaEntitlementRef
/tools/sdk/python/beta/models/entitlement-ref
SDK
Software Development Kit
EntitlementRef
BetaEntitlementRef

EntitlementRef

Entitlement including a specific set of access.

Properties

Name Type Description Notes
type Enum [ 'ENTITLEMENT' ] Entitlement's DTO type. [optional]
id str Entitlement's ID. [optional]
name str Entitlement's display name. [optional]
}

Example

from sailpoint.beta.models.entitlement_ref import EntitlementRef

entitlement_ref = EntitlementRef(
type='ENTITLEMENT',
id='2c91809773dee32014e13e122092014e',
name='CN=entitlement.490efde5,OU=OrgCo,OU=ServiceDept,DC=HQAD,DC=local'
)

[Back to top]