diff options
author | Alexis Reigel <alexis.reigel.ext@siemens.com> | 2018-06-06 15:55:14 +0200 |
---|---|---|
committer | Alexis Reigel <alexis.reigel.ext@siemens.com> | 2018-08-20 17:12:18 +0200 |
commit | f0d0400d0be6948f769c8733386ed765a04d23b2 (patch) | |
tree | db510ee9966ab62a1353bc1e6ccce863a5944202 /doc | |
parent | 00647b31b4741102451a2d785a43ef14bb818e24 (diff) | |
download | gitlab-ce-f0d0400d0be6948f769c8733386ed765a04d23b2.tar.gz |
add Ci::Runner.offline scope to API
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/runners.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/api/runners.md b/doc/api/runners.md index ac814bbf19a..66476e7db64 100644 --- a/doc/api/runners.md +++ b/doc/api/runners.md @@ -15,7 +15,7 @@ GET /runners?scope=active | Attribute | Type | Required | Description | |-----------|---------|----------|---------------------| -| `scope` | string | no | The scope of specific runners to show, one of: `active`, `paused`, `online`; showing all runners if none provided | +| `scope` | string | no | The scope of specific runners to show, one of: `active`, `paused`, `online`, `offline`; showing all runners if none provided | ``` curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/runners" @@ -60,7 +60,7 @@ GET /runners/all?scope=online | Attribute | Type | Required | Description | |-----------|---------|----------|---------------------| -| `scope` | string | no | The scope of runners to show, one of: `specific`, `shared`, `active`, `paused`, `online`; showing all runners if none provided | +| `scope` | string | no | The scope of runners to show, one of: `specific`, `shared`, `active`, `paused`, `online`, `offline`; showing all runners if none provided | ``` curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v4/runners/all" |