Interface LiquibaseMongodbConfig
@ConfigRoot(phase=RUN_TIME)
@ConfigMapping(prefix="quarkus.liquibase-mongodb")
public interface LiquibaseMongodbConfig
Liquibase runtime configuration supporting multiple clients. This configuration includes the client name
used to connect to the database, defaulting to the default MongoDB client.
-
Method Summary
Modifier and TypeMethodDescription@WithUnnamedKey("<default>") Map<String, LiquibaseMongodbClientConfig> Config by client name.booleanenabled()Flag to enable / disable Liquibase.
-
Method Details
-
enabled
@WithDefault("true") boolean enabled()Flag to enable / disable Liquibase. -
clientConfigs
@ConfigDocMapKey("client-name") @ConfigDocSection @WithParentName @WithUnnamedKey("<default>") @WithDefaults @WithUnnamedKey("<default>") Map<String,LiquibaseMongodbClientConfig> clientConfigs()Config by client name.
-