Class DataFlowListResponse
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.DataFlowListResponse
-
public final class DataFlowListResponse extends Object
A list of data flow resources.
-
-
Constructor Summary
Constructors Constructor Description DataFlowListResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
nextLink()
Get the nextLink property: The link to the next page of results, if any remaining results exist.void
validate()
Validates the instance.List<DataFlowResourceInner>
value()
Get the value property: List of data flows.DataFlowListResponse
withNextLink(String nextLink)
Set the nextLink property: The link to the next page of results, if any remaining results exist.DataFlowListResponse
withValue(List<DataFlowResourceInner> value)
Set the value property: List of data flows.
-
-
-
Method Detail
-
value
public List<DataFlowResourceInner> value()
Get the value property: List of data flows.- Returns:
- the value value.
-
withValue
public DataFlowListResponse withValue(List<DataFlowResourceInner> value)
Set the value property: List of data flows.- Parameters:
value
- the value value to set.- Returns:
- the DataFlowListResponse object itself.
-
nextLink
public String nextLink()
Get the nextLink property: The link to the next page of results, if any remaining results exist.- Returns:
- the nextLink value.
-
withNextLink
public DataFlowListResponse withNextLink(String nextLink)
Set the nextLink property: The link to the next page of results, if any remaining results exist.- Parameters:
nextLink
- the nextLink value to set.- Returns:
- the DataFlowListResponse object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-