Class DataFlow
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.DataFlow
-
- Direct Known Subclasses:
Flowlet
,MappingDataFlow
,WranglingDataFlow
public class DataFlow extends Object
Azure Data Factory nested object which contains a flow with data movements and transformations.
-
-
Constructor Summary
Constructors Constructor Description DataFlow()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Object>
annotations()
Get the annotations property: List of tags that can be used for describing the data flow.String
description()
Get the description property: The description of the data flow.DataFlowFolder
folder()
Get the folder property: The folder that this data flow is in.void
validate()
Validates the instance.DataFlow
withAnnotations(List<Object> annotations)
Set the annotations property: List of tags that can be used for describing the data flow.DataFlow
withDescription(String description)
Set the description property: The description of the data flow.DataFlow
withFolder(DataFlowFolder folder)
Set the folder property: The folder that this data flow is in.
-
-
-
Method Detail
-
description
public String description()
Get the description property: The description of the data flow.- Returns:
- the description value.
-
withDescription
public DataFlow withDescription(String description)
Set the description property: The description of the data flow.- Parameters:
description
- the description value to set.- Returns:
- the DataFlow object itself.
-
annotations
public List<Object> annotations()
Get the annotations property: List of tags that can be used for describing the data flow.- Returns:
- the annotations value.
-
withAnnotations
public DataFlow withAnnotations(List<Object> annotations)
Set the annotations property: List of tags that can be used for describing the data flow.- Parameters:
annotations
- the annotations value to set.- Returns:
- the DataFlow object itself.
-
folder
public DataFlowFolder folder()
Get the folder property: The folder that this data flow is in. If not specified, Data flow will appear at the root level.- Returns:
- the folder value.
-
withFolder
public DataFlow withFolder(DataFlowFolder folder)
Set the folder property: The folder that this data flow is in. If not specified, Data flow will appear at the root level.- Parameters:
folder
- the folder value to set.- Returns:
- the DataFlow object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-