All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.datastream.kotlin.outputs.StreamBackfillAll.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.datastream.kotlin.outputs

import kotlin.Suppress

/**
 *
 * @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 StreamBackfillAll(
    public val mysqlExcludedObjects: StreamBackfillAllMysqlExcludedObjects? = null,
    public val oracleExcludedObjects: StreamBackfillAllOracleExcludedObjects? = null,
    public val postgresqlExcludedObjects: StreamBackfillAllPostgresqlExcludedObjects? = null,
    public val sqlServerExcludedObjects: StreamBackfillAllSqlServerExcludedObjects? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.datastream.outputs.StreamBackfillAll): StreamBackfillAll = StreamBackfillAll(
            mysqlExcludedObjects = javaType.mysqlExcludedObjects().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.datastream.kotlin.outputs.StreamBackfillAllMysqlExcludedObjects.Companion.toKotlin(args0)
                })
            }).orElse(null),
            oracleExcludedObjects = javaType.oracleExcludedObjects().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.datastream.kotlin.outputs.StreamBackfillAllOracleExcludedObjects.Companion.toKotlin(args0)
                })
            }).orElse(null),
            postgresqlExcludedObjects = javaType.postgresqlExcludedObjects().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.datastream.kotlin.outputs.StreamBackfillAllPostgresqlExcludedObjects.Companion.toKotlin(args0)
                })
            }).orElse(null),
            sqlServerExcludedObjects = javaType.sqlServerExcludedObjects().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.datastream.kotlin.outputs.StreamBackfillAllSqlServerExcludedObjects.Companion.toKotlin(args0)
                })
            }).orElse(null),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy