Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/EntitlementDto.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-entitlement-dto EntitlementDto EntitlementDto EntitlementDto pythonsdk
python
Python
sdk
EntitlementDto
V2024EntitlementDto
/tools/sdk/python/v2024/models/entitlement-dto
SDK
Software Development Kit
EntitlementDto
V2024EntitlementDto

EntitlementDto

Properties

Name Type Description Notes
id str System-generated unique ID of the Object [optional] [readonly]
name str Name of the Object [required]
created datetime Creation date of the Object [optional] [readonly]
modified datetime Last modification date of the Object [optional] [readonly]
attribute str Name of the entitlement attribute [optional]
value str Raw value of the entitlement [optional]
description str Entitlment description [optional]
attributes map[string]object Entitlement attributes [optional]
source_schema_object_type str Schema objectType on the given application that maps to an Account Group [optional]
privileged bool Determines if this Entitlement is privileged. [optional]
cloud_governed bool Determines if this Entitlement is goverened in the cloud. [optional]
source EntitlementSource [optional]
}

Example

from sailpoint.v2024.models.entitlement_dto import EntitlementDto

entitlement_dto = EntitlementDto(
id='id12345',
name='aName',
created='2015-05-28T14:07:17Z',
modified='2015-05-28T14:07:17Z',
attribute='authorizationType',
value='CN=Users,dc=sailpoint,dc=com',
description='Active Directory DC',
attributes={GroupType=Security, sAMAccountName=Buyer},
source_schema_object_type='group',
privileged=False,
cloud_governed=False,
source=sailpoint.v2024.models.entitlement_source.EntitlementSource(
                    type = 'SOURCE', 
                    id = '2c9180835d191a86015d28455b4b232a', 
                    name = 'HR Active Directory', )
)

[Back to top]