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

com.pulumi.googlenative.integrations.v1alpha.kotlin.outputs.EnterpriseCrmEventbusProtoParameterEntryResponse.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.

The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import kotlin.String
import kotlin.Suppress

/**
 * Key-value pair of EventBus parameters.
 * @property key Key is used to retrieve the corresponding parameter value. This should be unique for a given fired event. These parameters must be predefined in the integration definition.
 * @property value Values for the defined keys. Each value can either be string, int, double or any proto message.
 */
public data class EnterpriseCrmEventbusProtoParameterEntryResponse(
    public val key: String,
    public val `value`: EnterpriseCrmEventbusProtoParameterValueTypeResponse,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.googlenative.integrations.v1alpha.outputs.EnterpriseCrmEventbusProtoParameterEntryResponse): EnterpriseCrmEventbusProtoParameterEntryResponse =
            EnterpriseCrmEventbusProtoParameterEntryResponse(
                key = javaType.key(),
                `value` = javaType.`value`().let({ args0 ->
                    com.pulumi.googlenative.integrations.v1alpha.kotlin.outputs.EnterpriseCrmEventbusProtoParameterValueTypeResponse.Companion.toKotlin(args0)
                }),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy