Skip to main content

Sed

Suggested Entitlement Description

Properties

NameTypeDescriptionNotes
namestrname of the entitlement[optional]
approved_bystrentitlement approved by[optional]
approved_typestrentitlement approved type[optional]
approved_whendatetimeentitlement approved then[optional]
attributestrentitlement attribute[optional]
descriptionstrdescription of entitlement[optional]
display_namestrentitlement display name[optional]
idstrsed id[optional]
source_idstrentitlement source id[optional]
source_namestrentitlement source name[optional]
statusstrentitlement status[optional]
suggested_descriptionstrllm suggested entitlement description[optional]
typestrentitlement type[optional]
valuestrentitlement value[optional]
}

Example

from sailpoint.beta.models.sed import Sed

sed = Sed(
name='BatchInvoiceProcessing',
approved_by='2c918086-76de-afbf-0176-f6d28f65565a',
approved_type='admin',
approved_when=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
attribute='Role',
description='This entitlement allows automated processing of invoices in batches on a scheduled basis to streamline accounts payable procedures.',
display_name='AWS-Cloud-Billing',
id='ead281ee-12a9-40ac-9534-36b5d7d65d53',
source_id='103f567b93ee49b991c40f9412f87643',
source_name='IDN Salesforce',
status='suggested',
suggested_description='This entitlement allows automated processing of invoices in batches on a scheduled basis to streamline accounts payable',
type='group',
value='group'
)

[Back to top]