com.pulumi.gcp.datastream.kotlin.inputs.StreamBackfillAllOracleExcludedObjectsArgs.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.StreamBackfillAllOracleExcludedObjectsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property oracleSchemas Oracle schemas/databases in the database server
* Structure is documented below.
*/
public data class StreamBackfillAllOracleExcludedObjectsArgs(
public val oracleSchemas: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.datastream.inputs.StreamBackfillAllOracleExcludedObjectsArgs = com.pulumi.gcp.datastream.inputs.StreamBackfillAllOracleExcludedObjectsArgs.builder()
.oracleSchemas(
oracleSchemas.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [StreamBackfillAllOracleExcludedObjectsArgs].
*/
@PulumiTagMarker
public class StreamBackfillAllOracleExcludedObjectsArgsBuilder internal constructor() {
private var oracleSchemas: Output>? =
null
/**
* @param value Oracle schemas/databases in the database server
* Structure is documented below.
*/
@JvmName("ydxyqaquitrqxkhv")
public suspend fun oracleSchemas(`value`: Output>) {
this.oracleSchemas = value
}
@JvmName("jwuksmynprchxnwt")
public suspend fun oracleSchemas(vararg values: Output) {
this.oracleSchemas = Output.all(values.asList())
}
/**
* @param values Oracle schemas/databases in the database server
* Structure is documented below.
*/
@JvmName("beaqqamtstgcsqrj")
public suspend fun oracleSchemas(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy