Class DecryptBatch.Request
- java.lang.Object
-
- io.helidon.integrations.common.rest.ApiJsonBuilder<T>
-
- io.helidon.integrations.common.rest.ApiJsonRequest<T>
-
- io.helidon.integrations.vault.VaultRequest<DecryptBatch.Request>
-
- io.helidon.integrations.vault.secrets.transit.DecryptBatch.Request
-
- All Implemented Interfaces:
ApiRequest<DecryptBatch.Request>
- Enclosing class:
- DecryptBatch
public static class DecryptBatch.Request extends VaultRequest<DecryptBatch.Request>
Request object. Can be configured with additional headers, query parameters etc.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description DecryptBatch.Request
addEntry(DecryptBatch.BatchEntry batchEntry)
Specifies a list of items to be encrypted in a single batch.static DecryptBatch.Request
builder()
Fluent API builder for configuring a request.DecryptBatch.Request
encryptionKeyName(String encryptionKeyName)
Specifies the name of the encryption key to encrypt against.-
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 Detail
-
builder
public static DecryptBatch.Request 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(javax.json.JsonBuilderFactory)
used by theRestApi
.- Returns:
- new request builder
-
encryptionKeyName
public DecryptBatch.Request encryptionKeyName(String encryptionKeyName)
Specifies the name of the encryption key to encrypt against. Required.- Parameters:
encryptionKeyName
- name of the key- Returns:
- updated request
-
addEntry
public DecryptBatch.Request addEntry(DecryptBatch.BatchEntry batchEntry)
Specifies a list of items to be encrypted in a single batch. When this parameter is set, if the parameters 'plaintext', 'context' and 'nonce' are also set, they will be ignored.- Parameters:
batchEntry
- batch entry to add to this batch request- Returns:
- updated request
-
-