Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/SpConfigImportJobStatus.md
2025-04-01 09:23:12 -04:00

1.8 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-sp-config-import-job-status SpConfigImportJobStatus SpConfigImportJobStatus SpConfigImportJobStatus pythonsdk
python
Python
sdk
SpConfigImportJobStatus
V2025SpConfigImportJobStatus
/tools/sdk/python/v2025/models/sp-config-import-job-status
SDK
Software Development Kit
SpConfigImportJobStatus
V2025SpConfigImportJobStatus

SpConfigImportJobStatus

Properties

Name Type Description Notes
job_id str Unique id assigned to this job. [required]
status Enum [ 'NOT_STARTED', 'IN_PROGRESS', 'COMPLETE', 'CANCELLED', 'FAILED' ] Status of the job. [required]
type Enum [ 'EXPORT', 'IMPORT' ] Type of the job, either export or import. [required]
expiration datetime The time until which the artifacts will be available for download. [required]
created datetime The time the job was started. [required]
modified datetime The time of the last update to the job. [required]
message str This message contains additional information about the overall status of the job. [optional]
completed datetime The time the job was completed. [optional]
}

Example

from sailpoint.v2025.models.sp_config_import_job_status import SpConfigImportJobStatus

sp_config_import_job_status = SpConfigImportJobStatus(
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',
message='Download import results for details.',
completed='2021-05-11T22:23:16Z'
)

[Back to top]