mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
---
|
||||
id: beta-object-import-result
|
||||
title: ObjectImportResult
|
||||
pagination_label: ObjectImportResult
|
||||
sidebar_label: ObjectImportResult
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'ObjectImportResult', 'BetaObjectImportResult']
|
||||
slug: /tools/sdk/python/beta/models/object-import-result
|
||||
tags: ['SDK', 'Software Development Kit', 'ObjectImportResult', 'BetaObjectImportResult']
|
||||
---
|
||||
|
||||
# ObjectImportResult
|
||||
|
||||
Response model for import of a single object.
|
||||
|
||||
## 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]
|
||||
**imported_objects** | [**[]ImportObject**](import-object) | References to objects that were created or updated by the import. | [required]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.beta.models.object_import_result import ObjectImportResult
|
||||
|
||||
object_import_result = ObjectImportResult(
|
||||
infos=[
|
||||
sailpoint.beta.models.config_import/export_message.Config Import/Export Message(
|
||||
key = 'UNKNOWN_REFERENCE_RESOLVER',
|
||||
text = 'Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]',
|
||||
details = {details=message details}, )
|
||||
],
|
||||
warnings=[
|
||||
sailpoint.beta.models.config_import/export_message.Config Import/Export Message(
|
||||
key = 'UNKNOWN_REFERENCE_RESOLVER',
|
||||
text = 'Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]',
|
||||
details = {details=message details}, )
|
||||
],
|
||||
errors=[
|
||||
sailpoint.beta.models.config_import/export_message.Config Import/Export Message(
|
||||
key = 'UNKNOWN_REFERENCE_RESOLVER',
|
||||
text = 'Unable to resolve reference for object [type: IDENTITY, id: 2c91808c746e9c9601747d6507332ecz, name: random identity]',
|
||||
details = {details=message details}, )
|
||||
],
|
||||
imported_objects=[
|
||||
sailpoint.beta.models.import_object.ImportObject(
|
||||
type = 'SOURCE',
|
||||
id = '2c9180835d191a86015d28455b4b232a',
|
||||
name = 'HR Active Directory', )
|
||||
]
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user