Class VaultListResult
- java.lang.Object
-
- com.azure.resourcemanager.keyvault.models.VaultListResult
-
public final class VaultListResult extends Object
List of vaults.
-
-
Constructor Summary
Constructors Constructor Description VaultListResult()
-
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 vaults.voidvalidate()Validates the instance.List<VaultInner>value()Get the value property: The list of vaults.VaultListResultwithNextLink(String nextLink)Set the nextLink property: The URL to get the next set of vaults.VaultListResultwithValue(List<VaultInner> value)Set the value property: The list of vaults.
-
-
-
Method Detail
-
value
public List<VaultInner> value()
Get the value property: The list of vaults.- Returns:
- the value value.
-
withValue
public VaultListResult withValue(List<VaultInner> value)
Set the value property: The list of vaults.- Parameters:
value- the value value to set.- Returns:
- the VaultListResult object itself.
-
nextLink
public String nextLink()
Get the nextLink property: The URL to get the next set of vaults.- Returns:
- the nextLink value.
-
withNextLink
public VaultListResult withNextLink(String nextLink)
Set the nextLink property: The URL to get the next set of vaults.- Parameters:
nextLink- the nextLink value to set.- Returns:
- the VaultListResult object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-