mirror of https://github.com/mingrammer/diagrams
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1016 B
70 lines
1016 B
# This module is automatically generated by autogen.sh. DO NOT EDIT.
|
|
|
|
from . import _OnPrem
|
|
|
|
|
|
class _Database(_OnPrem):
|
|
_type = "database"
|
|
_icon_dir = "resources/onprem/database"
|
|
|
|
|
|
class Cassandra(_Database):
|
|
_icon = "cassandra.png"
|
|
|
|
|
|
class Cockroachdb(_Database):
|
|
_icon = "cockroachdb.png"
|
|
|
|
|
|
class Couchdb(_Database):
|
|
_icon = "couchdb.png"
|
|
|
|
|
|
class Hbase(_Database):
|
|
_icon = "hbase.png"
|
|
|
|
|
|
class Influxdb(_Database):
|
|
_icon = "influxdb.png"
|
|
|
|
|
|
class Mariadb(_Database):
|
|
_icon = "mariadb.png"
|
|
|
|
|
|
class Mongodb(_Database):
|
|
_icon = "mongodb.png"
|
|
|
|
|
|
class Mssql(_Database):
|
|
_icon = "mssql.png"
|
|
|
|
|
|
class Mysql(_Database):
|
|
_icon = "mysql.png"
|
|
|
|
|
|
class Neo4J(_Database):
|
|
_icon = "neo4j.png"
|
|
|
|
|
|
class Oracle(_Database):
|
|
_icon = "oracle.png"
|
|
|
|
|
|
class Postgresql(_Database):
|
|
_icon = "postgresql.png"
|
|
|
|
|
|
# Aliases
|
|
|
|
CockroachDB = Cockroachdb
|
|
CouchDB = Couchdb
|
|
HBase = Hbase
|
|
InfluxDB = Influxdb
|
|
MariaDB = Mariadb
|
|
MongoDB = Mongodb
|
|
MSSQL = Mssql
|
|
MySQL = Mysql
|
|
PostgreSQL = Postgresql
|