io.quarkus.vault.runtime.client.dto.sys.VaultTuneData 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 com.fasterxml.jackson.annotation.JsonProperty;
public class VaultTuneData {
public String description;
@JsonProperty("default_lease_ttl")
public Long defaultLeaseTimeToLive;
@JsonProperty("max_lease_ttl")
public Long maxLeaseTimeToLive;
@JsonProperty("force_no_cache")
public Boolean forceNoCache;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy