Skip to main content

SpConfigExportJob

Properties

NameTypeDescriptionNotes
job_idstrUnique id assigned to this job.[required]
statusEnum [ 'NOT_STARTED', 'IN_PROGRESS', 'COMPLETE', 'CANCELLED', 'FAILED' ]Status of the job.[required]
typeEnum [ 'EXPORT', 'IMPORT' ]Type of the job, either export or import.[required]
expirationdatetimeThe time until which the artifacts will be available for download.[required]
createddatetimeThe time the job was started.[required]
modifieddatetimeThe time of the last update to the job.[required]
descriptionstrOptional user defined description/name for export job.[optional]
}

Example

from sailpoint.v2024.models.sp_config_export_job import SpConfigExportJob

sp_config_export_job = SpConfigExportJob(
job_id='3469b87d-48ca-439a-868f-2160001da8c1',
status='COMPLETE',
type='IMPORT',
expiration='2021-05-11T22:23:16Z',
created='2021-05-11T22:23:16Z',
modified='2021-05-11T22:23:16Z',
description='ETS configuration objects from Acme-Solar sandbox'
)

[Back to top]