
com.pulumi.googlenative.appengine.v1beta.kotlin.inputs.LibraryArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.appengine.v1beta.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.appengine.v1beta.inputs.LibraryArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Third-party Python runtime library that is required by the application.
* @property name Name of the library. Example: "django".
* @property version Version of the library to select, or "latest".
*/
public data class LibraryArgs(
public val name: Output? = null,
public val version: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.appengine.v1beta.inputs.LibraryArgs =
com.pulumi.googlenative.appengine.v1beta.inputs.LibraryArgs.builder()
.name(name?.applyValue({ args0 -> args0 }))
.version(version?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LibraryArgs].
*/
@PulumiTagMarker
public class LibraryArgsBuilder internal constructor() {
private var name: Output? = null
private var version: Output? = null
/**
* @param value Name of the library. Example: "django".
*/
@JvmName("hdhpivyurwlpsroa")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Version of the library to select, or "latest".
*/
@JvmName("avrinukclaoppksg")
public suspend fun version(`value`: Output) {
this.version = value
}
/**
* @param value Name of the library. Example: "django".
*/
@JvmName("wptpxidwudffnhrw")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value Version of the library to select, or "latest".
*/
@JvmName("kjsifolaxwgpoauw")
public suspend fun version(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.version = mapped
}
internal fun build(): LibraryArgs = LibraryArgs(
name = name,
version = version,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy