
com.pulumi.googlenative.datastream.v1.kotlin.inputs.MysqlTableArgs.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.datastream.v1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.datastream.v1.inputs.MysqlTableArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* MySQL table.
* @property mysqlColumns MySQL columns in the database. When unspecified as part of include/exclude objects, includes/excludes everything.
* @property table Table name.
*/
public data class MysqlTableArgs(
public val mysqlColumns: Output>? = null,
public val table: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.datastream.v1.inputs.MysqlTableArgs =
com.pulumi.googlenative.datastream.v1.inputs.MysqlTableArgs.builder()
.mysqlColumns(
mysqlColumns?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.table(table?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [MysqlTableArgs].
*/
@PulumiTagMarker
public class MysqlTableArgsBuilder internal constructor() {
private var mysqlColumns: Output>? = null
private var table: Output? = null
/**
* @param value MySQL columns in the database. When unspecified as part of include/exclude objects, includes/excludes everything.
*/
@JvmName("wococopyalklwnut")
public suspend fun mysqlColumns(`value`: Output>) {
this.mysqlColumns = value
}
@JvmName("rnrgjasfrjilabre")
public suspend fun mysqlColumns(vararg values: Output) {
this.mysqlColumns = Output.all(values.asList())
}
/**
* @param values MySQL columns in the database. When unspecified as part of include/exclude objects, includes/excludes everything.
*/
@JvmName("eufuesagdpcmysgq")
public suspend fun mysqlColumns(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy