io.quarkus.vault.runtime.client.dto.pki.VaultPKITidyBody 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.pki;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.quarkus.vault.runtime.client.dto.VaultModel;
public class VaultPKITidyBody implements VaultModel {
@JsonProperty("tidy_cert_store")
public Boolean tidyCertStore;
@JsonProperty("tidy_revoked_certs")
public Boolean tidyRevokedCerts;
@JsonProperty("safety_buffer")
public String safetyBuffer;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy