module Gitlab::Client::Jobs

def job(project_id, job_id)

Parameters:
  • the (Integer) -- id of the job
  • The (Integer, String) -- ID or name of a project.
def job(project_id, job_id)
  get("/projects/#{url_encode project_id}/jobs/#{job_id}")
end