com.pulumi.gitlab.kotlin.inputs.BranchProtectionAllowedToMergeArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gitlab-kotlin Show documentation
Show all versions of pulumi-gitlab-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gitlab.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gitlab.inputs.BranchProtectionAllowedToMergeArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property accessLevel Access levels allowed to merge to protected branch. Valid values are: `no one`, `developer`, `maintainer`.
* @property accessLevelDescription Readable description of access level.
* @property groupId The ID of a GitLab group allowed to perform the relevant action. Mutually exclusive with `user_id`.
* @property userId The ID of a GitLab user allowed to perform the relevant action. Mutually exclusive with `group_id`.
*/
public data class BranchProtectionAllowedToMergeArgs(
public val accessLevel: Output? = null,
public val accessLevelDescription: Output? = null,
public val groupId: Output? = null,
public val userId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gitlab.inputs.BranchProtectionAllowedToMergeArgs =
com.pulumi.gitlab.inputs.BranchProtectionAllowedToMergeArgs.builder()
.accessLevel(accessLevel?.applyValue({ args0 -> args0 }))
.accessLevelDescription(accessLevelDescription?.applyValue({ args0 -> args0 }))
.groupId(groupId?.applyValue({ args0 -> args0 }))
.userId(userId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [BranchProtectionAllowedToMergeArgs].
*/
@PulumiTagMarker
public class BranchProtectionAllowedToMergeArgsBuilder internal constructor() {
private var accessLevel: Output? = null
private var accessLevelDescription: Output? = null
private var groupId: Output? = null
private var userId: Output? = null
/**
* @param value Access levels allowed to merge to protected branch. Valid values are: `no one`, `developer`, `maintainer`.
*/
@JvmName("kamyybhyjwoekubv")
public suspend fun accessLevel(`value`: Output) {
this.accessLevel = value
}
/**
* @param value Readable description of access level.
*/
@JvmName("mciagflopjjveijo")
public suspend fun accessLevelDescription(`value`: Output) {
this.accessLevelDescription = value
}
/**
* @param value The ID of a GitLab group allowed to perform the relevant action. Mutually exclusive with `user_id`.
*/
@JvmName("pjnjrpmsvkpoejmc")
public suspend fun groupId(`value`: Output) {
this.groupId = value
}
/**
* @param value The ID of a GitLab user allowed to perform the relevant action. Mutually exclusive with `group_id`.
*/
@JvmName("rdkuxsnmdekrnhvm")
public suspend fun userId(`value`: Output) {
this.userId = value
}
/**
* @param value Access levels allowed to merge to protected branch. Valid values are: `no one`, `developer`, `maintainer`.
*/
@JvmName("jmbkgyxmtwjyhhwd")
public suspend fun accessLevel(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.accessLevel = mapped
}
/**
* @param value Readable description of access level.
*/
@JvmName("loddnqkxmgilkmog")
public suspend fun accessLevelDescription(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.accessLevelDescription = mapped
}
/**
* @param value The ID of a GitLab group allowed to perform the relevant action. Mutually exclusive with `user_id`.
*/
@JvmName("ubftxckyhdrkvtrn")
public suspend fun groupId(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.groupId = mapped
}
/**
* @param value The ID of a GitLab user allowed to perform the relevant action. Mutually exclusive with `group_id`.
*/
@JvmName("gejqohlaysuilksh")
public suspend fun userId(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.userId = mapped
}
internal fun build(): BranchProtectionAllowedToMergeArgs = BranchProtectionAllowedToMergeArgs(
accessLevel = accessLevel,
accessLevelDescription = accessLevelDescription,
groupId = groupId,
userId = userId,
)
}