Class PipelineRunsQueryResponseInner
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.fluent.models.PipelineRunsQueryResponseInner
-
public final class PipelineRunsQueryResponseInner extends Object
A list pipeline runs.
-
-
Constructor Summary
Constructors Constructor Description PipelineRunsQueryResponseInner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
continuationToken()
Get the continuationToken property: The continuation token for getting the next page of results, if any remaining results exist, null otherwise.void
validate()
Validates the instance.List<PipelineRunInner>
value()
Get the value property: List of pipeline runs.PipelineRunsQueryResponseInner
withContinuationToken(String continuationToken)
Set the continuationToken property: The continuation token for getting the next page of results, if any remaining results exist, null otherwise.PipelineRunsQueryResponseInner
withValue(List<PipelineRunInner> value)
Set the value property: List of pipeline runs.
-
-
-
Method Detail
-
value
public List<PipelineRunInner> value()
Get the value property: List of pipeline runs.- Returns:
- the value value.
-
withValue
public PipelineRunsQueryResponseInner withValue(List<PipelineRunInner> value)
Set the value property: List of pipeline runs.- Parameters:
value
- the value value to set.- Returns:
- the PipelineRunsQueryResponseInner object itself.
-
continuationToken
public String continuationToken()
Get the continuationToken property: The continuation token for getting the next page of results, if any remaining results exist, null otherwise.- Returns:
- the continuationToken value.
-
withContinuationToken
public PipelineRunsQueryResponseInner withContinuationToken(String continuationToken)
Set the continuationToken property: The continuation token for getting the next page of results, if any remaining results exist, null otherwise.- Parameters:
continuationToken
- the continuationToken value to set.- Returns:
- the PipelineRunsQueryResponseInner object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-