Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/ObjectImportResult.md
2025-04-01 09:23:12 -04:00

2.7 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
v2025-object-import-result ObjectImportResult ObjectImportResult ObjectImportResult pythonsdk
python
Python
sdk
ObjectImportResult
V2025ObjectImportResult
/tools/sdk/python/v2025/models/object-import-result
SDK
Software Development Kit
ObjectImportResult
V2025ObjectImportResult

ObjectImportResult

Response model for import of a single object.

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]
imported_objects []ImportObject References to objects that were created or updated by the import. [required]
}

Example

from sailpoint.v2025.models.object_import_result import ObjectImportResult

object_import_result = ObjectImportResult(
infos=[
                    sailpoint.v2025.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.v2025.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.v2025.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.v2025.models.import_object.ImportObject(
                        type = 'SOURCE', 
                        id = '2c9180835d191a86015d28455b4b232a', 
                        name = 'HR Active Directory', )
                    ]
)

[Back to top]