Class VaultListPageResponse.Builder
-
- All Implemented Interfaces:
public final class VaultListPageResponse.BuilderA builder for VaultListPageResponse.
-
-
Method Summary
-
-
Method Detail
-
data
final VaultListPageResponse.Builder data(List<BetaManagedAgentsVault> data)
List of vaults.
-
data
final VaultListPageResponse.Builder data(JsonField<List<BetaManagedAgentsVault>> data)
Sets Builder.data to an arbitrary JSON value.
You should usually call Builder.data with a well-typed
List<BetaManagedAgentsVault>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addData
final VaultListPageResponse.Builder addData(BetaManagedAgentsVault data)
Adds a single BetaManagedAgentsVault to Builder.data.
-
nextPage
final VaultListPageResponse.Builder nextPage(String nextPage)
Pagination token for the next page, or null if no more results.
-
nextPage
final VaultListPageResponse.Builder nextPage(Optional<String> nextPage)
Alias for calling Builder.nextPage with
nextPage.orElse(null).
-
nextPage
final VaultListPageResponse.Builder nextPage(JsonField<String> nextPage)
Sets Builder.nextPage to an arbitrary JSON value.
You should usually call Builder.nextPage with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final VaultListPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final VaultListPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final VaultListPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final VaultListPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final VaultListPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final VaultListPageResponse build()
Returns an immutable instance of VaultListPageResponse.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-