com.bettercloud.vault.Vault Maven / Gradle / Ivy
Show all versions of vault-java-driver Show documentation
package com.bettercloud.vault;
import com.bettercloud.vault.api.Auth;
import com.bettercloud.vault.api.Logical;
import com.bettercloud.vault.api.Sys;
import com.bettercloud.vault.api.pki.Pki;
/**
* The Vault driver class, the primary interface through which dependent applications will access Vault.
*
* This driver exposes a DSL, compartmentalizing the various endpoints of the HTTP API (e.g. "/", "sys/init",
* "sys/seal") into separate implementation classes (e.g. Logical
, Init
, etc).
*
* Example usage:
*
*
* {@code
* final VaultConfig config = new VaultConfig("http://127.0.0.1:8200", "eace6676-4d78-c687-4e54-03cad00e3abf");
* final Vault vault = new Vault(config);
*
* ...
*
* final Map secrets = new HashMap();
* secrets.put("value", "world");
* secrets.put("other_value", "You can store multiple name/value pairs under a given key");
*
* final LogicalResponse writeResponse = vault
* .withRetries(5, 1000) // optional
* .logical()
* .write("secret/hello", secrets);
*
* ...
*
* final String value = vault.logical()
* .read("secret/hello")
* .getData().get("value");
* }
*
*/
public class Vault {
private final VaultConfig vaultConfig;
/**
* Construct a Vault driver instance with the provided config settings.
*
* @param vaultConfig Configuration settings for Vault interaction (e.g. server address, token, etc)
*/
public Vault(final VaultConfig vaultConfig) {
this.vaultConfig = vaultConfig;
}
/**
* This method is chained ahead of endpoints (e.g. logical()
, auth()
,
* etc... to specify retry rules for any API operations invoked on that endpoint.
*
* @param maxRetries The number of times that API operations will be retried when a failure occurs.
* @param retryIntervalMilliseconds The number of milliseconds that the driver will wait in between retries.
* @return
*/
public Vault withRetries(final int maxRetries, final int retryIntervalMilliseconds) {
this.vaultConfig.setMaxRetries(maxRetries);
this.vaultConfig.setRetryIntervalMilliseconds(retryIntervalMilliseconds);
return this;
}
/**
* Returns the implementing class for Vault's core/logical operations (e.g. read, write).
*
* @return The implementing class for Vault's core/logical operations (e.g. read, write)
*/
public Logical logical() {
return new Logical(vaultConfig);
}
/**
* Returns the implementing class for operations on Vault's /v1/auth/*
REST endpoints
*
* @return The implementing class for Vault's auth operations.
*/
public Auth auth() {
return new Auth(vaultConfig);
}
/**
* Returns the implementing class for Vault's PKI secret backend (i.e. /v1/pki/*
REST endpoints).
*
* @return The implementing class for Vault's PKI secret backend.
*/
public Pki pki() {
return new Pki(vaultConfig);
}
/**
* Returns a wrapper around the implementing classes for all of Vault's various
* /v1/sys/*
endpoints. Because there are so many of them (most Vault API operations
* fall under that root path), this Java API groups them by the categories suggested on
* the Vault documentation page (https://www.vaultproject.io/docs/http/index.html).
*
* To make calls on implementing classes within this wrapper, just go one level deeper
* that usual in the builder pattern style:
*
*
* {@code
* final HealthResponse response = vault.sys().debug().health();
* }
*
*
* @return A wrapper class for the implementing classes for various /v1/sys*
endpoints.
*/
public Sys sys() { return new Sys(vaultConfig); }
}