![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.inputs.SqlPartitionSettingsArgs.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.SqlPartitionSettingsArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Any
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The settings that will be leveraged for Sql source partitioning.
* @property partitionColumnName The name of the column in integer or datetime type that will be used for proceeding partitioning. If not specified, the primary key of the table is auto-detected and used as the partition column. Type: string (or Expression with resultType string).
* @property partitionLowerBound The minimum value of the partition column for partition range splitting. This value is used to decide the partition stride, not for filtering the rows in table. All rows in the table or query result will be partitioned and copied. Type: string (or Expression with resultType string).
* @property partitionUpperBound The maximum value of the partition column for partition range splitting. This value is used to decide the partition stride, not for filtering the rows in table. All rows in the table or query result will be partitioned and copied. Type: string (or Expression with resultType string).
*/
public data class SqlPartitionSettingsArgs(
public val partitionColumnName: Output? = null,
public val partitionLowerBound: Output? = null,
public val partitionUpperBound: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.SqlPartitionSettingsArgs =
com.pulumi.azurenative.datafactory.inputs.SqlPartitionSettingsArgs.builder()
.partitionColumnName(partitionColumnName?.applyValue({ args0 -> args0 }))
.partitionLowerBound(partitionLowerBound?.applyValue({ args0 -> args0 }))
.partitionUpperBound(partitionUpperBound?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SqlPartitionSettingsArgs].
*/
@PulumiTagMarker
public class SqlPartitionSettingsArgsBuilder internal constructor() {
private var partitionColumnName: Output? = null
private var partitionLowerBound: Output? = null
private var partitionUpperBound: Output? = null
/**
* @param value The name of the column in integer or datetime type that will be used for proceeding partitioning. If not specified, the primary key of the table is auto-detected and used as the partition column. Type: string (or Expression with resultType string).
*/
@JvmName("evukecnjiwvmianv")
public suspend fun partitionColumnName(`value`: Output) {
this.partitionColumnName = value
}
/**
* @param value The minimum value of the partition column for partition range splitting. This value is used to decide the partition stride, not for filtering the rows in table. All rows in the table or query result will be partitioned and copied. Type: string (or Expression with resultType string).
*/
@JvmName("dbtmyxjxfxvnxhtj")
public suspend fun partitionLowerBound(`value`: Output) {
this.partitionLowerBound = value
}
/**
* @param value The maximum value of the partition column for partition range splitting. This value is used to decide the partition stride, not for filtering the rows in table. All rows in the table or query result will be partitioned and copied. Type: string (or Expression with resultType string).
*/
@JvmName("hcghhvtuqefwmevj")
public suspend fun partitionUpperBound(`value`: Output) {
this.partitionUpperBound = value
}
/**
* @param value The name of the column in integer or datetime type that will be used for proceeding partitioning. If not specified, the primary key of the table is auto-detected and used as the partition column. Type: string (or Expression with resultType string).
*/
@JvmName("hlwdmsqkdvlsfynr")
public suspend fun partitionColumnName(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.partitionColumnName = mapped
}
/**
* @param value The minimum value of the partition column for partition range splitting. This value is used to decide the partition stride, not for filtering the rows in table. All rows in the table or query result will be partitioned and copied. Type: string (or Expression with resultType string).
*/
@JvmName("nopoqdgicguwdrso")
public suspend fun partitionLowerBound(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.partitionLowerBound = mapped
}
/**
* @param value The maximum value of the partition column for partition range splitting. This value is used to decide the partition stride, not for filtering the rows in table. All rows in the table or query result will be partitioned and copied. Type: string (or Expression with resultType string).
*/
@JvmName("pwdrsbyvawddurbm")
public suspend fun partitionUpperBound(`value`: Any?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.partitionUpperBound = mapped
}
internal fun build(): SqlPartitionSettingsArgs = SqlPartitionSettingsArgs(
partitionColumnName = partitionColumnName,
partitionLowerBound = partitionLowerBound,
partitionUpperBound = partitionUpperBound,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy