Interface LiquibaseMongodbClientConfig
public interface LiquibaseMongodbClientConfig
The liquibase runtime configuration by client.
-
Method Summary
Modifier and TypeMethodDescriptionThe parameters to be passed to the changelog.booleanThe clean at start flagcontexts()The list of contextsThe default catalog nameThe default schema namelabels()The list of labelsThe liquibase tables catalog nameThe liquibase tables schema nameThe liquibase tables tablespace namebooleanThe migrate at start flagMongodb client name to use to connect to database, defaults to the default mongodb client.booleanThe validate on update flag
-
Method Details
-
mongoClientName
Mongodb client name to use to connect to database, defaults to the default mongodb client. -
migrateAtStart
@WithDefault("false") boolean migrateAtStart()The migrate at start flag -
validateOnMigrate
@WithDefault("true") boolean validateOnMigrate()The validate on update flag -
cleanAtStart
@WithDefault("false") boolean cleanAtStart()The clean at start flag -
changeLogParameters
The parameters to be passed to the changelog. Defined as key value pairs. -
contexts
The list of contexts -
labels
The list of labels -
defaultCatalogName
The default catalog name -
defaultSchemaName
The default schema name -
liquibaseCatalogName
The liquibase tables catalog name -
liquibaseSchemaName
The liquibase tables schema name -
liquibaseTablespaceName
The liquibase tables tablespace name
-