![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.app.kotlin.inputs.DotNetComponentConfigurationPropertyArgs.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.DotNetComponentConfigurationPropertyArgs.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 .NET Component
* @property propertyName The name of the property
* @property value The value of the property
*/
public data class DotNetComponentConfigurationPropertyArgs(
public val propertyName: Output? = null,
public val `value`: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.app.inputs.DotNetComponentConfigurationPropertyArgs = com.pulumi.azurenative.app.inputs.DotNetComponentConfigurationPropertyArgs.builder()
.propertyName(propertyName?.applyValue({ args0 -> args0 }))
.`value`(`value`?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DotNetComponentConfigurationPropertyArgs].
*/
@PulumiTagMarker
public class DotNetComponentConfigurationPropertyArgsBuilder internal constructor() {
private var propertyName: Output? = null
private var `value`: Output? = null
/**
* @param value The name of the property
*/
@JvmName("qbwcmnifkuibdydv")
public suspend fun propertyName(`value`: Output) {
this.propertyName = value
}
/**
* @param value The value of the property
*/
@JvmName("svwlavxdhyfbthvw")
public suspend fun `value`(`value`: Output) {
this.`value` = value
}
/**
* @param value The name of the property
*/
@JvmName("cymwvmgisfnhfsgc")
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("xxmekydgrhotmmrc")
public suspend fun `value`(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.`value` = mapped
}
internal fun build(): DotNetComponentConfigurationPropertyArgs =
DotNetComponentConfigurationPropertyArgs(
propertyName = propertyName,
`value` = `value`,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy