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-Objectimportresult  -Infos null `
-Warnings null `
-Errors null `
-ImportedObjects null
  • Convert the resource to JSON
$Objectimportresult | ConvertTo-JSON

[Back to top]