Versions in this module Expand all Collapse all v0 v0.0.17 Aug 6, 2026 v0.0.16 Aug 6, 2026 Changes in this version + func NewMinioCmd() *cobra.Command + type MinioClient struct + AccessKey string + Host string + Port int + SecretKey string + UseSSL bool + func (c *MinioClient) CheckConnection() error v0.0.16-alpha.0 Jul 30, 2026 v0.0.15 Jul 29, 2026 v0.0.14 Jul 22, 2026 v0.0.13 Jul 22, 2026 Changes in this version + var DefaultGaussDBDatabase = "postgres" + var DefaultPGDatabase = "postgres" + func NewElasticsearchCmd() *cobra.Command + func NewGaussdbCmd() *cobra.Command + func NewMongoDBCmd() *cobra.Command + func NewMySQLCmd() *cobra.Command + func NewPostgreSQLCmd() *cobra.Command + func NewRedisCmd() *cobra.Command + type ElasticsearchClient struct + Host string + InsecureSkipVerify bool + Password string + Path string + Port int + Scheme string + Username string + func (c *ElasticsearchClient) CheckConnection() error + func (c *ElasticsearchClient) InitClient() error + type GaussDBClient struct + Host string + Password string + Port int + Username string + func (c *GaussDBClient) CheckConnection() error + func (c *GaussDBClient) Close() error + func (c *GaussDBClient) CreateDatabase(name string) error + func (c *GaussDBClient) DropDatabase(name string) error + func (c *GaussDBClient) Exec(query string) error + func (c *GaussDBClient) InitClient() error + type MongoDBClient struct + Host string + Password string + Port int + Username string + func (c *MongoDBClient) CheckConnection() error + func (c *MongoDBClient) Close() error + func (c *MongoDBClient) CreateDatabase(name string) error + func (c *MongoDBClient) DropDatabase(name string) error + func (c *MongoDBClient) InitClient() error + type MySQLClient struct + Host string + Password string + Port int + Username string + func (c *MySQLClient) CheckConnection() error + func (c *MySQLClient) Close() error + func (c *MySQLClient) CreateDatabase(name string) error + func (c *MySQLClient) DropDatabase(name string) error + func (c *MySQLClient) Exec(query string) error + func (c *MySQLClient) InitClient() error + type PostgreSQLClient struct + Host string + Password string + Port int + Username string + func (c *PostgreSQLClient) CheckConnection() error + func (c *PostgreSQLClient) Close() error + func (c *PostgreSQLClient) CreateDatabase(name string) error + func (c *PostgreSQLClient) DropDatabase(name string) error + func (c *PostgreSQLClient) Exec(query string) error + func (c *PostgreSQLClient) InitClient() error + type RedisClient struct + Host string + Password string + Port int + Username string + func (c *RedisClient) CheckConnection() error + func (c *RedisClient) Close() error + func (c *RedisClient) InitClient() error