Skip to main content

SpConfigExportResults

Response model for config export download response.

Properties

NameTypeDescriptionNotes
versionintCurrent version of the export results object.[optional]
timestampdatetimeTime the export was completed.[optional]
tenantstrName of the tenant where this export originated.[optional]
descriptionstrOptional user defined description/name for export job.[optional]
optionsExportOptions1[optional]
objects[]ConfigObject[optional]
}

Example

from sailpoint.v2024.models.sp_config_export_results import SpConfigExportResults

sp_config_export_results = SpConfigExportResults(
version=1,
timestamp='2021-05-11T22:23:16Z',
tenant='sample-tenant',
description='Export Job 1 Test',
options=sailpoint.v2024.models.export_options_1.ExportOptions_1(
exclude_types = [
'SOURCE'
],
include_types = [
'TRIGGER_SUBSCRIPTION'
],
object_options = {TRIGGER_SUBSCRIPTION={includedIds=[be9e116d-08e1-49fc-ab7f-fa585e96c9e4], includedNames=[Test 2]}}, ),
objects=[
sailpoint.v2024.models.config_object_for_export_and_import.Config Object for Export and Import(
version = 1,
self = sailpoint.v2024.models.self_import_export_dto.SelfImportExportDto(
type = 'SOURCE',
id = '2c9180835d191a86015d28455b4b232a',
name = 'HR Active Directory', ),
object = { }, )
]
)

[Back to top]