Class ResourceListResult
- java.lang.Object
-
- com.azure.resourcemanager.keyvault.models.ResourceListResult
-
public final class ResourceListResult extends Object
List of vault resources.
-
-
Constructor Summary
Constructors Constructor Description ResourceListResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringnextLink()Get the nextLink property: The URL to get the next set of vault resources.voidvalidate()Validates the instance.List<com.azure.core.management.Resource>value()Get the value property: The list of vault resources.ResourceListResultwithNextLink(String nextLink)Set the nextLink property: The URL to get the next set of vault resources.ResourceListResultwithValue(List<com.azure.core.management.Resource> value)Set the value property: The list of vault resources.
-
-
-
Method Detail
-
value
public List<com.azure.core.management.Resource> value()
Get the value property: The list of vault resources.- Returns:
- the value value.
-
withValue
public ResourceListResult withValue(List<com.azure.core.management.Resource> value)
Set the value property: The list of vault resources.- Parameters:
value- the value value to set.- Returns:
- the ResourceListResult object itself.
-
nextLink
public String nextLink()
Get the nextLink property: The URL to get the next set of vault resources.- Returns:
- the nextLink value.
-
withNextLink
public ResourceListResult withNextLink(String nextLink)
Set the nextLink property: The URL to get the next set of vault resources.- Parameters:
nextLink- the nextLink value to set.- Returns:
- the ResourceListResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-