Skip to main content

Updatedetail

Properties

NameTypeDescriptionNotes
messagestrThe detailed message for an update. Typically the relevent error message when status is error.[optional]
script_namestrThe connector script name[optional]
updated_files[]strThe list of updated files supported by the connector[optional]
statusEnum [ 'ERROR', 'UPDATED', 'UNCHANGED', 'SKIPPED' ]The connector update status[optional]
}

Example

from sailpoint.connectors.models.updatedetail import Updatedetail

updatedetail = 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]