Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/SpConfigImportResults.md
2025-05-07 14:37:48 +00:00

1.5 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
v2024-sp-config-import-results SpConfigImportResults SpConfigImportResults SpConfigImportResults powershellsdk
powershell
PowerShell
sdk
SpConfigImportResults
V2024SpConfigImportResults
/tools/sdk/powershell/v2024/models/sp-config-import-results
SDK
Software Development Kit
SpConfigImportResults
V2024SpConfigImportResults

SpConfigImportResults

Properties

Name Type Description Notes
Results map[string]ObjectImportResult1 The results of an object configuration import job. [required]
ExportJobId String If a backup was performed before the import, this will contain the jobId of the backup job. This id can be used to retrieve the json file of the backup export. [optional]

Examples

  • Prepare the resource
$SpConfigImportResults = Initialize-V2024SpConfigImportResults  -Results {results={TRIGGER_SUBSCRIPTION={infos=[{key=IMPORT_PREVIEW, text=Object to be imported: [c953134c-2224-42f2-a84e-fa5cbb395904, Test 2], detail=null}, {key=IMPORT_PREVIEW, text=Object to be imported: [be9e116d-08e1-49fc-ab7f-fa585e96c9e4, Test 1], detail=null}], warnings=[], errors=[], importedObjects=[]}}} `
 -ExportJobId be9e116d-08e1-49fc-ab7f-fa585e96c9e4
  • Convert the resource to JSON
$SpConfigImportResults | ConvertTo-JSON

[Back to top]