DataFlow Constructors

Definition

Overloads

DataFlow()

Initializes a new instance of the DataFlow class.

DataFlow(IList<String>, IList<String>, String, String)

Initializes a new instance of the DataFlow class.

DataFlow()

Initializes a new instance of the DataFlow class.

public DataFlow ();
Public Sub New ()

Applies to

DataFlow(IList<String>, IList<String>, String, String)

Initializes a new instance of the DataFlow class.

public DataFlow (System.Collections.Generic.IList<string> streams = default, System.Collections.Generic.IList<string> destinations = default, string transformKql = default, string outputStream = default);
new Microsoft.Azure.Management.Monitor.Models.DataFlow : System.Collections.Generic.IList<string> * System.Collections.Generic.IList<string> * string * string -> Microsoft.Azure.Management.Monitor.Models.DataFlow
Public Sub New (Optional streams As IList(Of String) = Nothing, Optional destinations As IList(Of String) = Nothing, Optional transformKql As String = Nothing, Optional outputStream As String = Nothing)

Parameters

streams
IList<String>

List of streams for this data flow.

destinations
IList<String>

List of destinations for this data flow.

transformKql
String

The KQL query to transform stream data.

outputStream
String

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

Applies to