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

MappingDataFlow 构造函数

定义

重载

MappingDataFlow()

初始化 MappingDataFlow 类的新实例。

MappingDataFlow(String, IList<Object>, DataFlowFolder, IList<DataFlowSource>, IList<DataFlowSink>, IList<Transformation>, String, IList<String>)

初始化 MappingDataFlow 类的新实例。

MappingDataFlow()

初始化 MappingDataFlow 类的新实例。

public MappingDataFlow ();
Public Sub New ()

适用于

MappingDataFlow(String, IList<Object>, DataFlowFolder, IList<DataFlowSource>, IList<DataFlowSink>, IList<Transformation>, String, IList<String>)

初始化 MappingDataFlow 类的新实例。

public MappingDataFlow (string description = default, System.Collections.Generic.IList<object> annotations = default, Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder folder = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.DataFlowSource> sources = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.DataFlowSink> sinks = default, System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Transformation> transformations = default, string script = default, System.Collections.Generic.IList<string> scriptLines = default);
new Microsoft.Azure.Management.DataFactory.Models.MappingDataFlow : string * System.Collections.Generic.IList<obj> * Microsoft.Azure.Management.DataFactory.Models.DataFlowFolder * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.DataFlowSource> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.DataFlowSink> * System.Collections.Generic.IList<Microsoft.Azure.Management.DataFactory.Models.Transformation> * string * System.Collections.Generic.IList<string> -> Microsoft.Azure.Management.DataFactory.Models.MappingDataFlow
Public Sub New (Optional description As String = Nothing, Optional annotations As IList(Of Object) = Nothing, Optional folder As DataFlowFolder = Nothing, Optional sources As IList(Of DataFlowSource) = Nothing, Optional sinks As IList(Of DataFlowSink) = Nothing, Optional transformations As IList(Of Transformation) = Nothing, Optional script As String = Nothing, Optional scriptLines As IList(Of String) = Nothing)

参数

description
String

数据流的说明。

annotations
IList<Object>

可用于描述数据流的标记列表。

folder
DataFlowFolder

此数据流位于的文件夹。 如果未指定,数据流将显示在根级别。

sources
IList<DataFlowSource>

数据流中的源列表。

sinks
IList<DataFlowSink>

数据流中的接收器列表。

transformations
IList<Transformation>

数据流中的转换列表。

script
String

DataFlow 脚本。

scriptLines
IList<String>

数据流脚本行。

适用于