Class ReplicationListResult
- java.lang.Object
-
- com.azure.resourcemanager.containerregistry.models.ReplicationListResult
-
public final class ReplicationListResult extends Object
The result of a request to list replications for a container registry.
-
-
Constructor Summary
Constructors Constructor Description ReplicationListResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringnextLink()Get the nextLink property: The URI that can be used to request the next list of replications.voidvalidate()Validates the instance.List<ReplicationInner>value()Get the value property: The list of replications.ReplicationListResultwithNextLink(String nextLink)Set the nextLink property: The URI that can be used to request the next list of replications.ReplicationListResultwithValue(List<ReplicationInner> value)Set the value property: The list of replications.
-
-
-
Method Detail
-
value
public List<ReplicationInner> value()
Get the value property: The list of replications. Since this list may be incomplete, the nextLink field should be used to request the next list of replications.- Returns:
- the value value.
-
withValue
public ReplicationListResult withValue(List<ReplicationInner> value)
Set the value property: The list of replications. Since this list may be incomplete, the nextLink field should be used to request the next list of replications.- Parameters:
value- the value value to set.- Returns:
- the ReplicationListResult object itself.
-
nextLink
public String nextLink()
Get the nextLink property: The URI that can be used to request the next list of replications.- Returns:
- the nextLink value.
-
withNextLink
public ReplicationListResult withNextLink(String nextLink)
Set the nextLink property: The URI that can be used to request the next list of replications.- Parameters:
nextLink- the nextLink value to set.- Returns:
- the ReplicationListResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-