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

1.2 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
update-detail UpdateDetail UpdateDetail UpdateDetail pythonsdk
python
Python
sdk
UpdateDetail
UpdateDetail
/tools/sdk/python/v3/models/update-detail
SDK
Software Development Kit
UpdateDetail
UpdateDetail

UpdateDetail

Properties

Name Type Description Notes
message str The detailed message for an update. Typically the relevent error message when status is error. [optional]
script_name str The connector script name [optional]
updated_files []str The list of updated files supported by the connector [optional]
status Enum [ 'ERROR', 'UPDATED', 'UNCHANGED', 'SKIPPED' ] The connector update status [optional]
}

Example

from sailpoint.v3.models.update_detail import UpdateDetail

update_detail = UpdateDetail(
message='unsupported xsd version, please ensure latest xsd version http://www.sailpoint.com/xsd/sailpoint_form_2_0.xsd is used for source config',
script_name='servicenow',
updated_files=[pod/org/connectorFiles/testconnector/test1.jar],
status='ERROR'
)

[Back to top]