io.quarkus.vault.runtime.client.dto.transit.VaultTransitCreateKeyBody 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.transit;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.quarkus.vault.runtime.client.dto.VaultModel;
public class VaultTransitCreateKeyBody implements VaultModel {
@JsonProperty("convergent_encryption")
public String convergentEncryption;
public Boolean derived;
public Boolean exportable;
@JsonProperty("allow_plaintext_backup")
public Boolean allowPlaintextBackup;
public String type;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy