Skip to main content

Importobject

Object created or updated by import.

Properties

NameTypeDescriptionNotes
typeEnum [ 'CONNECTOR_RULE', 'IDENTITY_OBJECT_CONFIG', 'IDENTITY_PROFILE', 'RULE', 'SOURCE', 'TRANSFORM', 'TRIGGER_SUBSCRIPTION' ]DTO type of object created or updated by import.[optional]
idstrID of object created or updated by import.[optional]
namestrDisplay name of object created or updated by import.[optional]
}

Example

from sailpoint.identity_profiles.models.importobject import Importobject

importobject = Importobject(
type='SOURCE',
id='2c9180835d191a86015d28455b4b232a',
name='HR Active Directory'
)

[Back to top]