Class ContainerGroupListResult
- java.lang.Object
-
- com.azure.resourcemanager.containerinstance.models.ContainerGroupListResult
-
public final class ContainerGroupListResult extends Object
The container group list response that contains the container group properties.
-
-
Constructor Summary
Constructors Constructor Description ContainerGroupListResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringnextLink()Get the nextLink property: The URI to fetch the next page of container groups.voidvalidate()Validates the instance.List<ContainerGroupInner>value()Get the value property: The list of container groups.ContainerGroupListResultwithNextLink(String nextLink)Set the nextLink property: The URI to fetch the next page of container groups.ContainerGroupListResultwithValue(List<ContainerGroupInner> value)Set the value property: The list of container groups.
-
-
-
Method Detail
-
value
public List<ContainerGroupInner> value()
Get the value property: The list of container groups.- Returns:
- the value value.
-
withValue
public ContainerGroupListResult withValue(List<ContainerGroupInner> value)
Set the value property: The list of container groups.- Parameters:
value- the value value to set.- Returns:
- the ContainerGroupListResult object itself.
-
nextLink
public String nextLink()
Get the nextLink property: The URI to fetch the next page of container groups.- Returns:
- the nextLink value.
-
withNextLink
public ContainerGroupListResult withNextLink(String nextLink)
Set the nextLink property: The URI to fetch the next page of container groups.- Parameters:
nextLink- the nextLink value to set.- Returns:
- the ContainerGroupListResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-