ColumnSpecificationArgs

data class ColumnSpecificationArgs(val enum: Output<List<Any>>? = null, val format: Output<Either<String, ColumnFormat>>? = null, val type: Output<Either<String, ColumnType>>, val xMsIsnullable: Output<Boolean>? = null, val xMsIsordered: Output<Boolean>? = null) : ConvertibleToJava<ColumnSpecificationArgs>

Swagger 2.0 schema for a column within the data table representing a web service input or output. See Swagger specification: http://swagger.io/specification/

Constructors

Link copied to clipboard
constructor(enum: Output<List<Any>>? = null, format: Output<Either<String, ColumnFormat>>? = null, type: Output<Either<String, ColumnType>>, xMsIsnullable: Output<Boolean>? = null, xMsIsordered: Output<Boolean>? = null)

Properties

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

If the data type is categorical, this provides the list of accepted categories.

Link copied to clipboard
val format: Output<Either<String, ColumnFormat>>? = null

Additional format information for the data type.

Link copied to clipboard
val type: Output<Either<String, ColumnType>>

Data type of the column.

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

Flag indicating if the type supports null values or not.

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

Flag indicating whether the categories are treated as an ordered set or not, if this is a categorical column.

Functions

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