From 8228c2afc2b3659589ba36f1416f4124210fdbec Mon Sep 17 00:00:00 2001 From: Sander Philipse <94373878+sphilipse@users.noreply.github.com> Date: Tue, 11 Jul 2023 18:06:01 +0800 Subject: [PATCH] [Enterprise Search] Remove GitHub connector and GCS native (#161620) ## Summary This removes the GitHub connector (which is not ready yet) and moves the Google Cloud Storage connector to non-native. --- .../common/connectors/connectors.ts | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/x-pack/plugins/enterprise_search/common/connectors/connectors.ts b/x-pack/plugins/enterprise_search/common/connectors/connectors.ts index 30b8186c0053d..2883057a06a3b 100644 --- a/x-pack/plugins/enterprise_search/common/connectors/connectors.ts +++ b/x-pack/plugins/enterprise_search/common/connectors/connectors.ts @@ -51,7 +51,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ { iconPath: 'google_cloud_storage.svg', isBeta: true, - isNative: true, + isNative: false, keywords: ['google', 'cloud', 'blob', 's3', 'connector'], name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.googleCloud.name', { defaultMessage: 'Google Cloud Storage', @@ -140,17 +140,6 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ }), serviceType: 'dropbox', }, - { - iconPath: 'github.svg', - isBeta: true, - isNative: false, - isTechPreview: false, - keywords: ['github', 'cloud', 'server', 'connector'], - name: i18n.translate('xpack.enterpriseSearch.content.nativeConnectors.github.name', { - defaultMessage: 'GitHub', - }), - serviceType: 'github', - }, { iconPath: 'oracle.svg', isBeta: true,