com.pulumi.gcp.datastream.kotlin.inputs.StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgs.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.StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgs.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 oracleColumns Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
* Structure is documented below.
* @property table Table name.
*/
public data class StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgs(
public val oracleColumns: Output>? =
null,
public val table: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.datastream.inputs.StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgs =
com.pulumi.gcp.datastream.inputs.StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgs.builder()
.oracleColumns(
oracleColumns?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.table(table.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgs].
*/
@PulumiTagMarker
public class StreamBackfillAllOracleExcludedObjectsOracleSchemaOracleTableArgsBuilder internal constructor() {
private var oracleColumns:
Output>? =
null
private var table: Output? = null
/**
* @param value Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
* Structure is documented below.
*/
@JvmName("ampmvimtelicqhtw")
public suspend fun oracleColumns(`value`: Output>) {
this.oracleColumns = value
}
@JvmName("mdiaxrrhbotgvpiq")
public suspend fun oracleColumns(vararg values: Output) {
this.oracleColumns = Output.all(values.asList())
}
/**
* @param values Oracle columns in the schema. When unspecified as part of include/exclude objects, includes/excludes everything.
* Structure is documented below.
*/
@JvmName("gvkroygyykmhgwvy")
public suspend fun oracleColumns(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy