你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DataFlow 构造函数

定义

重载

DataFlow()

初始化 DataFlow 类的新实例。

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

初始化 DataFlow 类的新实例。

DataFlow()

初始化 DataFlow 类的新实例。

public DataFlow ();
Public Sub New ()

适用于

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

初始化 DataFlow 类的新实例。

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)

参数

streams
IList<String>

此数据流的流列表。

destinations
IList<String>

此数据流的目标列表。

transformKql
String

用于转换流数据的 KQL 查询。

outputStream
String

转换的输出流。 仅当转换将数据更改为其他流时才需要。

适用于