Column Specification Args
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
Additional format information for the data type.
Link copied to clipboard
Data type of the column.
Link copied to clipboard
Flag indicating if the type supports null values or not.
Link copied to clipboard
Flag indicating whether the categories are treated as an ordered set or not, if this is a categorical column.