Flowlet Construtores
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
Flowlet() |
Inicializa uma nova instância da classe Flowlet. |
Flowlet(String, IList<Object>, DataFlowFolder, IList<DataFlowSource>, IList<DataFlowSink>, IList<Transformation>, String, IList<String>) |
Inicializa uma nova instância da classe Flowlet. |
Flowlet()
Inicializa uma nova instância da classe Flowlet.
public Flowlet ();
Public Sub New ()
Aplica-se a
Flowlet(String, IList<Object>, DataFlowFolder, IList<DataFlowSource>, IList<DataFlowSink>, IList<Transformation>, String, IList<String>)
Inicializa uma nova instância da classe Flowlet.
public Flowlet (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.Flowlet : 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.Flowlet
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)
Parâmetros
- description
- String
A descrição do fluxo de dados.
- folder
- DataFlowFolder
A pasta na qual esse fluxo de dados está. Se não for especificado, o fluxo de dados aparecerá no nível raiz.
- sources
- IList<DataFlowSource>
Lista de fontes no Flowlet.
- sinks
- IList<DataFlowSink>
Lista de coletores no Flowlet.
- transformations
- IList<Transformation>
Lista de transformações no Flowlet.
- script
- String
Script do Flowlet.
Aplica-se a
Azure SDK for .NET