LabelArgs

data class LabelArgs(val color: Output<String>? = null, val description: Output<String>? = null, val name: Output<String>? = null, val project: Output<String>? = null) : ConvertibleToJava<LabelArgs>

The gitlab.Label resource allows to manage the lifecycle of a project label.

This resource is deprecated. use gitlab.ProjectLabelinstead! Upstream API: GitLab REST API docs

Constructors

Link copied to clipboard
constructor(color: Output<String>? = null, description: Output<String>? = null, name: Output<String>? = null, project: Output<String>? = null)

Properties

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

The color of the label given in 6-digit hex notation with leading '#' sign (e.g. #FFAABB) or one of the CSS color names.

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

The description of the label.

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

The name of the label.

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

The name or id of the project to add the label to.

Functions

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