
com.pulumi.azurenative.datafactory.kotlin.inputs.LakeHouseWriteSettingsArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.datafactory.kotlin.inputs
import com.pulumi.azurenative.datafactory.inputs.LakeHouseWriteSettingsArgs.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
/**
* Microsoft Fabric LakeHouse Files write settings.
* @property copyBehavior The type of copy behavior for copy sink.
* @property disableMetricsCollection If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
* @property maxConcurrentConnections The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
* @property metadata Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
* @property type The write setting type.
* Expected value is 'LakeHouseWriteSettings'.
*/
public data class LakeHouseWriteSettingsArgs(
public val copyBehavior: Output? = null,
public val disableMetricsCollection: Output? = null,
public val maxConcurrentConnections: Output? = null,
public val metadata: Output>? = null,
public val type: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.LakeHouseWriteSettingsArgs =
com.pulumi.azurenative.datafactory.inputs.LakeHouseWriteSettingsArgs.builder()
.copyBehavior(copyBehavior?.applyValue({ args0 -> args0 }))
.disableMetricsCollection(disableMetricsCollection?.applyValue({ args0 -> args0 }))
.maxConcurrentConnections(maxConcurrentConnections?.applyValue({ args0 -> args0 }))
.metadata(
metadata?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.type(type.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [LakeHouseWriteSettingsArgs].
*/
@PulumiTagMarker
public class LakeHouseWriteSettingsArgsBuilder internal constructor() {
private var copyBehavior: Output? = null
private var disableMetricsCollection: Output? = null
private var maxConcurrentConnections: Output? = null
private var metadata: Output>? = null
private var type: Output? = null
/**
* @param value The type of copy behavior for copy sink.
*/
@JvmName("didaakcyijqvbnoo")
public suspend fun copyBehavior(`value`: Output) {
this.copyBehavior = value
}
/**
* @param value If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
*/
@JvmName("xobhswqlamwatdvs")
public suspend fun disableMetricsCollection(`value`: Output) {
this.disableMetricsCollection = value
}
/**
* @param value The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
*/
@JvmName("hcheevnycoyilcur")
public suspend fun maxConcurrentConnections(`value`: Output) {
this.maxConcurrentConnections = value
}
/**
* @param value Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
*/
@JvmName("hijtkjxnlsfebhqc")
public suspend fun metadata(`value`: Output>) {
this.metadata = value
}
@JvmName("kwqmhkdpmrucvqjt")
public suspend fun metadata(vararg values: Output) {
this.metadata = Output.all(values.asList())
}
/**
* @param values Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
*/
@JvmName("aswbvvijvpcqxshu")
public suspend fun metadata(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy