keycloak-testcontainer
Version:
Run a Keycloak testcontainer with node.js
24 lines (23 loc) • 648 B
TypeScript
export interface DatabaseOptions {
vendor: string;
url: string;
username: string;
password: string;
}
export declare class CommandsBuilder {
private features;
private disabledFeatures;
private isMetricsEnabled;
private database;
private shouldImportRealm;
private isHealthEnabled;
private isThemeCacheDisabled;
withHealth(): this;
withRealmImport(): this;
withDatabase(options: DatabaseOptions): this;
withMetrics(): this;
withFeatures(features: string[]): this;
withThemeCacheDisabled(): this;
withDisabledFeatures(disabledFeatures: string[]): this;
build(): string[];
}