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