OutputServiceBusQueueSerialization

data class OutputServiceBusQueueSerialization(val encoding: String? = null, val fieldDelimiter: String? = null, val format: String? = null, val type: String)

Constructors

Link copied to clipboard
constructor(encoding: String? = null, fieldDelimiter: String? = null, format: String? = null, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val encoding: String? = null

The encoding of the incoming data in the case of input and the encoding of outgoing data in the case of output. It currently can only be set to UTF8.

Link copied to clipboard
val fieldDelimiter: String? = null

The delimiter that will be used to separate comma-separated value (CSV) records. Possible values are (space), , (comma), (tab), | (pipe) and ;.

Link copied to clipboard
val format: String? = null

Specifies the format of the JSON the output will be written in. Possible values are Array and LineSeparated.

Link copied to clipboard

The serialization format used for outgoing data streams. Possible values are Avro, Csv, Json and Parquet.