Class CreateCubbyhole.Request
java.lang.Object
io.helidon.integrations.common.rest.ApiJsonBuilder<CreateCubbyhole.Request>
io.helidon.integrations.common.rest.ApiJsonRequest<CreateCubbyhole.Request>
io.helidon.integrations.vault.VaultRequest<CreateCubbyhole.Request>
io.helidon.integrations.vault.secrets.cubbyhole.CreateCubbyhole.Request
- All Implemented Interfaces:
- ApiRequest<CreateCubbyhole.Request>
- Enclosing class:
- CreateCubbyhole
Request object. Can be configured with additional headers, query parameters etc.
- 
Method SummaryModifier and TypeMethodDescriptionaddSecretValue(String key, String value) Add a new secret value.static CreateCubbyhole.Requestbuilder()Fluent API builder for configuring a request.Path of the secret.secretValues(Map<String, String> values) Secret values for the secret being created.Methods inherited from class io.helidon.integrations.vault.VaultRequestadd, addCommaDelimitedArray, addToCommaDelimitedArray, durationToTtl, preBuildMethods inherited from class io.helidon.integrations.common.rest.ApiJsonRequestaddHeader, addQueryParam, headers, queryParams, requestId, requestId, requestMediaType, requestMediaType, responseMediaType, responseMediaTypeMethods inherited from class io.helidon.integrations.common.rest.ApiJsonBuilderadd, add, add, add, add, add, addBase64, addToArray, addToArray, addToArray, addToArray, addToArray, addToArray, addToObject, addToObject, addToObject, addToObject, addToObject, emptyArray, me, postBuild, toJsonMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.helidon.integrations.common.rest.ApiRequesttoJson
- 
Method Details- 
builderFluent 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
 
- 
secretValuesSecret values for the secret being created.- Parameters:
- values- new values
- Returns:
- updated request
 
- 
addSecretValueAdd a new secret value.- Parameters:
- key- key of the value
- value- value
- Returns:
- updated request
 
- 
pathPath of the secret.- Parameters:
- path- secret's path
- Returns:
- updated request
 
 
-