com.pulumi.gcp.datastream.kotlin.inputs.StreamBackfillAllArgs.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.StreamBackfillAllArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property mysqlExcludedObjects MySQL data source objects to avoid backfilling.
* Structure is documented below.
* @property oracleExcludedObjects PostgreSQL data source objects to avoid backfilling.
* Structure is documented below.
* @property postgresqlExcludedObjects PostgreSQL data source objects to avoid backfilling.
* Structure is documented below.
* @property sqlServerExcludedObjects SQL Server data source objects to avoid backfilling.
* Structure is documented below.
*/
public data class StreamBackfillAllArgs(
public val mysqlExcludedObjects: Output? = null,
public val oracleExcludedObjects: Output? = null,
public val postgresqlExcludedObjects: Output? =
null,
public val sqlServerExcludedObjects: Output? =
null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.datastream.inputs.StreamBackfillAllArgs =
com.pulumi.gcp.datastream.inputs.StreamBackfillAllArgs.builder()
.mysqlExcludedObjects(
mysqlExcludedObjects?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.oracleExcludedObjects(
oracleExcludedObjects?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.postgresqlExcludedObjects(
postgresqlExcludedObjects?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.sqlServerExcludedObjects(
sqlServerExcludedObjects?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [StreamBackfillAllArgs].
*/
@PulumiTagMarker
public class StreamBackfillAllArgsBuilder internal constructor() {
private var mysqlExcludedObjects: Output? = null
private var oracleExcludedObjects: Output? = null
private var postgresqlExcludedObjects: Output? =
null
private var sqlServerExcludedObjects: Output? =
null
/**
* @param value MySQL data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("jtjgtnvidlflsiii")
public suspend fun mysqlExcludedObjects(`value`: Output) {
this.mysqlExcludedObjects = value
}
/**
* @param value PostgreSQL data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("kgdkuqcrpgcotole")
public suspend fun oracleExcludedObjects(`value`: Output) {
this.oracleExcludedObjects = value
}
/**
* @param value PostgreSQL data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("siqlummbvikgukia")
public suspend fun postgresqlExcludedObjects(`value`: Output) {
this.postgresqlExcludedObjects = value
}
/**
* @param value SQL Server data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("amleskdeednsvhtg")
public suspend fun sqlServerExcludedObjects(`value`: Output) {
this.sqlServerExcludedObjects = value
}
/**
* @param value MySQL data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("rvpltiybjqfjbmho")
public suspend fun mysqlExcludedObjects(`value`: StreamBackfillAllMysqlExcludedObjectsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.mysqlExcludedObjects = mapped
}
/**
* @param argument MySQL data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("kgifsemuyqbrwoph")
public suspend fun mysqlExcludedObjects(argument: suspend StreamBackfillAllMysqlExcludedObjectsArgsBuilder.() -> Unit) {
val toBeMapped = StreamBackfillAllMysqlExcludedObjectsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.mysqlExcludedObjects = mapped
}
/**
* @param value PostgreSQL data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("aygnpecvfouekpbr")
public suspend fun oracleExcludedObjects(`value`: StreamBackfillAllOracleExcludedObjectsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.oracleExcludedObjects = mapped
}
/**
* @param argument PostgreSQL data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("mwmucjwfioopkkil")
public suspend fun oracleExcludedObjects(argument: suspend StreamBackfillAllOracleExcludedObjectsArgsBuilder.() -> Unit) {
val toBeMapped = StreamBackfillAllOracleExcludedObjectsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.oracleExcludedObjects = mapped
}
/**
* @param value PostgreSQL data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("mwtglhjvcxhkcocd")
public suspend fun postgresqlExcludedObjects(`value`: StreamBackfillAllPostgresqlExcludedObjectsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.postgresqlExcludedObjects = mapped
}
/**
* @param argument PostgreSQL data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("pbnurlubdphnirwi")
public suspend fun postgresqlExcludedObjects(argument: suspend StreamBackfillAllPostgresqlExcludedObjectsArgsBuilder.() -> Unit) {
val toBeMapped = StreamBackfillAllPostgresqlExcludedObjectsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.postgresqlExcludedObjects = mapped
}
/**
* @param value SQL Server data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("qwqugqfmgmdjgvkc")
public suspend fun sqlServerExcludedObjects(`value`: StreamBackfillAllSqlServerExcludedObjectsArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sqlServerExcludedObjects = mapped
}
/**
* @param argument SQL Server data source objects to avoid backfilling.
* Structure is documented below.
*/
@JvmName("rsxscedetttyxdha")
public suspend fun sqlServerExcludedObjects(argument: suspend StreamBackfillAllSqlServerExcludedObjectsArgsBuilder.() -> Unit) {
val toBeMapped = StreamBackfillAllSqlServerExcludedObjectsArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.sqlServerExcludedObjects = mapped
}
internal fun build(): StreamBackfillAllArgs = StreamBackfillAllArgs(
mysqlExcludedObjects = mysqlExcludedObjects,
oracleExcludedObjects = oracleExcludedObjects,
postgresqlExcludedObjects = postgresqlExcludedObjects,
sqlServerExcludedObjects = sqlServerExcludedObjects,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy