![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.inputs.DocumentDbCollectionSinkArgs.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.DocumentDbCollectionSinkArgs.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 kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* A copy activity Document Database Collection 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 sink data store. Type: integer (or Expression with resultType integer).
* @property nestingSeparator Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
* @property sinkRetryCount Sink retry count. Type: integer (or Expression with resultType integer).
* @property sinkRetryWait Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
* @property type Copy sink type.
* Expected value is 'DocumentDbCollectionSink'.
* @property writeBatchSize Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
* @property writeBatchTimeout Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
* @property writeBehavior Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
*/
public data class DocumentDbCollectionSinkArgs(
public val disableMetricsCollection: Output? = null,
public val maxConcurrentConnections: Output? = null,
public val nestingSeparator: Output? = null,
public val sinkRetryCount: Output? = null,
public val sinkRetryWait: Output? = null,
public val type: Output,
public val writeBatchSize: Output? = null,
public val writeBatchTimeout: Output? = null,
public val writeBehavior: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.DocumentDbCollectionSinkArgs =
com.pulumi.azurenative.datafactory.inputs.DocumentDbCollectionSinkArgs.builder()
.disableMetricsCollection(disableMetricsCollection?.applyValue({ args0 -> args0 }))
.maxConcurrentConnections(maxConcurrentConnections?.applyValue({ args0 -> args0 }))
.nestingSeparator(nestingSeparator?.applyValue({ args0 -> args0 }))
.sinkRetryCount(sinkRetryCount?.applyValue({ args0 -> args0 }))
.sinkRetryWait(sinkRetryWait?.applyValue({ args0 -> args0 }))
.type(type.applyValue({ args0 -> args0 }))
.writeBatchSize(writeBatchSize?.applyValue({ args0 -> args0 }))
.writeBatchTimeout(writeBatchTimeout?.applyValue({ args0 -> args0 }))
.writeBehavior(writeBehavior?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [DocumentDbCollectionSinkArgs].
*/
@PulumiTagMarker
public class DocumentDbCollectionSinkArgsBuilder internal constructor() {
private var disableMetricsCollection: Output? = null
private var maxConcurrentConnections: Output? = null
private var nestingSeparator: Output? = null
private var sinkRetryCount: Output? = null
private var sinkRetryWait: Output? = null
private var type: Output? = null
private var writeBatchSize: Output? = null
private var writeBatchTimeout: Output? = null
private var writeBehavior: Output? = null
/**
* @param value If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
*/
@JvmName("xnjgahvreobftmja")
public suspend fun disableMetricsCollection(`value`: Output) {
this.disableMetricsCollection = value
}
/**
* @param value The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
*/
@JvmName("hohfutdynlkcjqrm")
public suspend fun maxConcurrentConnections(`value`: Output) {
this.maxConcurrentConnections = value
}
/**
* @param value Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
*/
@JvmName("xrqcvrdnepxmciao")
public suspend fun nestingSeparator(`value`: Output) {
this.nestingSeparator = value
}
/**
* @param value Sink retry count. Type: integer (or Expression with resultType integer).
*/
@JvmName("ymbbairveqgduxsi")
public suspend fun sinkRetryCount(`value`: Output) {
this.sinkRetryCount = value
}
/**
* @param value Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*/
@JvmName("pbnnpmeyiuvjmvns")
public suspend fun sinkRetryWait(`value`: Output) {
this.sinkRetryWait = value
}
/**
* @param value Copy sink type.
* Expected value is 'DocumentDbCollectionSink'.
*/
@JvmName("bceokmnymfepolqq")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
*/
@JvmName("skbkufhjvajfwrni")
public suspend fun writeBatchSize(`value`: Output) {
this.writeBatchSize = value
}
/**
* @param value Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*/
@JvmName("xcothvayrjprrwwd")
public suspend fun writeBatchTimeout(`value`: Output) {
this.writeBatchTimeout = value
}
/**
* @param value Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
*/
@JvmName("ccvnicacmcuryuyc")
public suspend fun writeBehavior(`value`: Output) {
this.writeBehavior = value
}
/**
* @param value If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
*/
@JvmName("igswuavwengmwqbn")
public suspend fun disableMetricsCollection(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.disableMetricsCollection = mapped
}
/**
* @param value The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
*/
@JvmName("ymbdkgnehyidsobl")
public suspend fun maxConcurrentConnections(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.maxConcurrentConnections = mapped
}
/**
* @param value Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
*/
@JvmName("bjhutjwoxysdqhyu")
public suspend fun nestingSeparator(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.nestingSeparator = mapped
}
/**
* @param value Sink retry count. Type: integer (or Expression with resultType integer).
*/
@JvmName("iixibosnfjqmymlb")
public suspend fun sinkRetryCount(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sinkRetryCount = mapped
}
/**
* @param value Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*/
@JvmName("uenkifdgnibexkih")
public suspend fun sinkRetryWait(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sinkRetryWait = mapped
}
/**
* @param value Copy sink type.
* Expected value is 'DocumentDbCollectionSink'.
*/
@JvmName("yhlusmiplqjopbfc")
public suspend fun type(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.type = mapped
}
/**
* @param value Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
*/
@JvmName("ybcbfyfqckxwjshn")
public suspend fun writeBatchSize(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.writeBatchSize = mapped
}
/**
* @param value Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*/
@JvmName("udbuopdxkcfsfhul")
public suspend fun writeBatchTimeout(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.writeBatchTimeout = mapped
}
/**
* @param value Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
*/
@JvmName("rvlrlkusficnddfm")
public suspend fun writeBehavior(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.writeBehavior = mapped
}
internal fun build(): DocumentDbCollectionSinkArgs = DocumentDbCollectionSinkArgs(
disableMetricsCollection = disableMetricsCollection,
maxConcurrentConnections = maxConcurrentConnections,
nestingSeparator = nestingSeparator,
sinkRetryCount = sinkRetryCount,
sinkRetryWait = sinkRetryWait,
type = type ?: throw PulumiNullFieldException("type"),
writeBatchSize = writeBatchSize,
writeBatchTimeout = writeBatchTimeout,
writeBehavior = writeBehavior,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy