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

891 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-access-item-ref AccessItemRef AccessItemRef AccessItemRef pythonsdk
python
Python
sdk
AccessItemRef
BetaAccessItemRef
/tools/sdk/python/beta/models/access-item-ref
SDK
Software Development Kit
AccessItemRef
BetaAccessItemRef

AccessItemRef

Properties

Name Type Description Notes
id str ID of the access item to retrieve the recommendation for. [optional]
type Enum [ 'ENTITLEMENT', 'ACCESS_PROFILE', 'ROLE' ] Access item's type. [optional]
}

Example

from sailpoint.beta.models.access_item_ref import AccessItemRef

access_item_ref = AccessItemRef(
id='2c938083633d259901633d2623ec0375',
type='ENTITLEMENT'
)

[Back to top]