Copyright | (c) Rob Stewart Heriot-Watt University 2019 |
---|---|
License | BSD3 |
Maintainer | robstewart57@gmail.com |
Stability | stable |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
GitLab.API.Jobs
Description
Synopsis
- jobs :: Project -> GitLab [Job]
- pipelineJobs :: Project -> Int -> GitLab (Either (Response ByteString) [Job])
- pipelineBridges :: Project -> Int -> GitLab (Either (Response ByteString) [Job])
- job :: Project -> Int -> GitLab (Either (Response ByteString) (Maybe Job))
- cancelJob :: Project -> Int -> GitLab (Either (Response ByteString) (Maybe Job))
- retryJob :: Project -> Int -> GitLab (Either (Response ByteString) (Maybe Job))
- eraseJob :: Project -> Int -> GitLab (Either (Response ByteString) (Maybe Job))
- runJob :: Project -> Int -> GitLab (Either (Response ByteString) (Maybe Job))
List project jobs
List pipeline jobs
Get a list of jobs for a pipeline.
List pipeline bridges
Get a list of bridge jobs for a pipeline.
Get a single job
Get a single job of a project.
Cancel a job
Cancel a single job of a project.
Retry a job
Retry a single job of a project.
Erase a job
Retry a single job of a project.