Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/UpdateDetail.md
2025-02-03 22:09:17 +00:00

1.3 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 powershellsdk
powershell
PowerShell
sdk
UpdateDetail
UpdateDetail
/tools/sdk/powershell/v3/models/update-detail
SDK
Software Development Kit
UpdateDetail
UpdateDetail

UpdateDetail

Properties

Name Type Description Notes
Message String The detailed message for an update. Typically the relevent error message when status is error. [optional]
ScriptName String The connector script name [optional]
UpdatedFiles []String The list of updated files supported by the connector [optional]
Status Enum [ "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]