![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.insights.kotlin.inputs.DataFlowArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.insights.kotlin.inputs
import com.pulumi.azurenative.insights.inputs.DataFlowArgs.builder
import com.pulumi.azurenative.insights.kotlin.enums.KnownDataFlowStreams
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.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Definition of which streams are sent to which destinations.
* @property builtInTransform The builtIn transform to transform stream data
* @property destinations List of destinations for this data flow.
* @property outputStream The output stream of the transform. Only required if the transform changes data to a different stream.
* @property streams List of streams for this data flow.
* @property transformKql The KQL query to transform stream data.
*/
public data class DataFlowArgs(
public val builtInTransform: Output? = null,
public val destinations: Output>? = null,
public val outputStream: Output? = null,
public val streams: Output>>? = null,
public val transformKql: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.insights.inputs.DataFlowArgs =
com.pulumi.azurenative.insights.inputs.DataFlowArgs.builder()
.builtInTransform(builtInTransform?.applyValue({ args0 -> args0 }))
.destinations(destinations?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.outputStream(outputStream?.applyValue({ args0 -> args0 }))
.streams(
streams?.applyValue({ args0 ->
args0.map({ args0 ->
args0.transform(
{ args0 -> args0 },
{ args0 -> args0.let({ args0 -> args0.toJava() }) },
)
})
}),
)
.transformKql(transformKql?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DataFlowArgs].
*/
@PulumiTagMarker
public class DataFlowArgsBuilder internal constructor() {
private var builtInTransform: Output? = null
private var destinations: Output>? = null
private var outputStream: Output? = null
private var streams: Output>>? = null
private var transformKql: Output? = null
/**
* @param value The builtIn transform to transform stream data
*/
@JvmName("vyewtcyelwdkkopc")
public suspend fun builtInTransform(`value`: Output) {
this.builtInTransform = value
}
/**
* @param value List of destinations for this data flow.
*/
@JvmName("xnnvushyjmlbbiyj")
public suspend fun destinations(`value`: Output>) {
this.destinations = value
}
@JvmName("lxsleypblnkfrsas")
public suspend fun destinations(vararg values: Output) {
this.destinations = Output.all(values.asList())
}
/**
* @param values List of destinations for this data flow.
*/
@JvmName("spfigneexpbyvgee")
public suspend fun destinations(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy