com.pulumi.gitlab.kotlin.inputs.GetGroupPlainArgs.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.GetGroupPlainArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getGroup.
* @property fullPath The full path of the group.
* @property groupId The ID of the group.
*/
public data class GetGroupPlainArgs(
public val fullPath: String? = null,
public val groupId: Int? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gitlab.inputs.GetGroupPlainArgs =
com.pulumi.gitlab.inputs.GetGroupPlainArgs.builder()
.fullPath(fullPath?.let({ args0 -> args0 }))
.groupId(groupId?.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetGroupPlainArgs].
*/
@PulumiTagMarker
public class GetGroupPlainArgsBuilder internal constructor() {
private var fullPath: String? = null
private var groupId: Int? = null
/**
* @param value The full path of the group.
*/
@JvmName("vtvbqrkpdkbeqhao")
public suspend fun fullPath(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.fullPath = mapped
}
/**
* @param value The ID of the group.
*/
@JvmName("mnbdwumgywlcdlhr")
public suspend fun groupId(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.groupId = mapped
}
internal fun build(): GetGroupPlainArgs = GetGroupPlainArgs(
fullPath = fullPath,
groupId = groupId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy