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

com.pulumi.googlenative.integrations.v1alpha.kotlin.inputs.EnterpriseCrmFrontendsEventbusProtoProtoParameterArrayArgs.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.EnterpriseCrmFrontendsEventbusProtoProtoParameterArrayArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.collections.Map
import kotlin.jvm.JvmName

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

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

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

    @JvmName("nlwdaaeshmamxoie")
    public suspend fun protoValues(vararg values: Output>) {
        this.protoValues = Output.all(values.asList())
    }

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

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

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

    internal fun build(): EnterpriseCrmFrontendsEventbusProtoProtoParameterArrayArgs =
        EnterpriseCrmFrontendsEventbusProtoProtoParameterArrayArgs(
            protoValues = protoValues,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy