Correct Imports for Class Converter Factory (#19057)

This commit is contained in:
Mohit Yadav 2024-12-15 01:20:28 +05:30 committed by GitHub
parent 3578a4b32d
commit 521619ae32
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 6 additions and 8 deletions

View File

@ -13,10 +13,8 @@
package org.openmetadata.service.secrets.converter;
import com.mysql.cj.MysqlConnection;
import java.util.Map;
import lombok.Getter;
import org.flywaydb.core.internal.database.redshift.RedshiftConnection;
import org.openmetadata.schema.auth.SSOAuthMechanism;
import org.openmetadata.schema.entity.automations.TestServiceConnectionRequest;
import org.openmetadata.schema.entity.automations.Workflow;
@ -34,7 +32,9 @@ import org.openmetadata.schema.services.connections.database.DeltaLakeConnection
import org.openmetadata.schema.services.connections.database.GreenplumConnection;
import org.openmetadata.schema.services.connections.database.HiveConnection;
import org.openmetadata.schema.services.connections.database.IcebergConnection;
import org.openmetadata.schema.services.connections.database.MysqlConnection;
import org.openmetadata.schema.services.connections.database.PostgresConnection;
import org.openmetadata.schema.services.connections.database.RedshiftConnection;
import org.openmetadata.schema.services.connections.database.SalesforceConnection;
import org.openmetadata.schema.services.connections.database.SapHanaConnection;
import org.openmetadata.schema.services.connections.database.TrinoConnection;

View File

@ -44,6 +44,7 @@
"authType": {
"title": "Auth Configuration Type",
"description": "Choose Auth Config Type.",
"mask": true,
"oneOf": [
{
"$ref": "./common/basicAuth.json"

View File

@ -45,6 +45,7 @@
"authType": {
"title": "Auth Configuration Type",
"description": "Choose Auth Config Type.",
"mask": true,
"oneOf": [
{
"$ref": "./common/basicAuth.json"

View File

@ -10,9 +10,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
/**
* Mysql Database Connection Config
*/
export interface MysqlConnection {

View File

@ -10,9 +10,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
/**
* Postgres Database Connection Config
*/
export interface PostgresConnection {