User Runner Args
data class UserRunnerArgs(val accessLevel: Output<String>? = null, val description: Output<String>? = null, val groupId: Output<Int>? = null, val locked: Output<Boolean>? = null, val maximumTimeout: Output<Int>? = null, val paused: Output<Boolean>? = null, val projectId: Output<Int>? = null, val runnerType: Output<String>? = null, val tagLists: Output<List<String>>? = null, val untagged: Output<Boolean>? = null) : ConvertibleToJava<UserRunnerArgs>
The gitlab.UserRunner
resource allows creating a GitLab runner using the new GitLab Runner Registration Flow. Upstream API: GitLab REST API docs
Constructors
Link copied to clipboard
constructor(accessLevel: Output<String>? = null, description: Output<String>? = null, groupId: Output<Int>? = null, locked: Output<Boolean>? = null, maximumTimeout: Output<Int>? = null, paused: Output<Boolean>? = null, projectId: Output<Int>? = null, runnerType: Output<String>? = null, tagLists: Output<List<String>>? = null, untagged: Output<Boolean>? = null)
Properties
Link copied to clipboard
The access level of the runner. Valid values are: not_protected
, ref_protected
.
Link copied to clipboard
Description of the runner.
Link copied to clipboard
Maximum timeout that limits the amount of time (in seconds) that runners can run jobs. Must be at least 600 (10 minutes).
Link copied to clipboard
The scope of the runner. Valid values are: instance_type
, group_type
, project_type
.