StandardSqlFieldArgs

data class StandardSqlFieldArgs(val name: Output<String>? = null, val type: Output<StandardSqlDataTypeArgs>? = null) : ConvertibleToJava<StandardSqlFieldArgs>

A field or a column.

Constructors

Link copied to clipboard
fun StandardSqlFieldArgs(name: Output<String>? = null, type: Output<StandardSqlDataTypeArgs>? = null)

Functions

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

Properties

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

Optional. The name of this field. Can be absent for struct fields.

Link copied to clipboard
val type: Output<StandardSqlDataTypeArgs>? = null

Optional. The type of this parameter. Absent if not explicitly specified (e.g., CREATE FUNCTION statement can omit the return type; in this case the output parameter does not have this "type" field).