Package version:

Interface MappingDataFlow

Mapping data flow.

interface MappingDataFlow {
    annotations?: any[];
    description?: string;
    folder?: DataFlowFolder;
    script?: string;
    scriptLines?: string[];
    sinks?: DataFlowSink[];
    sources?: DataFlowSource[];
    transformations?: Transformation[];
    type: "MappingDataFlow";
}

Hierarchy (view full)

Properties

annotations?: any[]

List of tags that can be used for describing the data flow.

description?: string

The description of the data flow.

The folder that this data flow is in. If not specified, Data flow will appear at the root level.

script?: string

DataFlow script.

scriptLines?: string[]

Data flow script lines.

sinks?: DataFlowSink[]

List of sinks in data flow.

sources?: DataFlowSource[]

List of sources in data flow.

transformations?: Transformation[]

List of transformations in data flow.

type

Polymorphic discriminator, which specifies the different types this object can be