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

com.pulumi.googlenative.integrations.v1alpha.kotlin.inputs.EnterpriseCrmEventbusProtoDoubleParameterArrayArgs.kt Maven / Gradle / Ivy

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

package com.pulumi.googlenative.integrations.v1alpha.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.integrations.v1alpha.inputs.EnterpriseCrmEventbusProtoDoubleParameterArrayArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Double
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName

/**
 *
 * @property doubleValues
 */
public data class EnterpriseCrmEventbusProtoDoubleParameterArrayArgs(
    public val doubleValues: Output>? = null,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.googlenative.integrations.v1alpha.inputs.EnterpriseCrmEventbusProtoDoubleParameterArrayArgs =
        com.pulumi.googlenative.integrations.v1alpha.inputs.EnterpriseCrmEventbusProtoDoubleParameterArrayArgs.builder()
            .doubleValues(doubleValues?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}

/**
 * Builder for [EnterpriseCrmEventbusProtoDoubleParameterArrayArgs].
 */
@PulumiTagMarker
public class EnterpriseCrmEventbusProtoDoubleParameterArrayArgsBuilder internal constructor() {
    private var doubleValues: Output>? = null

    /**
     * @param value
     */
    @JvmName("rlnawvmnjwrfiykg")
    public suspend fun doubleValues(`value`: Output>) {
        this.doubleValues = value
    }

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

    /**
     * @param values
     */
    @JvmName("esmhntsfkbpgkphw")
    public suspend fun doubleValues(values: List>) {
        this.doubleValues = Output.all(values)
    }

    /**
     * @param value
     */
    @JvmName("asklcgidqhqjpprc")
    public suspend fun doubleValues(`value`: List?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.doubleValues = mapped
    }

    /**
     * @param values
     */
    @JvmName("rexkemagnkhfhplc")
    public suspend fun doubleValues(vararg values: Double) {
        val toBeMapped = values.toList()
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.doubleValues = mapped
    }

    internal fun build(): EnterpriseCrmEventbusProtoDoubleParameterArrayArgs =
        EnterpriseCrmEventbusProtoDoubleParameterArrayArgs(
            doubleValues = doubleValues,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy