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

2.1 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-sed Sed Sed Sed pythonsdk
python
Python
sdk
Sed
V2024Sed
/tools/sdk/python/v2024/models/sed
SDK
Software Development Kit
Sed
V2024Sed

Sed

Suggested Entitlement Description

Properties

Name Type Description Notes
name str name of the entitlement [optional]
approved_by str entitlement approved by [optional]
approved_type str entitlement approved type [optional]
approved_when datetime entitlement approved then [optional]
attribute str entitlement attribute [optional]
description str description of entitlement [optional]
display_name str entitlement display name [optional]
id str sed id [optional]
source_id str entitlement source id [optional]
source_name str entitlement source name [optional]
status str entitlement status [optional]
suggested_description str llm suggested entitlement description [optional]
type str entitlement type [optional]
value str entitlement value [optional]
}

Example

from sailpoint.v2024.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]