Skip to main content

UpdateDetail

Properties

NameTypeDescriptionNotes
MessageStringThe detailed message for an update. Typically the relevent error message when status is error.[optional]
ScriptNameStringThe connector script name[optional]
UpdatedFiles[]StringThe list of updated files supported by the connector[optional]
StatusEnum [ "ERROR", "UPDATED", "UNCHANGED", "SKIPPED" ]The connector update status[optional]

Examples

  • Prepare the resource
$UpdateDetail = Initialize-PSSailpoint.V3UpdateDetail  -Message unsupported xsd version, please ensure latest xsd version http://www.sailpoint.com/xsd/sailpoint_form_2_0.xsd is used for source config `
-ScriptName servicenow `
-UpdatedFiles [pod/org/connectorFiles/testconnector/test1.jar] `
-Status ERROR
  • Convert the resource to JSON
$UpdateDetail | ConvertTo-JSON

[Back to top]