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

com.pulumi.gcp.dataproc.kotlin.inputs.JobHiveConfigArgs.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.dataproc.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.dataproc.inputs.JobHiveConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Pair
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName

/**
 *
 * @property continueOnFailure Whether to continue executing queries if a query fails. The default value is false. Setting to true can be useful when executing independent parallel queries. Defaults to false.
 * @property jarFileUris HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.
 * @property properties A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in `/etc/hadoop/conf/*-site.xml`, `/etc/hive/conf/hive-site.xml`, and classes in user code..
 * @property queryFileUri HCFS URI of file containing Hive script to execute as the job.
 * Conflicts with `query_list`
 * @property queryLists The list of Hive queries or statements to execute as part of the job.
 * Conflicts with `query_file_uri`
 * @property scriptVariables Mapping of query variable names to values (equivalent to the Hive command: `SET name="value";`).
 * */
 */
public data class JobHiveConfigArgs(
    public val continueOnFailure: Output? = null,
    public val jarFileUris: Output>? = null,
    public val properties: Output>? = null,
    public val queryFileUri: Output? = null,
    public val queryLists: Output>? = null,
    public val scriptVariables: Output>? = null,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.dataproc.inputs.JobHiveConfigArgs =
        com.pulumi.gcp.dataproc.inputs.JobHiveConfigArgs.builder()
            .continueOnFailure(continueOnFailure?.applyValue({ args0 -> args0 }))
            .jarFileUris(jarFileUris?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .properties(
                properties?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            )
            .queryFileUri(queryFileUri?.applyValue({ args0 -> args0 }))
            .queryLists(queryLists?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
            .scriptVariables(
                scriptVariables?.applyValue({ args0 ->
                    args0.map({ args0 ->
                        args0.key.to(args0.value)
                    }).toMap()
                }),
            ).build()
}

/**
 * Builder for [JobHiveConfigArgs].
 */
@PulumiTagMarker
public class JobHiveConfigArgsBuilder internal constructor() {
    private var continueOnFailure: Output? = null

    private var jarFileUris: Output>? = null

    private var properties: Output>? = null

    private var queryFileUri: Output? = null

    private var queryLists: Output>? = null

    private var scriptVariables: Output>? = null

    /**
     * @param value Whether to continue executing queries if a query fails. The default value is false. Setting to true can be useful when executing independent parallel queries. Defaults to false.
     */
    @JvmName("kslvsodhjpjwsdmc")
    public suspend fun continueOnFailure(`value`: Output) {
        this.continueOnFailure = value
    }

    /**
     * @param value HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.
     */
    @JvmName("ahqinvycfqyscojq")
    public suspend fun jarFileUris(`value`: Output>) {
        this.jarFileUris = value
    }

    @JvmName("abbxqeuobnrjvmvt")
    public suspend fun jarFileUris(vararg values: Output) {
        this.jarFileUris = Output.all(values.asList())
    }

    /**
     * @param values HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.
     */
    @JvmName("brygeumlrixagyxm")
    public suspend fun jarFileUris(values: List>) {
        this.jarFileUris = Output.all(values)
    }

    /**
     * @param value A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in `/etc/hadoop/conf/*-site.xml`, `/etc/hive/conf/hive-site.xml`, and classes in user code..
     * */
     */
    @JvmName("phgfykkcdfkyybla")
    public suspend fun properties(`value`: Output>) {
        this.properties = value
    }

    /**
     * @param value HCFS URI of file containing Hive script to execute as the job.
     * Conflicts with `query_list`
     */
    @JvmName("qoblfhrdyontycks")
    public suspend fun queryFileUri(`value`: Output) {
        this.queryFileUri = value
    }

    /**
     * @param value The list of Hive queries or statements to execute as part of the job.
     * Conflicts with `query_file_uri`
     */
    @JvmName("ohljtmmickgfrcgi")
    public suspend fun queryLists(`value`: Output>) {
        this.queryLists = value
    }

    @JvmName("kervlblmhuidgkyu")
    public suspend fun queryLists(vararg values: Output) {
        this.queryLists = Output.all(values.asList())
    }

    /**
     * @param values The list of Hive queries or statements to execute as part of the job.
     * Conflicts with `query_file_uri`
     */
    @JvmName("ajerawlndxoghsbl")
    public suspend fun queryLists(values: List>) {
        this.queryLists = Output.all(values)
    }

    /**
     * @param value Mapping of query variable names to values (equivalent to the Hive command: `SET name="value";`).
     */
    @JvmName("adlbyjmktdflkifb")
    public suspend fun scriptVariables(`value`: Output>) {
        this.scriptVariables = value
    }

    /**
     * @param value Whether to continue executing queries if a query fails. The default value is false. Setting to true can be useful when executing independent parallel queries. Defaults to false.
     */
    @JvmName("lilgmfraxowhpxqk")
    public suspend fun continueOnFailure(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.continueOnFailure = mapped
    }

    /**
     * @param value HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.
     */
    @JvmName("kljgapqclsvuvbtf")
    public suspend fun jarFileUris(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.jarFileUris = mapped
    }

    /**
     * @param values HCFS URIs of jar files to add to the CLASSPATH of the Hive server and Hadoop MapReduce (MR) tasks. Can contain Hive SerDes and UDFs.
     */
    @JvmName("akshvfaxtqritvvt")
    public suspend fun jarFileUris(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.jarFileUris = mapped
    }

    /**
     * @param value A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in `/etc/hadoop/conf/*-site.xml`, `/etc/hive/conf/hive-site.xml`, and classes in user code..
     * */
     */
    @JvmName("fggecxtnpmhksqal")
    public suspend fun properties(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.properties = mapped
    }

    /**
     * @param values A mapping of property names and values, used to configure Hive. Properties that conflict with values set by the Cloud Dataproc API may be overwritten. Can include properties set in `/etc/hadoop/conf/*-site.xml`, `/etc/hive/conf/hive-site.xml`, and classes in user code..
     * */
     */
    @JvmName("cthxtqypglrvxjfy")
    public fun properties(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.properties = mapped
    }

    /**
     * @param value HCFS URI of file containing Hive script to execute as the job.
     * Conflicts with `query_list`
     */
    @JvmName("bpudahypbissvnly")
    public suspend fun queryFileUri(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.queryFileUri = mapped
    }

    /**
     * @param value The list of Hive queries or statements to execute as part of the job.
     * Conflicts with `query_file_uri`
     */
    @JvmName("hoftcycwbwqvelfy")
    public suspend fun queryLists(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.queryLists = mapped
    }

    /**
     * @param values The list of Hive queries or statements to execute as part of the job.
     * Conflicts with `query_file_uri`
     */
    @JvmName("sblkdygkoguinjaw")
    public suspend fun queryLists(vararg values: String) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.queryLists = mapped
    }

    /**
     * @param value Mapping of query variable names to values (equivalent to the Hive command: `SET name="value";`).
     */
    @JvmName("jrldarqlmakgtcut")
    public suspend fun scriptVariables(`value`: Map?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.scriptVariables = mapped
    }

    /**
     * @param values Mapping of query variable names to values (equivalent to the Hive command: `SET name="value";`).
     */
    @JvmName("odvthrpfwdvlnjya")
    public fun scriptVariables(vararg values: Pair) {
        val toBeMapped = values.toMap()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.scriptVariables = mapped
    }

    internal fun build(): JobHiveConfigArgs = JobHiveConfigArgs(
        continueOnFailure = continueOnFailure,
        jarFileUris = jarFileUris,
        properties = properties,
        queryFileUri = queryFileUri,
        queryLists = queryLists,
        scriptVariables = scriptVariables,
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy