io.quarkus.vault.runtime.client.dto.transit.VaultTransitEncryptBody 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
package io.quarkus.vault.runtime.client.dto.transit;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.quarkus.vault.runtime.Base64String;
import io.quarkus.vault.runtime.client.dto.VaultModel;
public class VaultTransitEncryptBody implements VaultModel {
public String name;
public Base64String plaintext;
public Base64String context;
public Base64String nonce;
@JsonProperty("key_version")
public Integer keyVersion;
public String type;
@JsonProperty("convergent_encryption")
public String convergentEncryption;
@JsonProperty("batch_input")
public List batchInput;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy