GroupIssueBoardArgs

data class GroupIssueBoardArgs(val group: Output<String>? = null, val labels: Output<List<String>>? = null, val lists: Output<List<GroupIssueBoardListArgs>>? = null, val milestoneId: Output<Int>? = null, val name: Output<String>? = null) : ConvertibleToJava<GroupIssueBoardArgs>

The gitlab.GroupIssueBoard resource allows to manage the lifecycle of a issue board in a group.

Multiple issue boards on one group requires a GitLab Premium or above License. Upstream API: GitLab REST API docs

Constructors

Link copied to clipboard
constructor(group: Output<String>? = null, labels: Output<List<String>>? = null, lists: Output<List<GroupIssueBoardListArgs>>? = null, milestoneId: Output<Int>? = null, name: Output<String>? = null)

Properties

Link copied to clipboard
val group: Output<String>? = null

The ID or URL-encoded path of the group owned by the authenticated user.

Link copied to clipboard
val labels: Output<List<String>>? = null

The list of label names which the board should be scoped to.

Link copied to clipboard
val lists: Output<List<GroupIssueBoardListArgs>>? = null

The list of issue board lists.

Link copied to clipboard
val milestoneId: Output<Int>? = null

The milestone the board should be scoped to.

Link copied to clipboard
val name: Output<String>? = null

The name of the board.

Functions

Link copied to clipboard
open override fun toJava(): GroupIssueBoardArgs