![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.inputs.MappingDataFlowArgs.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.datafactory.kotlin.inputs
import com.pulumi.azurenative.datafactory.inputs.MappingDataFlowArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Mapping data flow.
* @property annotations List of tags that can be used for describing the data flow.
* @property description The description of the data flow.
* @property folder The folder that this data flow is in. If not specified, Data flow will appear at the root level.
* @property script DataFlow script.
* @property scriptLines Data flow script lines.
* @property sinks List of sinks in data flow.
* @property sources List of sources in data flow.
* @property transformations List of transformations in data flow.
* @property type Type of data flow.
* Expected value is 'MappingDataFlow'.
*/
public data class MappingDataFlowArgs(
public val annotations: Output>? = null,
public val description: Output? = null,
public val folder: Output? = null,
public val script: Output? = null,
public val scriptLines: Output>? = null,
public val sinks: Output>? = null,
public val sources: Output>? = null,
public val transformations: Output>? = null,
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.MappingDataFlowArgs =
com.pulumi.azurenative.datafactory.inputs.MappingDataFlowArgs.builder()
.annotations(annotations?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.description(description?.applyValue({ args0 -> args0 }))
.folder(folder?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.script(script?.applyValue({ args0 -> args0 }))
.scriptLines(scriptLines?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.sinks(sinks?.applyValue({ args0 -> args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) }) }))
.sources(
sources?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.transformations(
transformations?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [MappingDataFlowArgs].
*/
@PulumiTagMarker
public class MappingDataFlowArgsBuilder internal constructor() {
private var annotations: Output>? = null
private var description: Output? = null
private var folder: Output? = null
private var script: Output? = null
private var scriptLines: Output>? = null
private var sinks: Output>? = null
private var sources: Output>? = null
private var transformations: Output>? = null
private var type: Output? = null
/**
* @param value List of tags that can be used for describing the data flow.
*/
@JvmName("ddtkeclipjrmeomt")
public suspend fun annotations(`value`: Output>) {
this.annotations = value
}
@JvmName("xbjsddurtaomegpi")
public suspend fun annotations(vararg values: Output) {
this.annotations = Output.all(values.asList())
}
/**
* @param values List of tags that can be used for describing the data flow.
*/
@JvmName("wjwmjidcnehxlhym")
public suspend fun annotations(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy