io.quarkus.vault.runtime.config.HealthConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-vault Show documentation
Show all versions of quarkus-vault Show documentation
Store your credentials securely in HashiCorp Vault
package io.quarkus.vault.runtime.config;
import io.quarkus.runtime.annotations.ConfigGroup;
import io.quarkus.runtime.annotations.ConfigItem;
@ConfigGroup
public class HealthConfig {
/**
* Whether or not an health check is published in case the smallrye-health extension is present.
*/
@ConfigItem
public boolean enabled;
/**
* Specifies if being a standby should still return the active status code instead of the standby status code.
*/
@ConfigItem
public boolean standByOk;
/**
* Specifies if being a performance standby should still return the active status code instead of the performance standby
* status code.
*/
@ConfigItem
public boolean performanceStandByOk;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy