![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.app.kotlin.inputs.JavaComponentConfigurationPropertyArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.app.kotlin.inputs
import com.pulumi.azurenative.app.inputs.JavaComponentConfigurationPropertyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Configuration properties for a Java Component
* @property propertyName The name of the property
* @property value The value of the property
*/
public data class JavaComponentConfigurationPropertyArgs(
public val propertyName: Output? = null,
public val `value`: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.app.inputs.JavaComponentConfigurationPropertyArgs =
com.pulumi.azurenative.app.inputs.JavaComponentConfigurationPropertyArgs.builder()
.propertyName(propertyName?.applyValue({ args0 -> args0 }))
.`value`(`value`?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [JavaComponentConfigurationPropertyArgs].
*/
@PulumiTagMarker
public class JavaComponentConfigurationPropertyArgsBuilder internal constructor() {
private var propertyName: Output? = null
private var `value`: Output? = null
/**
* @param value The name of the property
*/
@JvmName("gvxepqxosdjbwbbs")
public suspend fun propertyName(`value`: Output) {
this.propertyName = value
}
/**
* @param value The value of the property
*/
@JvmName("bucxbddrcrybtsfd")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value The name of the property
*/
@JvmName("vegkoiyroxccdivs")
public suspend fun propertyName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.propertyName = mapped
}
/**
* @param value The value of the property
*/
@JvmName("jibkmrkcoolqxduq")
public suspend fun `value`(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): JavaComponentConfigurationPropertyArgs =
JavaComponentConfigurationPropertyArgs(
propertyName = propertyName,
`value` = `value`,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy