mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: object-import-result
|
||||
title: ObjectImportResult
|
||||
pagination_label: ObjectImportResult
|
||||
sidebar_label: ObjectImportResult
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'ObjectImportResult', 'ObjectImportResult']
|
||||
slug: /tools/sdk/powershell/v3/models/object-import-result
|
||||
tags: ['SDK', 'Software Development Kit', 'ObjectImportResult', 'ObjectImportResult']
|
||||
---
|
||||
|
||||
|
||||
# ObjectImportResult
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Infos** | [**[]SpConfigMessage**](sp-config-message) | Informational messages returned from the target service on import. | [required]
|
||||
**Warnings** | [**[]SpConfigMessage**](sp-config-message) | Warning messages returned from the target service on import. | [required]
|
||||
**Errors** | [**[]SpConfigMessage**](sp-config-message) | Error messages returned from the target service on import. | [required]
|
||||
**ImportedObjects** | [**[]ImportObject**](import-object) | References to objects that were created or updated by the import. | [required]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$ObjectImportResult = Initialize-PSSailpoint.V3ObjectImportResult -Infos null `
|
||||
-Warnings null `
|
||||
-Errors null `
|
||||
-ImportedObjects null
|
||||
```
|
||||
|
||||
- Convert the resource to JSON
|
||||
```powershell
|
||||
$ObjectImportResult | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user