com.pulumi.gcp.alloydb.kotlin.inputs.ClusterInitialUserArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.alloydb.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.alloydb.inputs.ClusterInitialUserArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property password The initial password for the user.
* **Note**: This property is sensitive and will not be displayed in the plan.
* @property user The database username.
*/
public data class ClusterInitialUserArgs(
public val password: Output,
public val user: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.alloydb.inputs.ClusterInitialUserArgs =
com.pulumi.gcp.alloydb.inputs.ClusterInitialUserArgs.builder()
.password(password.applyValue({ args0 -> args0 }))
.user(user?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ClusterInitialUserArgs].
*/
@PulumiTagMarker
public class ClusterInitialUserArgsBuilder internal constructor() {
private var password: Output? = null
private var user: Output? = null
/**
* @param value The initial password for the user.
* **Note**: This property is sensitive and will not be displayed in the plan.
*/
@JvmName("etkekjbpybtuaydx")
public suspend fun password(`value`: Output) {
this.password = value
}
/**
* @param value The database username.
*/
@JvmName("kwimfagtulbbewwo")
public suspend fun user(`value`: Output) {
this.user = value
}
/**
* @param value The initial password for the user.
* **Note**: This property is sensitive and will not be displayed in the plan.
*/
@JvmName("ukehxkcxhjrafcic")
public suspend fun password(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.password = mapped
}
/**
* @param value The database username.
*/
@JvmName("ydtxujqpbjpgvlim")
public suspend fun user(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.user = mapped
}
internal fun build(): ClusterInitialUserArgs = ClusterInitialUserArgs(
password = password ?: throw PulumiNullFieldException("password"),
user = user,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy