Skip to main content

RemediationItemDetails

Properties

NameTypeDescriptionNotes
idstrThe ID of the certification[optional]
target_idstrThe ID of the certification target[optional]
target_namestrThe name of the certification target[optional]
target_display_namestrThe display name of the certification target[optional]
application_namestrThe name of the application/source[optional]
attribute_namestrThe name of the attribute being certified[optional]
attribute_operationstrThe operation of the certification on the attribute[optional]
attribute_valuestrThe value of the attribute being certified[optional]
native_identitystrThe native identity of the target[optional]
}

Example

from sailpoint.v3.models.remediation_item_details import RemediationItemDetails

remediation_item_details = RemediationItemDetails(
id='2c9180835d2e5168015d32f890ca1581',
target_id='2c9180835d2e5168015d32f890ca1581',
target_name='john.smith',
target_display_name='emailAddress',
application_name='Active Directory',
attribute_name='phoneNumber',
attribute_operation='update',
attribute_value='512-555-1212',
native_identity='jason.smith2'
)

[Back to top]