Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzelin-l <16577660+zelin-l@users.noreply.github.com>2019-04-18 16:06:53 +0300
committerzelin-l <16577660+zelin-l@users.noreply.github.com>2019-04-18 16:57:12 +0300
commit52c19d4da7830c9c39d23190822d3c2de80d13a4 (patch)
tree17300e81a46eb58a072855388702fe908be176b7 /doc/api/runners.md
parent7a4b4cffba0313ada14b012dae05f31ecb17154d (diff)
Add configuration of access_level for runners on registration via API
Allow setting access_level of new runner to not_protected (default) or ref_protected Minor update to relevant docs and tests
Diffstat (limited to 'doc/api/runners.md')
-rw-r--r--doc/api/runners.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/api/runners.md b/doc/api/runners.md
index 46f7b1d2a25..2d91428d1c1 100644
--- a/doc/api/runners.md
+++ b/doc/api/runners.md
@@ -486,6 +486,7 @@ POST /runners
| `locked` | boolean| no | Whether the Runner should be locked for current project |
| `run_untagged` | boolean | no | Whether the Runner should handle untagged jobs |
| `tag_list` | Array[String] | no | List of Runner's tags |
+| `access_level` | string | no | The access_level of the runner; `not_protected` or `ref_protected` |
| `maximum_timeout` | integer | no | Maximum timeout set when this Runner will handle the job |
```