DataFlowResponse

data class DataFlowResponse(val builtInTransform: String? = null, val destinations: List<String>? = null, val outputStream: String? = null, val streams: List<String>? = null, val transformKql: String? = null)

Definition of which streams are sent to which destinations.

Constructors

Link copied to clipboard
constructor(builtInTransform: String? = null, destinations: List<String>? = null, outputStream: String? = null, streams: List<String>? = null, transformKql: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The builtIn transform to transform stream data

Link copied to clipboard
val destinations: List<String>? = null

List of destinations for this data flow.

Link copied to clipboard
val outputStream: String? = null

The output stream of the transform. Only required if the transform changes data to a different stream.

Link copied to clipboard
val streams: List<String>? = null

List of streams for this data flow.

Link copied to clipboard
val transformKql: String? = null

The KQL query to transform stream data.