mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
type: object
|
|
properties:
|
|
jobId:
|
|
type: string
|
|
description: Unique id assigned to this job.
|
|
example: "3469b87d-48ca-439a-868f-2160001da8c1"
|
|
status:
|
|
type: string
|
|
description: Status of the job.
|
|
enum:
|
|
- NOT_STARTED
|
|
- IN_PROGRESS
|
|
- COMPLETE
|
|
- CANCELLED
|
|
- FAILED
|
|
example: "COMPLETE"
|
|
type:
|
|
type: string
|
|
description: Type of the job, either export or import.
|
|
enum:
|
|
- EXPORT
|
|
- IMPORT
|
|
example: "IMPORT"
|
|
message:
|
|
type: string
|
|
description: This message contains additional information about the overall status of the job.
|
|
example: "Download import results for details."
|
|
description:
|
|
type: string
|
|
description: Optional user defined description/name for export job.
|
|
example: "ETS configuration objects from Acme-Solar sandbox"
|
|
expiration:
|
|
type: string
|
|
format: 'date-time'
|
|
description: The time until which the artifacts will be available for download.
|
|
example: "2021-05-11T22:23:16Z"
|
|
created:
|
|
type: string
|
|
format: 'date-time'
|
|
description: The time the job was started.
|
|
example: "2021-05-11T22:23:16Z"
|
|
modified:
|
|
type: string
|
|
format: 'date-time'
|
|
description: The time of the last update to the job.
|
|
example: "2021-05-11T22:23:16Z"
|
|
completed:
|
|
type: string
|
|
format: 'date-time'
|
|
description: The time the job was completed.
|
|
example: "2021-05-11T22:23:16Z"
|
|
required:
|
|
- jobId
|
|
- status
|
|
- type
|
|
- message
|
|
- description
|
|
- expiration
|
|
- created
|
|
- modified
|
|
- completed
|