Class PipelineListResponse
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.PipelineListResponse
-
public final class PipelineListResponse extends Object
A list of pipeline resources.
-
-
Constructor Summary
Constructors Constructor Description PipelineListResponse()
-
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<PipelineResourceInner>
value()
Get the value property: List of pipelines.PipelineListResponse
withNextLink(String nextLink)
Set the nextLink property: The link to the next page of results, if any remaining results exist.PipelineListResponse
withValue(List<PipelineResourceInner> value)
Set the value property: List of pipelines.
-
-
-
Method Detail
-
value
public List<PipelineResourceInner> value()
Get the value property: List of pipelines.- Returns:
- the value value.
-
withValue
public PipelineListResponse withValue(List<PipelineResourceInner> value)
Set the value property: List of pipelines.- Parameters:
value
- the value value to set.- Returns:
- the PipelineListResponse 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 PipelineListResponse 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 PipelineListResponse object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-