Here is the list of implemented stores.
Title |
Description |
Type |
Category |
---|---|---|---|
Connection to a Snowflake database |
snowflake |
Db |
|
Connection to a IBM db2 database |
ibmdb2 |
Db |
|
Connection to a SQL Server database |
sqlserver |
Db |
|
Connection to an Excel file |
excel |
Db |
|
Connection to a MySql database |
mysql |
Db |
|
Connection to an ODBC database |
odbc |
Db |
|
Connection to a Postgres database |
postgresql |
Db |
|
Connection to an Oracle database |
oracle |
Db |
|
Connection to an Amazon/Minio S3 Bucket |
s3 |
File |
|
A gitlab repository |
gitlab |
File |
|
An SFTP server to manage files |
sftp |
File |
|
An FTP(S) server to manage files |
ftp |
File |
|
A directory in the file system |
file |
File |
Base configuration
All stores have the same base configuration.
Name |
Description |
Type |
Mandatory |
Comment |
---|---|---|---|---|
Name |
The name of the store. |
string |
True |
Should be unique |
Type |
Type of the store |
string |
True |
|
Status |
Status of the store |
string |
False |
“deleted”: the store is not used anymore and cannot be used |
HealthCheck |
Is a health check should be performed for this store? |
bool |
False |
|
Config |
Contains the configuration of the store |
JSON |
True |
|
Example of the base configuration
{
"Name": "df-staging",
"Type": "postgresql",
"HealthCheck": true,
"Config": {
"ConnectionString": ""
}
}