
com.pulumi.azurenative.datafactory.kotlin.inputs.MapperTargetConnectionsInfoArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.datafactory.kotlin.inputs
import com.pulumi.azurenative.datafactory.inputs.MapperTargetConnectionsInfoArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Any
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* A object which contains list of tables and connection details for a target connection.
* @property connection Source connection details.
* @property dataMapperMappings List of table mappings.
* @property relationships List of relationship info among the tables.
* @property targetEntities List of source tables for a target connection.
*/
public data class MapperTargetConnectionsInfoArgs(
public val connection: Output? = null,
public val dataMapperMappings: Output>? = null,
public val relationships: Output>? = null,
public val targetEntities: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.MapperTargetConnectionsInfoArgs =
com.pulumi.azurenative.datafactory.inputs.MapperTargetConnectionsInfoArgs.builder()
.connection(connection?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.dataMapperMappings(
dataMapperMappings?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 -> args0.toJava() })
})
}),
)
.relationships(relationships?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.targetEntities(
targetEntities?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [MapperTargetConnectionsInfoArgs].
*/
@PulumiTagMarker
public class MapperTargetConnectionsInfoArgsBuilder internal constructor() {
private var connection: Output? = null
private var dataMapperMappings: Output>? = null
private var relationships: Output>? = null
private var targetEntities: Output>? = null
/**
* @param value Source connection details.
*/
@JvmName("fvrqnxpxwapdsqvx")
public suspend fun connection(`value`: Output) {
this.connection = value
}
/**
* @param value List of table mappings.
*/
@JvmName("iortjjsjwnniwkbe")
public suspend fun dataMapperMappings(`value`: Output>) {
this.dataMapperMappings = value
}
@JvmName("dtqqdenwupmteykq")
public suspend fun dataMapperMappings(vararg values: Output) {
this.dataMapperMappings = Output.all(values.asList())
}
/**
* @param values List of table mappings.
*/
@JvmName("nsegaxtkompuaxwp")
public suspend fun dataMapperMappings(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy