com.pulumi.gitlab.kotlin.inputs.BranchProtectionAllowedToUnprotectArgs.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.BranchProtectionAllowedToUnprotectArgs.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 unprotect push to protected branch. Valid values are: `developer`, `maintainer`, `admin`.
* @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 BranchProtectionAllowedToUnprotectArgs(
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.BranchProtectionAllowedToUnprotectArgs =
com.pulumi.gitlab.inputs.BranchProtectionAllowedToUnprotectArgs.builder()
.accessLevel(accessLevel?.applyValue({ args0 -> args0 }))
.accessLevelDescription(accessLevelDescription?.applyValue({ args0 -> args0 }))
.groupId(groupId?.applyValue({ args0 -> args0 }))
.userId(userId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [BranchProtectionAllowedToUnprotectArgs].
*/
@PulumiTagMarker
public class BranchProtectionAllowedToUnprotectArgsBuilder 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 unprotect push to protected branch. Valid values are: `developer`, `maintainer`, `admin`.
*/
@JvmName("blmemguuqhvnswag")
public suspend fun accessLevel(`value`: Output) {
this.accessLevel = value
}
/**
* @param value Readable description of access level.
*/
@JvmName("ouejffpidkgtfkbf")
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("uqlpkedktjmqgbvi")
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("newfsegohgejjkmd")
public suspend fun userId(`value`: Output) {
this.userId = value
}
/**
* @param value Access levels allowed to unprotect push to protected branch. Valid values are: `developer`, `maintainer`, `admin`.
*/
@JvmName("asscikpyuadhsote")
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("enuenkpjgxksaych")
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("ddmrhdokdemaiwjy")
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("ifoscsdbddaprqcf")
public suspend fun userId(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.userId = mapped
}
internal fun build(): BranchProtectionAllowedToUnprotectArgs =
BranchProtectionAllowedToUnprotectArgs(
accessLevel = accessLevel,
accessLevelDescription = accessLevelDescription,
groupId = groupId,
userId = userId,
)
}