
com.pulumi.azurenative.streamanalytics.kotlin.inputs.AggregateFunctionPropertiesArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.streamanalytics.kotlin.inputs
import com.pulumi.azurenative.streamanalytics.inputs.AggregateFunctionPropertiesArgs.builder
import com.pulumi.core.Either
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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* The properties that are associated with an aggregate function.
* @property binding The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
* @property inputs
* @property output Describes the output of a function.
* @property type Indicates the type of function.
* Expected value is 'Aggregate'.
*/
public data class AggregateFunctionPropertiesArgs(
public val binding: Output>? =
null,
public val inputs: Output>? = null,
public val output: Output? = null,
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.streamanalytics.inputs.AggregateFunctionPropertiesArgs =
com.pulumi.azurenative.streamanalytics.inputs.AggregateFunctionPropertiesArgs.builder()
.binding(
binding?.applyValue({ args0 ->
args0.transform({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}, { args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.inputs(inputs?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.output(output?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AggregateFunctionPropertiesArgs].
*/
@PulumiTagMarker
public class AggregateFunctionPropertiesArgsBuilder internal constructor() {
private var binding:
Output>? =
null
private var inputs: Output>? = null
private var output: Output? = null
private var type: Output? = null
/**
* @param value The physical binding of the function. For example, in the Azure Machine Learning web service’s case, this describes the endpoint.
*/
@JvmName("xyyprxyjriflwyum")
public suspend fun binding(`value`: Output>) {
this.binding = value
}
/**
* @param value
*/
@JvmName("csdyoemlnlcamcth")
public suspend fun inputs(`value`: Output>) {
this.inputs = value
}
@JvmName("jixexgqtuhmsexag")
public suspend fun inputs(vararg values: Output) {
this.inputs = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("icvjosbcjlayeiyx")
public suspend fun inputs(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy