18.49. JobsDetails
Details of a pipeline job.
message JobDetails {
Identifier job_id = 1;
Identifier payload_id = 2;
Identifier pipeline_id = 3;
string job_name = 4;
JobState state = 5;
JobStatus status = 6;
JobPriority priority = 7;
Timestamp created = 13;
Timestamp started = 14;
Timestamp stopped = 15;
}
18.49.1.1. job_id
type: message
Unique identifier of the job.
See Identifier for details.
18.49.1.2. payload_id
type: message
Unique identifier of the payload associated with the job.
See Identifier for details.
18.49.1.3. pipeline_id
type: message
Unique identifier of the pipeline associated with the job.
See Identifier for details.
18.49.1.4. job_name
type: string
Human readable name assigned to the job.
18.49.1.5. state
type: enum
Current state of the job.
See JobState for details.
18.49.1.6. status
type: enum
Current status of the job.
See JobStatus for details.
18.49.1.7. priority
type: enum
Priority of the job
See JobPriority for details.
18.49.1.8. created
type: message
Timestamp describing when the job was created.
See Timestamp for details.
18.49.1.9. started
type: message
Timestamp describing when the job started execution.
No value will be provided if the job has not yet started execution.
See Timestamp for details.
18.49.1.10. stopped
type: message
Timestamp describing when the job stopped execution.
No value will be provided if the job has not yet stopped execution.
See Timestamp for details.