![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.inputs.MapperConnectionArgs.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.MapperConnectionArgs.builder
import com.pulumi.azurenative.datafactory.kotlin.enums.ConnectionType
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.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Source connection details.
* @property commonDslConnectorProperties List of name/value pairs for connection properties.
* @property isInlineDataset A boolean indicating whether linked service is of type inline dataset. Currently only inline datasets are supported.
* @property linkedService Linked service reference.
* @property linkedServiceType Type of the linked service e.g.: AzureBlobFS.
* @property type Type of connection via linked service or dataset.
*/
public data class MapperConnectionArgs(
public val commonDslConnectorProperties: Output>? = null,
public val isInlineDataset: Output? = null,
public val linkedService: Output? = null,
public val linkedServiceType: Output? = null,
public val type: Output>,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.MapperConnectionArgs =
com.pulumi.azurenative.datafactory.inputs.MapperConnectionArgs.builder()
.commonDslConnectorProperties(
commonDslConnectorProperties?.applyValue({ args0 ->
args0.map({ args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.isInlineDataset(isInlineDataset?.applyValue({ args0 -> args0 }))
.linkedService(linkedService?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.linkedServiceType(linkedServiceType?.applyValue({ args0 -> args0 }))
.type(
type.applyValue({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [MapperConnectionArgs].
*/
@PulumiTagMarker
public class MapperConnectionArgsBuilder internal constructor() {
private var commonDslConnectorProperties: Output>? = null
private var isInlineDataset: Output? = null
private var linkedService: Output? = null
private var linkedServiceType: Output? = null
private var type: Output>? = null
/**
* @param value List of name/value pairs for connection properties.
*/
@JvmName("uyadlonvynlhucpn")
public suspend fun commonDslConnectorProperties(`value`: Output>) {
this.commonDslConnectorProperties = value
}
@JvmName("nhsjjvtusydspvxg")
public suspend fun commonDslConnectorProperties(vararg values: Output) {
this.commonDslConnectorProperties = Output.all(values.asList())
}
/**
* @param values List of name/value pairs for connection properties.
*/
@JvmName("leduupbjekmtoksu")
public suspend fun commonDslConnectorProperties(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy