Class DataFlowSourceSetting
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.DataFlowSourceSetting
-
public final class DataFlowSourceSetting extends Object
Definition of data flow source setting for debug.
-
-
Constructor Summary
Constructors Constructor Description DataFlowSourceSetting()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
additionalProperties()
Get the additionalProperties property: Definition of data flow source setting for debug.Integer
rowLimit()
Get the rowLimit property: Defines the row limit of data flow source in debug.String
sourceName()
Get the sourceName property: The data flow source name.void
validate()
Validates the instance.DataFlowSourceSetting
withAdditionalProperties(Map<String,Object> additionalProperties)
Set the additionalProperties property: Definition of data flow source setting for debug.DataFlowSourceSetting
withRowLimit(Integer rowLimit)
Set the rowLimit property: Defines the row limit of data flow source in debug.DataFlowSourceSetting
withSourceName(String sourceName)
Set the sourceName property: The data flow source name.
-
-
-
Method Detail
-
sourceName
public String sourceName()
Get the sourceName property: The data flow source name.- Returns:
- the sourceName value.
-
withSourceName
public DataFlowSourceSetting withSourceName(String sourceName)
Set the sourceName property: The data flow source name.- Parameters:
sourceName
- the sourceName value to set.- Returns:
- the DataFlowSourceSetting object itself.
-
rowLimit
public Integer rowLimit()
Get the rowLimit property: Defines the row limit of data flow source in debug.- Returns:
- the rowLimit value.
-
withRowLimit
public DataFlowSourceSetting withRowLimit(Integer rowLimit)
Set the rowLimit property: Defines the row limit of data flow source in debug.- Parameters:
rowLimit
- the rowLimit value to set.- Returns:
- the DataFlowSourceSetting object itself.
-
additionalProperties
public Map<String,Object> additionalProperties()
Get the additionalProperties property: Definition of data flow source setting for debug.- Returns:
- the additionalProperties value.
-
withAdditionalProperties
public DataFlowSourceSetting withAdditionalProperties(Map<String,Object> additionalProperties)
Set the additionalProperties property: Definition of data flow source setting for debug.- Parameters:
additionalProperties
- the additionalProperties value to set.- Returns:
- the DataFlowSourceSetting object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-