Skip to content

Commit

Permalink
[Enterprise Search] Promote Postgresql and MSSQL connectors to native (
Browse files Browse the repository at this point in the history
…elastic#156277)

## Summary

This adds PostgreSQL and MSSQL as native connectors.
  • Loading branch information
sphilipse authored May 3, 2023
1 parent e243c32 commit 875f3f3
Show file tree
Hide file tree
Showing 12 changed files with 550 additions and 26 deletions.
40 changes: 20 additions & 20 deletions x-pack/plugins/enterprise_search/common/connectors/connectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,26 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
}),
serviceType: 'mysql',
},
{
iconPath: 'mssql.svg',
isBeta: true,
isNative: true,
keywords: ['mssql', 'microsoft', 'sql', 'database', 'connector'],
name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.microsoftSQL.name', {
defaultMessage: 'Microsoft SQL',
}),
serviceType: 'mssql',
},
{
iconPath: 'postgresql.svg',
isBeta: true,
isNative: true,
keywords: ['postgresql', 'sql', 'database', 'connector'],
name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.postgresql.name', {
defaultMessage: 'Postgresql',
}),
serviceType: 'postgresql',
},
{
iconPath: 'azure_blob_storage.svg',
isBeta: true,
Expand All @@ -57,16 +77,6 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
}),
serviceType: 'google_cloud_storage',
},
{
iconPath: 'mssql.svg',
isBeta: true,
isNative: false,
keywords: ['mssql', 'microsoft', 'sql', 'database', 'connector'],
name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.microsoftSQL.name', {
defaultMessage: 'Microsoft SQL',
}),
serviceType: 'mssql',
},
{
iconPath: 'network_drive.svg',
isBeta: true,
Expand All @@ -87,16 +97,6 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
}),
serviceType: 'oracle',
},
{
iconPath: 'postgresql.svg',
isBeta: true,
isNative: false,
keywords: ['postgresql', 'sql', 'database', 'connector'],
name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.postgresql.name', {
defaultMessage: 'Postgresql',
}),
serviceType: 'postgresql',
},
{
iconPath: 's3.svg',
isBeta: true,
Expand Down
Loading

0 comments on commit 875f3f3

Please sign in to comment.