Class ImageListResult
- java.lang.Object
-
- com.azure.resourcemanager.compute.models.ImageListResult
-
public final class ImageListResult extends Object
The List Image operation response.
-
-
Constructor Summary
Constructors Constructor Description ImageListResult()
-
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 Images.voidvalidate()Validates the instance.List<ImageInner>value()Get the value property: The list of Images.ImageListResultwithNextLink(String nextLink)Set the nextLink property: The uri to fetch the next page of Images.ImageListResultwithValue(List<ImageInner> value)Set the value property: The list of Images.
-
-
-
Method Detail
-
value
public List<ImageInner> value()
Get the value property: The list of Images.- Returns:
- the value value.
-
withValue
public ImageListResult withValue(List<ImageInner> value)
Set the value property: The list of Images.- Parameters:
value- the value value to set.- Returns:
- the ImageListResult object itself.
-
nextLink
public String nextLink()
Get the nextLink property: The uri to fetch the next page of Images. Call ListNext() with this to fetch the next page of Images.- Returns:
- the nextLink value.
-
withNextLink
public ImageListResult withNextLink(String nextLink)
Set the nextLink property: The uri to fetch the next page of Images. Call ListNext() with this to fetch the next page of Images.- Parameters:
nextLink- the nextLink value to set.- Returns:
- the ImageListResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-