com.pulumi.gitlab.kotlin.inputs.GetProjectProtectedBranchesProtectedBranch.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.gitlab.inputs.GetProjectProtectedBranchesProtectedBranch.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property allowForcePush Whether force push is allowed.
* @property codeOwnerApprovalRequired Reject code pushes that change files listed in the CODEOWNERS file.
* @property id The ID of this resource.
* @property mergeAccessLevels Array of access levels and user(s)/group(s) allowed to merge to protected branch.
* @property name The name of the protected branch.
* @property pushAccessLevels Array of access levels and user(s)/group(s) allowed to push to protected branch.
*/
public data class GetProjectProtectedBranchesProtectedBranch(
public val allowForcePush: Boolean,
public val codeOwnerApprovalRequired: Boolean,
public val id: Int,
public val mergeAccessLevels: List? =
null,
public val name: String,
public val pushAccessLevels: List? =
null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gitlab.inputs.GetProjectProtectedBranchesProtectedBranch =
com.pulumi.gitlab.inputs.GetProjectProtectedBranchesProtectedBranch.builder()
.allowForcePush(allowForcePush.let({ args0 -> args0 }))
.codeOwnerApprovalRequired(codeOwnerApprovalRequired.let({ args0 -> args0 }))
.id(id.let({ args0 -> args0 }))
.mergeAccessLevels(
mergeAccessLevels?.let({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.name(name.let({ args0 -> args0 }))
.pushAccessLevels(
pushAccessLevels?.let({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [GetProjectProtectedBranchesProtectedBranch].
*/
@PulumiTagMarker
public class GetProjectProtectedBranchesProtectedBranchBuilder internal constructor() {
private var allowForcePush: Boolean? = null
private var codeOwnerApprovalRequired: Boolean? = null
private var id: Int? = null
private var mergeAccessLevels: List? =
null
private var name: String? = null
private var pushAccessLevels: List? =
null
/**
* @param value Whether force push is allowed.
*/
@JvmName("vwvwvmphncylomwp")
public suspend fun allowForcePush(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.allowForcePush = mapped
}
/**
* @param value Reject code pushes that change files listed in the CODEOWNERS file.
*/
@JvmName("jtquecmkwxeyqntl")
public suspend fun codeOwnerApprovalRequired(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.codeOwnerApprovalRequired = mapped
}
/**
* @param value The ID of this resource.
*/
@JvmName("nkglifmbtfcbambh")
public suspend fun id(`value`: Int) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.id = mapped
}
/**
* @param value Array of access levels and user(s)/group(s) allowed to merge to protected branch.
*/
@JvmName("pqgplmbxndohxgvd")
public suspend fun mergeAccessLevels(`value`: List?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.mergeAccessLevels = mapped
}
/**
* @param argument Array of access levels and user(s)/group(s) allowed to merge to protected branch.
*/
@JvmName("oeqtmtwgwprdgmxg")
public suspend fun mergeAccessLevels(argument: List Unit>) {
val toBeMapped = argument.toList().map {
GetProjectProtectedBranchesProtectedBranchMergeAccessLevelBuilder().applySuspend {
it()
}.build()
}
val mapped = toBeMapped
this.mergeAccessLevels = mapped
}
/**
* @param argument Array of access levels and user(s)/group(s) allowed to merge to protected branch.
*/
@JvmName("bncagcidcfyuqydb")
public suspend fun mergeAccessLevels(vararg argument: suspend GetProjectProtectedBranchesProtectedBranchMergeAccessLevelBuilder.() -> Unit) {
val toBeMapped = argument.toList().map {
GetProjectProtectedBranchesProtectedBranchMergeAccessLevelBuilder().applySuspend {
it()
}.build()
}
val mapped = toBeMapped
this.mergeAccessLevels = mapped
}
/**
* @param argument Array of access levels and user(s)/group(s) allowed to merge to protected branch.
*/
@JvmName("ujfmxaxthptljplh")
public suspend fun mergeAccessLevels(argument: suspend GetProjectProtectedBranchesProtectedBranchMergeAccessLevelBuilder.() -> Unit) {
val toBeMapped =
listOf(
GetProjectProtectedBranchesProtectedBranchMergeAccessLevelBuilder().applySuspend {
argument()
}.build(),
)
val mapped = toBeMapped
this.mergeAccessLevels = mapped
}
/**
* @param values Array of access levels and user(s)/group(s) allowed to merge to protected branch.
*/
@JvmName("mxnplpohnfmrhvjw")
public suspend fun mergeAccessLevels(vararg values: GetProjectProtectedBranchesProtectedBranchMergeAccessLevel) {
val toBeMapped = values.toList()
val mapped = toBeMapped.let({ args0 -> args0 })
this.mergeAccessLevels = mapped
}
/**
* @param value The name of the protected branch.
*/
@JvmName("kfyhrulnwkdgsmjr")
public suspend fun name(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.name = mapped
}
/**
* @param value Array of access levels and user(s)/group(s) allowed to push to protected branch.
*/
@JvmName("vasjqddtjuxnhswa")
public suspend fun pushAccessLevels(`value`: List?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.pushAccessLevels = mapped
}
/**
* @param argument Array of access levels and user(s)/group(s) allowed to push to protected branch.
*/
@JvmName("fdjdoejwafblbsmt")
public suspend fun pushAccessLevels(argument: List Unit>) {
val toBeMapped = argument.toList().map {
GetProjectProtectedBranchesProtectedBranchPushAccessLevelBuilder().applySuspend {
it()
}.build()
}
val mapped = toBeMapped
this.pushAccessLevels = mapped
}
/**
* @param argument Array of access levels and user(s)/group(s) allowed to push to protected branch.
*/
@JvmName("srvmneafohwtkcic")
public suspend fun pushAccessLevels(vararg argument: suspend GetProjectProtectedBranchesProtectedBranchPushAccessLevelBuilder.() -> Unit) {
val toBeMapped = argument.toList().map {
GetProjectProtectedBranchesProtectedBranchPushAccessLevelBuilder().applySuspend {
it()
}.build()
}
val mapped = toBeMapped
this.pushAccessLevels = mapped
}
/**
* @param argument Array of access levels and user(s)/group(s) allowed to push to protected branch.
*/
@JvmName("sjlwxfajdxehnyaq")
public suspend fun pushAccessLevels(argument: suspend GetProjectProtectedBranchesProtectedBranchPushAccessLevelBuilder.() -> Unit) {
val toBeMapped =
listOf(
GetProjectProtectedBranchesProtectedBranchPushAccessLevelBuilder().applySuspend {
argument()
}.build(),
)
val mapped = toBeMapped
this.pushAccessLevels = mapped
}
/**
* @param values Array of access levels and user(s)/group(s) allowed to push to protected branch.
*/
@JvmName("mgesilcleedqwnnj")
public suspend fun pushAccessLevels(vararg values: GetProjectProtectedBranchesProtectedBranchPushAccessLevel) {
val toBeMapped = values.toList()
val mapped = toBeMapped.let({ args0 -> args0 })
this.pushAccessLevels = mapped
}
internal fun build(): GetProjectProtectedBranchesProtectedBranch =
GetProjectProtectedBranchesProtectedBranch(
allowForcePush = allowForcePush ?: throw PulumiNullFieldException("allowForcePush"),
codeOwnerApprovalRequired = codeOwnerApprovalRequired ?: throw
PulumiNullFieldException("codeOwnerApprovalRequired"),
id = id ?: throw PulumiNullFieldException("id"),
mergeAccessLevels = mergeAccessLevels,
name = name ?: throw PulumiNullFieldException("name"),
pushAccessLevels = pushAccessLevels,
)
}