Skip to main content

Bulkapproveentitlementrecommendationitem

A single item in a bulk entitlement recommendation approval request. The recordType is optional; the backend resolves the type by ID lookup when omitted. Description applies to SED items only; privilegeLevel is required for privilege items.

Properties

NameTypeDescriptionNotes
idstrThe unique identifier of the recommendation record to approve.[required]
record_typeEnum [ 'SED', 'privilege' ]The type of the recommendation. When omitted, the backend resolves the type by looking up the ID.[optional]
descriptionstrThe approved description text. Required for SED-type items; ignored for privilege items.[optional]
privilege_levelstrThe approved privilege level. Required for privilege-type items; ignored for SED items.[optional]
}

Example

from sailpoint.suggested_entitlement_description.models.bulkapproveentitlementrecommendationitem import Bulkapproveentitlementrecommendationitem

bulkapproveentitlementrecommendationitem = Bulkapproveentitlementrecommendationitem(
id='79db50d4-723c-4aa0-a824-83c2205d82d1',
record_type='SED',
description='Provides access and permissions related to the Delinea Secret Server Cloud system.',
privilege_level='high'
)

[Back to top]