ConfigObject
Config export and import format for individual object configurations.
Properties
Name | Type | Description | Notes |
---|---|---|---|
version | int | Current version of configuration object. | [optional] |
var_self | SelfImportExportDto | [optional] | |
object | map[string]object | Object details. Format dependant on the object type. | [optional] |
} |
Example
from sailpoint.v2024.models.config_object import ConfigObject
config_object = ConfigObject(
version=1,
var_self=sailpoint.v2024.models.self_import_export_dto.SelfImportExportDto(
type = 'SOURCE',
id = '2c9180835d191a86015d28455b4b232a',
name = 'HR Active Directory', ),
object={ }
)