diff --git a/packages/kbn-search-connectors/connectors.ts b/packages/kbn-search-connectors/connectors.ts index 199a96308631c..998fc3bf2a2a7 100644 --- a/packages/kbn-search-connectors/connectors.ts +++ b/packages/kbn-search-connectors/connectors.ts @@ -25,7 +25,7 @@ export interface ConnectorServerSideDefinition { export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ { iconPath: 'azure_blob_storage.svg', - isBeta: true, + isBeta: false, isNative: true, keywords: ['cloud', 'azure', 'blob', 's3', 'connector'], name: i18n.translate('searchConnectors.content.nativeConnectors.azureBlob.name', { @@ -76,8 +76,8 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ }, { iconPath: 'google_cloud_storage.svg', - isBeta: true, - isNative: false, + isBeta: false, + isNative: true, keywords: ['google', 'cloud', 'blob', 's3', 'connector'], name: i18n.translate('searchConnectors.content.nativeConnectors.googleCloud.name', { defaultMessage: 'Google Cloud Storage', @@ -116,7 +116,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ }, { iconPath: 'mssql.svg', - isBeta: true, + isBeta: false, isNative: true, keywords: ['mssql', 'microsoft', 'sql', 'database', 'connector'], name: i18n.translate('searchConnectors.content.nativeConnectors.microsoftSQL.name', { @@ -136,7 +136,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ }, { iconPath: 'postgresql.svg', - isBeta: true, + isBeta: false, isNative: true, keywords: ['postgresql', 'sql', 'database', 'connector'], name: i18n.translate('searchConnectors.content.nativeConnectors.postgresql.name', { @@ -147,7 +147,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ { iconPath: 'salesforce.svg', isBeta: true, - isNative: false, + isNative: true, isTechPreview: false, keywords: ['salesforce', 'cloud', 'connector'], name: i18n.translate('searchConnectors.content.nativeConnectors.salesforce.name', { @@ -191,7 +191,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ { iconPath: 'oracle.svg', isBeta: true, - isNative: false, + isNative: true, keywords: ['oracle', 'sql', 'database', 'connector'], name: i18n.translate('searchConnectors.content.nativeConnectors.oracle.name', { defaultMessage: 'Oracle', @@ -210,8 +210,8 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [ }, { iconPath: 's3.svg', - isBeta: true, - isNative: false, + isBeta: false, + isNative: true, keywords: ['s3', 'cloud', 'amazon', 'connector'], name: i18n.translate('searchConnectors.content.nativeConnectors.s3.name', { defaultMessage: 'S3', diff --git a/packages/kbn-search-connectors/types/native_connectors.ts b/packages/kbn-search-connectors/types/native_connectors.ts index 232484011a1c1..b4efc74ba7969 100644 --- a/packages/kbn-search-connectors/types/native_connectors.ts +++ b/packages/kbn-search-connectors/types/native_connectors.ts @@ -489,6 +489,9 @@ export const NATIVE_CONNECTOR_DEFINITIONS: Record = { externalAuthDocsUrl: 'https://learn.microsoft.com/azure/storage/common/authorize-data-access', externalDocsUrl: 'https://learn.microsoft.com/azure/storage/blobs/', icon: CONNECTOR_ICONS.azure_blob_storage, + platinumOnly: true, }, box: { docsUrl: docLinks.connectorsBox, @@ -68,6 +69,7 @@ export const CONNECTORS_DICT: Record = { externalAuthDocsUrl: 'https://cloud.google.com/storage/docs/authentication', externalDocsUrl: 'https://cloud.google.com/storage/docs', icon: CONNECTOR_ICONS.google_cloud_storage, + platinumOnly: true, }, google_drive: { docsUrl: docLinks.connectorsGoogleDrive, @@ -88,6 +90,7 @@ export const CONNECTORS_DICT: Record = { externalAuthDocsUrl: 'https://www.mongodb.com/docs/atlas/app-services/authentication/', externalDocsUrl: 'https://www.mongodb.com/docs/', icon: CONNECTOR_ICONS.mongodb, + platinumOnly: true, }, mssql: { docsUrl: docLinks.connectorsMicrosoftSQL, @@ -95,11 +98,13 @@ export const CONNECTORS_DICT: Record = { 'https://learn.microsoft.com/sql/relational-databases/security/authentication-access/getting-started-with-database-engine-permissions', externalDocsUrl: 'https://learn.microsoft.com/sql/', icon: CONNECTOR_ICONS.microsoft_sql, + platinumOnly: true, }, mysql: { docsUrl: docLinks.connectorsMySQL, externalDocsUrl: 'https://dev.mysql.com/doc/', icon: CONNECTOR_ICONS.mysql, + platinumOnly: true, }, network_drive: { docsUrl: docLinks.connectorsNetworkDrive, @@ -140,6 +145,7 @@ export const CONNECTORS_DICT: Record = { externalAuthDocsUrl: 'https://docs.aws.amazon.com/s3/index.html', externalDocsUrl: '', icon: CONNECTOR_ICONS.amazon_s3, + platinumOnly: true, }, salesforce: { docsUrl: docLinks.connectorsSalesforce,