Skip to main content

Configobject

Config export and import format for individual object configurations.

Properties

NameTypeDescriptionNotes
versionintCurrent version of configuration object.[optional]
var_selfSelfimportexportdto[optional]
objectmap[string]objectObject details. Format dependant on the object type.[optional]
}

Example

from sailpoint.sp_config.models.configobject import Configobject

configobject = Configobject(
version=1,
var_self=sailpoint.sp_config.models.self_import_export_dto.Self Import Export Dto(
type = 'SOURCE',
id = '2c9180835d191a86015d28455b4b232a',
name = 'HR Active Directory', ),
object={ }
)

[Back to top]