boulderopalscaleup.jobs.JobSummary

class boulderopalscaleup.jobs.JobSummary(*, id, name, device_name, session_id, created_at, updated_at, status)

Summary information for a single job in the job history.

Variables

  • id (str) – Unique identifier of the job.
  • name (str) – Human-readable name of the job.
  • device_name (str) – Name of the device the job ran on.
  • session_id (str) – Session identifier associated with the job.
  • created_at (datetime) – UTC timestamp of when the job was created.
  • updated_at (datetime) – UTC timestamp of when the job was last updated.
  • status (JobStatus) – The status of the job.

Was this useful?