io.quarkus.vault.runtime.client.dto.sys.VaultInitResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-vault-model Show documentation
Show all versions of quarkus-vault-model Show documentation
Hashicorp Vault API model classes
The newest version!
package io.quarkus.vault.runtime.client.dto.sys;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.quarkus.vault.runtime.client.dto.VaultModel;
public class VaultInitResponse implements VaultModel {
public List keys;
@JsonProperty("keys_base64")
public List keysBase64;
@JsonProperty("root_token")
public String rootToken;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy