OracleColumnArgs

data class OracleColumnArgs(val column: Output<String>? = null, val dataType: Output<String>? = null, val encoding: Output<String>? = null, val length: Output<Int>? = null, val nullable: Output<Boolean>? = null, val ordinalPosition: Output<Int>? = null, val precision: Output<Int>? = null, val primaryKey: Output<Boolean>? = null, val scale: Output<Int>? = null) : ConvertibleToJava<OracleColumnArgs>

Oracle Column.

Constructors

Link copied to clipboard
fun OracleColumnArgs(column: Output<String>? = null, dataType: Output<String>? = null, encoding: Output<String>? = null, length: Output<Int>? = null, nullable: Output<Boolean>? = null, ordinalPosition: Output<Int>? = null, precision: Output<Int>? = null, primaryKey: Output<Boolean>? = null, scale: Output<Int>? = null)

Functions

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

Properties

Link copied to clipboard
val column: Output<String>? = null

Column name.

Link copied to clipboard
val dataType: Output<String>? = null

The Oracle data type.

Link copied to clipboard
val encoding: Output<String>? = null

Column encoding.

Link copied to clipboard
val length: Output<Int>? = null

Column length.

Link copied to clipboard
val nullable: Output<Boolean>? = null

Whether or not the column can accept a null value.

Link copied to clipboard
val ordinalPosition: Output<Int>? = null

The ordinal position of the column in the table.

Link copied to clipboard
val precision: Output<Int>? = null

Column precision.

Link copied to clipboard
val primaryKey: Output<Boolean>? = null

Whether or not the column represents a primary key.

Link copied to clipboard
val scale: Output<Int>? = null

Column scale.