Share via


Transformation Constructors

Definition

Overloads

Transformation()

Initializes a new instance of the Transformation class.

Transformation(String, String, DataFlowReference)

Initializes a new instance of the Transformation class.

Transformation(String, String, DatasetReference, LinkedServiceReference, DataFlowReference)

Initializes a new instance of the Transformation class.

Transformation()

Initializes a new instance of the Transformation class.

public Transformation ();
Public Sub New ()

Applies to

Transformation(String, String, DataFlowReference)

Initializes a new instance of the Transformation class.

public Transformation (string name, string description = default, Microsoft.Azure.Management.DataFactory.Models.DataFlowReference flowlet = default);
new Microsoft.Azure.Management.DataFactory.Models.Transformation : string * string * Microsoft.Azure.Management.DataFactory.Models.DataFlowReference -> Microsoft.Azure.Management.DataFactory.Models.Transformation
Public Sub New (name As String, Optional description As String = Nothing, Optional flowlet As DataFlowReference = Nothing)

Parameters

name
String

Transformation name.

description
String

Transformation description.

flowlet
DataFlowReference

Flowlet Reference

Applies to

Transformation(String, String, DatasetReference, LinkedServiceReference, DataFlowReference)

Initializes a new instance of the Transformation class.

public Transformation (string name, string description = default, Microsoft.Azure.Management.DataFactory.Models.DatasetReference dataset = default, Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference linkedService = default, Microsoft.Azure.Management.DataFactory.Models.DataFlowReference flowlet = default);
new Microsoft.Azure.Management.DataFactory.Models.Transformation : string * string * Microsoft.Azure.Management.DataFactory.Models.DatasetReference * Microsoft.Azure.Management.DataFactory.Models.LinkedServiceReference * Microsoft.Azure.Management.DataFactory.Models.DataFlowReference -> Microsoft.Azure.Management.DataFactory.Models.Transformation
Public Sub New (name As String, Optional description As String = Nothing, Optional dataset As DatasetReference = Nothing, Optional linkedService As LinkedServiceReference = Nothing, Optional flowlet As DataFlowReference = Nothing)

Parameters

name
String

Transformation name.

description
String

Transformation description.

dataset
DatasetReference

Dataset reference.

linkedService
LinkedServiceReference

Linked service reference.

flowlet
DataFlowReference

Flowlet Reference

Applies to