OraclePartitionSettingsArgs

data class OraclePartitionSettingsArgs(val partitionColumnName: Output<Any>? = null, val partitionLowerBound: Output<Any>? = null, val partitionNames: Output<List<Any>>? = null, val partitionUpperBound: Output<Any>? = null) : ConvertibleToJava<OraclePartitionSettingsArgs>

The settings that will be leveraged for Oracle source partitioning.

Constructors

Link copied to clipboard
constructor(partitionColumnName: Output<Any>? = null, partitionLowerBound: Output<Any>? = null, partitionNames: Output<List<Any>>? = null, partitionUpperBound: Output<Any>? = null)

Properties

Link copied to clipboard
val partitionColumnName: Output<Any>? = null

The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).

Link copied to clipboard
val partitionLowerBound: Output<Any>? = null

The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).

Link copied to clipboard
val partitionNames: Output<List<Any>>? = null

Names of the physical partitions of Oracle table.

Link copied to clipboard
val partitionUpperBound: Output<Any>? = null

The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).

Functions

Link copied to clipboard
open override fun toJava(): OraclePartitionSettingsArgs