com.pulumi.gcp.datastream.kotlin.inputs.StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgs.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.datastream.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.datastream.inputs.StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
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
/**
*
* @property schema Schema name.
* @property tables Tables in the database.
* Structure is documented below.
*/
public data class StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgs(
public val schema: Output,
public val tables: Output>? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.datastream.inputs.StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgs =
com.pulumi.gcp.datastream.inputs.StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgs.builder()
.schema(schema.applyValue({ args0 -> args0 }))
.tables(
tables?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgs].
*/
@PulumiTagMarker
public class StreamSourceConfigSqlServerSourceConfigIncludeObjectsSchemaArgsBuilder internal constructor() {
private var schema: Output? = null
private var tables:
Output>? = null
/**
* @param value Schema name.
*/
@JvmName("wkxylohrreaatrji")
public suspend fun schema(`value`: Output) {
this.schema = value
}
/**
* @param value Tables in the database.
* Structure is documented below.
*/
@JvmName("vgdcygtafugrwtwn")
public suspend fun tables(`value`: Output>) {
this.tables = value
}
@JvmName("wpuihcglkqpuybhb")
public suspend fun tables(vararg values: Output) {
this.tables = Output.all(values.asList())
}
/**
* @param values Tables in the database.
* Structure is documented below.
*/
@JvmName("trhugdmegldkgwod")
public suspend fun tables(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy