DataFlow Class
Azure Data Factory nested object which contains a flow with data movements and transformations.
You probably want to use the sub-classes and not this class directly. Known sub-classes are: Flowlet, MappingDataFlow, WranglingDataFlow
All required parameters must be populated in order to send to server.
- Inheritance
-
azure.mgmt.datafactory._serialization.ModelDataFlow
Constructor
DataFlow(*, description: str | None = None, annotations: List[MutableMapping[str, Any]] | None = None, folder: _models.DataFlowFolder | None = None, **kwargs: Any)
Keyword-Only Parameters
Name | Description |
---|---|
description
|
The description of the data flow. |
annotations
|
list[<xref:JSON>]
List of tags that can be used for describing the data flow. |
folder
|
The folder that this data flow is in. If not specified, Data flow will appear at the root level. |
Variables
Name | Description |
---|---|
type
|
Type of data flow. Required. |
description
|
The description of the data flow. |
annotations
|
list[<xref:JSON>]
List of tags that can be used for describing the data flow. |
folder
|
The folder that this data flow is in. If not specified, Data flow will appear at the root level. |
Azure SDK for Python