mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-02 11:49:23 +00:00
20 lines
365 B
TypeScript
20 lines
365 B
TypeScript
/**
|
|
* The known/supported list of dataset platforms
|
|
* @enum {string}
|
|
*/
|
|
enum DatasetPlatform {
|
|
Kafka = 'kafka',
|
|
Espresso = 'espresso',
|
|
Oracle = 'oracle',
|
|
MySql = 'mysql',
|
|
Teradata = 'teradata',
|
|
HDFS = 'hdfs',
|
|
Ambry = 'ambry',
|
|
Couchbase = 'couchbase',
|
|
Voldemort = 'voldemort',
|
|
Venice = 'venice',
|
|
Hive = 'hive'
|
|
}
|
|
|
|
export { DatasetPlatform };
|