Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V3/Models/ObjectImportResult.md
2025-05-07 14:37:48 +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
object-import-result ObjectImportResult ObjectImportResult ObjectImportResult powershellsdk
powershell
PowerShell
sdk
ObjectImportResult
ObjectImportResult
/tools/sdk/powershell/v3/models/object-import-result
SDK
Software Development Kit
ObjectImportResult
ObjectImportResult

ObjectImportResult

Properties

Name Type Description Notes
Infos []SpConfigMessage Informational messages returned from the target service on import. [required]
Warnings []SpConfigMessage Warning messages returned from the target service on import. [required]
Errors []SpConfigMessage Error messages returned from the target service on import. [required]
ImportedObjects []ImportObject References to objects that were created or updated by the import. [required]

Examples

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

[Back to top]