Interface MetabaseNodeParameters
Sourceinterface MetabaseNodeParameters {
alertId?: string;
databaseId?: string;
dbName?: string;
engine?:
| "mysql"
| "postgres"
| "sqlite"
| "h2"
| "mongo"
| "redshift";
filePath?: string;
format?: "json"
| "csv"
| "xlsx";
fullSync?: boolean;
host?: string;
metricId?: string;
name?: string;
operation?:
| "get"
| "getAll"
| "getFields"
| "resultData"
| "addNewDatasource";
password?: string;
port?: number;
questionId?: string;
resource?: | "questions"
| "alerts"
| "databases"
| "metrics";
simple?: boolean;
user?: string;
}
Default: "postgres"