![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.streamanalytics.kotlin.inputs.FunctionJavascriptUdaOutputArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.streamanalytics.kotlin.inputs
import com.pulumi.azure.streamanalytics.inputs.FunctionJavascriptUdaOutputArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property type The output data type from this JavaScript Function. Possible values include `any`, `array`, `bigint`, `datetime`, `float`, `nvarchar(max)` and `record`.
*/
public data class FunctionJavascriptUdaOutputArgs(
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.streamanalytics.inputs.FunctionJavascriptUdaOutputArgs =
com.pulumi.azure.streamanalytics.inputs.FunctionJavascriptUdaOutputArgs.builder()
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [FunctionJavascriptUdaOutputArgs].
*/
@PulumiTagMarker
public class FunctionJavascriptUdaOutputArgsBuilder internal constructor() {
private var type: Output? = null
/**
* @param value The output data type from this JavaScript Function. Possible values include `any`, `array`, `bigint`, `datetime`, `float`, `nvarchar(max)` and `record`.
*/
@JvmName("natdkqiejfysjpmh")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value The output data type from this JavaScript Function. Possible values include `any`, `array`, `bigint`, `datetime`, `float`, `nvarchar(max)` and `record`.
*/
@JvmName("rktqjyhcbthfunki")
public suspend fun type(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): FunctionJavascriptUdaOutputArgs = FunctionJavascriptUdaOutputArgs(
type = type ?: throw PulumiNullFieldException("type"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy