Skip to main content

ObjectImportResult

Properties

NameTypeDescriptionNotes
Infos[]SpConfigMessageInformational messages returned from the target service on import.[required]
Warnings[]SpConfigMessageWarning messages returned from the target service on import.[required]
Errors[]SpConfigMessageError messages returned from the target service on import.[required]
ImportedObjects[]ImportObjectReferences to objects that were created or updated by the import.[required]

Examples

  • Prepare the resource
$ObjectImportResult = Initialize-PSSailpoint.V2024ObjectImportResult  -Infos null `
-Warnings null `
-Errors null `
-ImportedObjects null
  • Convert the resource to JSON
$ObjectImportResult | ConvertTo-JSON

[Back to top]