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

com.pulumi.googlenative.dataflow.v1b3.kotlin.inputs.BigQueryIODetailsArgs.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.googlenative.dataflow.v1b3.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.dataflow.v1b3.inputs.BigQueryIODetailsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 * Metadata for a BigQuery connector used by the job.
 * @property dataset Dataset accessed in the connection.
 * @property project Project accessed in the connection.
 * @property query Query used to access data in the connection.
 * @property table Table accessed in the connection.
 */
public data class BigQueryIODetailsArgs(
    public val dataset: Output? = null,
    public val project: Output? = null,
    public val query: Output? = null,
    public val table: Output? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.googlenative.dataflow.v1b3.inputs.BigQueryIODetailsArgs =
        com.pulumi.googlenative.dataflow.v1b3.inputs.BigQueryIODetailsArgs.builder()
            .dataset(dataset?.applyValue({ args0 -> args0 }))
            .project(project?.applyValue({ args0 -> args0 }))
            .query(query?.applyValue({ args0 -> args0 }))
            .table(table?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [BigQueryIODetailsArgs].
 */
@PulumiTagMarker
public class BigQueryIODetailsArgsBuilder internal constructor() {
    private var dataset: Output? = null

    private var project: Output? = null

    private var query: Output? = null

    private var table: Output? = null

    /**
     * @param value Dataset accessed in the connection.
     */
    @JvmName("qimbbrroeolkmwgy")
    public suspend fun dataset(`value`: Output) {
        this.dataset = value
    }

    /**
     * @param value Project accessed in the connection.
     */
    @JvmName("raurlaorqhipkfxo")
    public suspend fun project(`value`: Output) {
        this.project = value
    }

    /**
     * @param value Query used to access data in the connection.
     */
    @JvmName("arvearkdbmrqpfmh")
    public suspend fun query(`value`: Output) {
        this.query = value
    }

    /**
     * @param value Table accessed in the connection.
     */
    @JvmName("oojnsacwvhsjkcfb")
    public suspend fun table(`value`: Output) {
        this.table = value
    }

    /**
     * @param value Dataset accessed in the connection.
     */
    @JvmName("njvhqhennuejvmma")
    public suspend fun dataset(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.dataset = mapped
    }

    /**
     * @param value Project accessed in the connection.
     */
    @JvmName("pwtisjbpwsiloibg")
    public suspend fun project(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.project = mapped
    }

    /**
     * @param value Query used to access data in the connection.
     */
    @JvmName("suvxefybtimjmfid")
    public suspend fun query(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.query = mapped
    }

    /**
     * @param value Table accessed in the connection.
     */
    @JvmName("tfhyiejmrunlvaoi")
    public suspend fun table(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.table = mapped
    }

    internal fun build(): BigQueryIODetailsArgs = BigQueryIODetailsArgs(
        dataset = dataset,
        project = project,
        query = query,
        table = table,
    )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy