TextFormatArgs

data class TextFormatArgs(val columnDelimiter: Output<Any>? = null, val deserializer: Output<Any>? = null, val encodingName: Output<Any>? = null, val escapeChar: Output<Any>? = null, val firstRowAsHeader: Output<Any>? = null, val nullValue: Output<Any>? = null, val quoteChar: Output<Any>? = null, val rowDelimiter: Output<Any>? = null, val serializer: Output<Any>? = null, val skipLineCount: Output<Any>? = null, val treatEmptyAsNull: Output<Any>? = null, val type: Output<String>) : ConvertibleToJava<TextFormatArgs>

The data stored in text format.

Constructors

Link copied to clipboard
constructor(columnDelimiter: Output<Any>? = null, deserializer: Output<Any>? = null, encodingName: Output<Any>? = null, escapeChar: Output<Any>? = null, firstRowAsHeader: Output<Any>? = null, nullValue: Output<Any>? = null, quoteChar: Output<Any>? = null, rowDelimiter: Output<Any>? = null, serializer: Output<Any>? = null, skipLineCount: Output<Any>? = null, treatEmptyAsNull: Output<Any>? = null, type: Output<String>)

Properties

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

The column delimiter. Type: string (or Expression with resultType string).

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

Deserializer. Type: string (or Expression with resultType string).

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

The code page name of the preferred encoding. If miss, the default value is ΓÇ£utf-8ΓÇ¥, unless BOM denotes another Unicode encoding. Refer to the ΓÇ£NameΓÇ¥ column of the table in the following link to set supported values: https://msdn.microsoft.com/library/system.text.encoding.aspx. Type: string (or Expression with resultType string).

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

The escape character. Type: string (or Expression with resultType string).

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

When used as input, treat the first row of data as headers. When used as output,write the headers into the output as the first row of data. The default value is false. Type: boolean (or Expression with resultType boolean).

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

The null value string. Type: string (or Expression with resultType string).

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

The quote character. Type: string (or Expression with resultType string).

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

The row delimiter. Type: string (or Expression with resultType string).

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

Serializer. Type: string (or Expression with resultType string).

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

The number of lines/rows to be skipped when parsing text files. The default value is 0. Type: integer (or Expression with resultType integer).

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

Treat empty column values in the text file as null. The default value is true. Type: boolean (or Expression with resultType boolean).

Link copied to clipboard
val type: Output<String>

Type of dataset storage format. Expected value is 'TextFormat'.

Functions

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