
com.pulumi.googlenative.datastream.v1.kotlin.outputs.BackfillAllStrategyResponse.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.outputs
import kotlin.Suppress
/**
* Backfill strategy to automatically backfill the Stream's objects. Specific objects can be excluded.
* @property mysqlExcludedObjects MySQL data source objects to avoid backfilling.
* @property oracleExcludedObjects Oracle data source objects to avoid backfilling.
* @property postgresqlExcludedObjects PostgreSQL data source objects to avoid backfilling.
*/
public data class BackfillAllStrategyResponse(
public val mysqlExcludedObjects: MysqlRdbmsResponse,
public val oracleExcludedObjects: OracleRdbmsResponse,
public val postgresqlExcludedObjects: PostgresqlRdbmsResponse,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.datastream.v1.outputs.BackfillAllStrategyResponse): BackfillAllStrategyResponse = BackfillAllStrategyResponse(
mysqlExcludedObjects = javaType.mysqlExcludedObjects().let({ args0 ->
com.pulumi.googlenative.datastream.v1.kotlin.outputs.MysqlRdbmsResponse.Companion.toKotlin(args0)
}),
oracleExcludedObjects = javaType.oracleExcludedObjects().let({ args0 ->
com.pulumi.googlenative.datastream.v1.kotlin.outputs.OracleRdbmsResponse.Companion.toKotlin(args0)
}),
postgresqlExcludedObjects = javaType.postgresqlExcludedObjects().let({ args0 ->
com.pulumi.googlenative.datastream.v1.kotlin.outputs.PostgresqlRdbmsResponse.Companion.toKotlin(args0)
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy