com.pulumi.nomad.kotlin.inputs.GetPluginsPlainArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-nomad-kotlin Show documentation
Show all versions of pulumi-nomad-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.nomad.kotlin.inputs
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.nomad.inputs.GetPluginsPlainArgs.builder
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A collection of arguments for invoking getPlugins.
* @property type
*/
public data class GetPluginsPlainArgs(
public val type: String? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.nomad.inputs.GetPluginsPlainArgs =
com.pulumi.nomad.inputs.GetPluginsPlainArgs.builder()
.type(type?.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetPluginsPlainArgs].
*/
@PulumiTagMarker
public class GetPluginsPlainArgsBuilder internal constructor() {
private var type: String? = null
/**
* @param value
*/
@JvmName("wnwrkkeirjrpghqj")
public suspend fun type(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> args0 })
this.type = mapped
}
internal fun build(): GetPluginsPlainArgs = GetPluginsPlainArgs(
type = type,
)
}