Class UpdateCubbyhole.Request
java.lang.Object
io.helidon.integrations.common.rest.ApiJsonBuilder<UpdateCubbyhole.Request>
io.helidon.integrations.common.rest.ApiJsonRequest<UpdateCubbyhole.Request>
io.helidon.integrations.vault.VaultRequest<UpdateCubbyhole.Request>
io.helidon.integrations.vault.secrets.cubbyhole.UpdateCubbyhole.Request
- All Implemented Interfaces:
ApiRequest<UpdateCubbyhole.Request>
- Enclosing class:
UpdateCubbyhole
Request object. Can be configured with additional headers, query parameters etc.
-
Method Summary
Modifier and TypeMethodDescriptionaddSecretValue
(String key, String value) Add a new secret value.static UpdateCubbyhole.Request
builder()
Fluent API builder for configuring a request.Path of the secret.secretValues
(Map<String, String> values) New secret values.Methods inherited from class io.helidon.integrations.vault.VaultRequest
add, addCommaDelimitedArray, addToCommaDelimitedArray, durationToTtl, preBuild
Methods inherited from class io.helidon.integrations.common.rest.ApiJsonRequest
addHeader, addQueryParam, headers, queryParams, requestId, requestId, requestMediaType, requestMediaType, responseMediaType, responseMediaType
Methods inherited from class io.helidon.integrations.common.rest.ApiJsonBuilder
add, add, add, add, add, add, addBase64, addToArray, addToArray, addToArray, addToArray, addToArray, addToArray, addToObject, addToObject, addToObject, addToObject, addToObject, emptyArray, me, postBuild, toJson
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.helidon.integrations.common.rest.ApiRequest
toJson
-
Method Details
-
builder
Fluent API builder for configuring a request. The request builder is passed as is, without a build method. The equivalent of a build method isApiJsonBuilder.toJson(jakarta.json.JsonBuilderFactory)
used by theRestApi
.- Returns:
- new request builder
-
secretValues
New secret values. These will replace current values.- Parameters:
values
- new secret values- Returns:
- updated request
-
addSecretValue
Add a new secret value. New values replace all existing values.- Parameters:
key
- key of the valuevalue
- value- Returns:
- updated request
-
path
Path of the secret.- Parameters:
path
- secret's path- Returns:
- updated request
-