mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
# Backport This will backport the following commits from `main` to `8.x`: - [[Search] Update search integrations (#195628)](https://github.com/elastic/kibana/pull/195628)
This commit is contained in:
parent
df228d4a7c
commit
1a3efcceb4
7 changed files with 49 additions and 179 deletions
|
@ -20,7 +20,6 @@ export const INTEGRATION_CATEGORY_DISPLAY: {
|
|||
advanced_analytics_ueba: { title: 'Advanced Analytics (UEBA', parent_id: 'security' },
|
||||
analytics_engine: { title: 'Analytics Engine', parent_id: 'observability' },
|
||||
application_observability: { title: 'Application', parent_id: 'observability' },
|
||||
app_search: { title: 'Application Search', parent_id: 'enterprise_search' },
|
||||
auditd: { title: 'AuditD', parent_id: 'security' },
|
||||
authentication: { title: 'Authentication', parent_id: 'security' },
|
||||
aws: { title: 'AWS', parent_id: undefined },
|
||||
|
@ -29,10 +28,10 @@ export const INTEGRATION_CATEGORY_DISPLAY: {
|
|||
cdn_security: { title: 'Content Delivery Network', parent_id: 'security' },
|
||||
cloud: { title: 'Cloud', parent_id: undefined },
|
||||
config_management: { title: 'Config management', parent_id: undefined },
|
||||
connector: { title: 'Connector', parent_id: 'enterprise_search' },
|
||||
connector_client: { title: 'Connector Client', parent_id: 'enterprise_search' },
|
||||
connector: { title: 'Connector', parent_id: 'search' },
|
||||
connector_client: { title: 'Connector Client', parent_id: 'search' },
|
||||
containers: { title: 'Containers', parent_id: undefined },
|
||||
crawler: { title: 'Crawler', parent_id: 'enterprise_search' },
|
||||
crawler: { title: 'Crawler', parent_id: 'search' },
|
||||
credential_management: { title: 'Credential Management', parent_id: 'security' },
|
||||
crm: { title: 'CRM', parent_id: undefined },
|
||||
custom: { title: 'Custom', parent_id: undefined },
|
||||
|
@ -45,7 +44,6 @@ export const INTEGRATION_CATEGORY_DISPLAY: {
|
|||
elasticsearch_sdk: { title: 'Elasticsearch SDK', parent_id: undefined },
|
||||
elastic_stack: { title: 'Elastic Stack', parent_id: undefined },
|
||||
email_security: { title: 'Email', parent_id: 'security' },
|
||||
enterprise_search: { title: 'Search', parent_id: undefined },
|
||||
firewall_security: { title: 'Firewall', parent_id: 'security' },
|
||||
google_cloud: { title: 'Google Cloud', parent_id: undefined },
|
||||
iam: { title: 'Identity and Access Management', parent_id: 'security' },
|
||||
|
@ -53,12 +51,12 @@ export const INTEGRATION_CATEGORY_DISPLAY: {
|
|||
infrastructure: { title: 'Infrastructure', parent_id: undefined },
|
||||
java_observability: { title: 'Java', parent_id: 'observability' },
|
||||
kubernetes: { title: 'Kubernetes', parent_id: 'observability' },
|
||||
language_client: { title: 'Language Client', parent_id: 'enterprise_search' },
|
||||
language_client: { title: 'Language Client', parent_id: 'search' },
|
||||
languages: { title: 'Languages', parent_id: undefined },
|
||||
load_balancer: { title: 'Load Balancer', parent_id: 'observability' },
|
||||
message_queue: { title: 'Message Broker', parent_id: 'observability' },
|
||||
monitoring: { title: 'Monitoring', parent_id: 'observability' },
|
||||
native_search: { title: 'Native Search', parent_id: 'enterprise_search' },
|
||||
native_search: { title: 'Native Search', parent_id: 'search' },
|
||||
network: { title: 'Network', parent_id: undefined },
|
||||
network_security: { title: 'Network', parent_id: 'security' },
|
||||
notification: { title: 'Notification', parent_id: 'observability' },
|
||||
|
@ -68,7 +66,8 @@ export const INTEGRATION_CATEGORY_DISPLAY: {
|
|||
productivity: { title: 'Productivity', parent_id: undefined },
|
||||
productivity_security: { title: 'Productivity', parent_id: 'security' },
|
||||
proxy_security: { title: 'Proxy', parent_id: 'security' },
|
||||
sdk_search: { title: 'SDK', parent_id: 'enterprise_search' },
|
||||
sdk_search: { title: 'SDK', parent_id: 'search' },
|
||||
search: { title: 'Search', parent_id: undefined },
|
||||
security: { title: 'Security', parent_id: undefined },
|
||||
stream_processing: { title: 'Stream Processing', parent_id: 'observability' },
|
||||
support: { title: 'Support', parent_id: undefined },
|
||||
|
@ -83,7 +82,7 @@ export const INTEGRATION_CATEGORY_DISPLAY: {
|
|||
websphere: { title: 'WebSphere Application Server', parent_id: 'observability' },
|
||||
workplace_search_content_source: {
|
||||
title: 'Workplace Search Content Source',
|
||||
parent_id: 'enterprise_search',
|
||||
parent_id: 'search',
|
||||
},
|
||||
// Kibana added
|
||||
apm: { title: 'APM', parent_id: undefined },
|
||||
|
@ -122,7 +121,7 @@ export interface IntegrationCategoryCount {
|
|||
// TODO: consider i18n
|
||||
export const SHIPPER_DISPLAY = {
|
||||
beats: 'Beats',
|
||||
enterprise_search: 'Search',
|
||||
search: 'Search',
|
||||
language_clients: 'Language clients',
|
||||
other: 'Other',
|
||||
sample_data: 'Sample data',
|
||||
|
|
|
@ -25,7 +25,7 @@ export default function ({ getService }: FtrProviderContext) {
|
|||
|
||||
expect(resp.body).to.be.an('array');
|
||||
|
||||
expect(resp.body.length).to.be(56);
|
||||
expect(resp.body.length).to.be(55);
|
||||
|
||||
// Test for sample data card
|
||||
expect(resp.body.findIndex((c: { id: string }) => c.id === 'sample_data_all')).to.be.above(
|
||||
|
|
|
@ -17,28 +17,6 @@ export const registerEnterpriseSearchIntegrations = (
|
|||
connectors: ConnectorServerSideDefinition[]
|
||||
) => {
|
||||
const nativeSearchTag = config.hasNativeConnectors && isCloud ? ['native_search'] : [];
|
||||
if (config.canDeployEntSearch) {
|
||||
customIntegrations.registerCustomIntegration({
|
||||
id: 'app_search_json',
|
||||
title: i18n.translate('xpack.enterpriseSearch.appSearch.integrations.jsonName', {
|
||||
defaultMessage: 'JSON',
|
||||
}),
|
||||
description: i18n.translate('xpack.enterpriseSearch.appSearch.integrations.jsonDescription', {
|
||||
defaultMessage: 'Search over your JSON data with App Search.',
|
||||
}),
|
||||
categories: ['enterprise_search', 'custom', 'app_search'],
|
||||
uiInternalPath: '/app/enterprise_search/app_search/engines/new?method=json',
|
||||
icons: [
|
||||
{
|
||||
type: 'eui',
|
||||
src: 'logoAppSearch',
|
||||
},
|
||||
],
|
||||
shipper: 'enterprise_search',
|
||||
isBeta: false,
|
||||
});
|
||||
}
|
||||
|
||||
if (config.hasWebCrawler) {
|
||||
customIntegrations.registerCustomIntegration({
|
||||
id: 'web_crawler',
|
||||
|
@ -48,7 +26,7 @@ export const registerEnterpriseSearchIntegrations = (
|
|||
description: i18n.translate('xpack.enterpriseSearch.integrations.webCrawlerDescription', {
|
||||
defaultMessage: 'Add search to your website with the web crawler.',
|
||||
}),
|
||||
categories: ['enterprise_search', 'app_search', 'web', 'elastic_stack', 'crawler'],
|
||||
categories: ['search', 'web', 'elastic_stack', 'crawler'],
|
||||
uiInternalPath: '/app/enterprise_search/content/crawlers/new_crawler',
|
||||
icons: [
|
||||
{
|
||||
|
@ -56,7 +34,7 @@ export const registerEnterpriseSearchIntegrations = (
|
|||
src: 'logoEnterpriseSearch',
|
||||
},
|
||||
],
|
||||
shipper: 'enterprise_search',
|
||||
shipper: 'search',
|
||||
isBeta: false,
|
||||
});
|
||||
}
|
||||
|
@ -69,7 +47,7 @@ export const registerEnterpriseSearchIntegrations = (
|
|||
description: i18n.translate('xpack.enterpriseSearch.integrations.apiDescription', {
|
||||
defaultMessage: "Add search to your application with Elasticsearch's robust APIs.",
|
||||
}),
|
||||
categories: ['enterprise_search', 'custom', 'elastic_stack', 'sdk_search', 'language_client'],
|
||||
categories: ['search', 'custom', 'elastic_stack', 'sdk_search', 'language_client'],
|
||||
uiInternalPath: '/app/enterprise_search/content/search_indices/new_index/api',
|
||||
icons: [
|
||||
{
|
||||
|
@ -77,7 +55,7 @@ export const registerEnterpriseSearchIntegrations = (
|
|||
src: 'logoEnterpriseSearch',
|
||||
},
|
||||
],
|
||||
shipper: 'enterprise_search',
|
||||
shipper: 'search',
|
||||
isBeta: false,
|
||||
});
|
||||
|
||||
|
@ -99,7 +77,7 @@ export const registerEnterpriseSearchIntegrations = (
|
|||
],
|
||||
id: `${connector.serviceType}-${connector.name}`,
|
||||
isBeta: connector.isBeta,
|
||||
shipper: 'enterprise_search',
|
||||
shipper: 'search',
|
||||
title: connector.name,
|
||||
uiInternalPath: `/app/enterprise_search/content/connectors/new_connector?connector_type=${connectorType}&service_type=${connector.serviceType}`,
|
||||
});
|
||||
|
|
|
@ -25,7 +25,7 @@ export interface ConnectorServerSideDefinition {
|
|||
|
||||
export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.azureBlob.description',
|
||||
{
|
||||
|
@ -42,7 +42,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'azure_blob_storage',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.confluence.description',
|
||||
{
|
||||
|
@ -59,7 +59,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'confluence',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.confluenceDataCenter.description',
|
||||
{
|
||||
|
@ -80,13 +80,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'confluence',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'datastore',
|
||||
'connector',
|
||||
'connector_client',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'datastore', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.dropbox.description',
|
||||
{
|
||||
|
@ -104,14 +98,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'dropbox',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'custom',
|
||||
'connector',
|
||||
'connector_client',
|
||||
'jira',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client', 'jira'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.jira.description',
|
||||
{
|
||||
|
@ -128,14 +115,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'jira',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'custom',
|
||||
'connector',
|
||||
'connector_client',
|
||||
'jira',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client', 'jira'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.jiraServer.description',
|
||||
{
|
||||
|
@ -152,7 +132,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'jira',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.jiraDataCenter.description',
|
||||
{
|
||||
|
@ -170,7 +150,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'jira',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.github.description',
|
||||
{
|
||||
|
@ -187,7 +167,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'github',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.googleCloud.description',
|
||||
{
|
||||
|
@ -204,7 +184,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'google_cloud_storage',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.googleDrive.description',
|
||||
{
|
||||
|
@ -221,7 +201,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'google_drive',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.graphQL.description',
|
||||
{
|
||||
|
@ -239,13 +219,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
isTechPreview: true,
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'datastore',
|
||||
'elastic_stack',
|
||||
'connector',
|
||||
'connector_client',
|
||||
],
|
||||
categories: ['search', 'datastore', 'elastic_stack', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.mongoDB.description',
|
||||
{
|
||||
|
@ -262,13 +236,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'mongodb',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'datastore',
|
||||
'elastic_stack',
|
||||
'connector',
|
||||
'connector_client',
|
||||
],
|
||||
categories: ['search', 'datastore', 'elastic_stack', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.mysql.description',
|
||||
{
|
||||
|
@ -285,14 +253,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'mysql',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'custom',
|
||||
'elastic_stack',
|
||||
'datastore',
|
||||
'connector',
|
||||
'connector_client',
|
||||
],
|
||||
categories: ['search', 'custom', 'elastic_stack', 'datastore', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.msSql.description',
|
||||
{
|
||||
|
@ -315,7 +276,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
defaultMessage: 'Search over your Network Drive content.',
|
||||
}
|
||||
),
|
||||
categories: ['enterprise_search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
iconPath: 'network_drive.svg',
|
||||
isBeta: false,
|
||||
isNative: true,
|
||||
|
@ -326,7 +287,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'network_drive',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.notion.description',
|
||||
{
|
||||
|
@ -349,14 +310,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
defaultMessage: 'Search over your content on PostgreSQL.',
|
||||
}
|
||||
),
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'custom',
|
||||
'datastore',
|
||||
'connector',
|
||||
'connector_client',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'datastore', 'connector', 'connector_client'],
|
||||
iconPath: 'postgresql.svg',
|
||||
isBeta: false,
|
||||
isNative: true,
|
||||
|
@ -367,7 +321,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'postgresql',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.redis.description',
|
||||
{
|
||||
|
@ -385,7 +339,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'redis',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.salesforce.description',
|
||||
{
|
||||
|
@ -402,14 +356,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'salesforce',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'custom',
|
||||
'datastore',
|
||||
'connector',
|
||||
'connector_client',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'datastore', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.salesforceSandbox.description',
|
||||
{
|
||||
|
@ -426,7 +373,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'salesforce',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.serviceNow.description',
|
||||
{
|
||||
|
@ -444,7 +391,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'servicenow',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.sharepointOnline.description',
|
||||
{
|
||||
|
@ -462,7 +409,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'sharepoint_online',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.gmail.description',
|
||||
{
|
||||
|
@ -479,7 +426,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'gmail',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.openTextDocumentum.description',
|
||||
{
|
||||
|
@ -500,14 +447,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'opentext_documentum',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'custom',
|
||||
'datastore',
|
||||
'connector',
|
||||
'connector_client',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'datastore', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.oracle.description',
|
||||
{
|
||||
|
@ -524,14 +464,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'oracle',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'custom',
|
||||
'datastore',
|
||||
'connector',
|
||||
'connector_client',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'datastore', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.oneDrive.description',
|
||||
{
|
||||
|
@ -551,13 +484,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
description: i18n.translate('searchConnectorsPlugin.content.nativeConnectors.s3.description', {
|
||||
defaultMessage: 'Search over your content on Amazon S3.',
|
||||
}),
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'datastore',
|
||||
'elastic_stack',
|
||||
'connector',
|
||||
'connector_client',
|
||||
],
|
||||
categories: ['search', 'datastore', 'elastic_stack', 'connector', 'connector_client'],
|
||||
iconPath: 's3.svg',
|
||||
isBeta: false,
|
||||
isNative: true,
|
||||
|
@ -574,7 +501,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
defaultMessage: 'Search over your content on Slack.',
|
||||
}
|
||||
),
|
||||
categories: ['enterprise_search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'connector', 'connector_client'],
|
||||
iconPath: 'slack.svg',
|
||||
isBeta: false,
|
||||
isNative: true,
|
||||
|
@ -586,7 +513,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'slack',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.sharepointServer.description',
|
||||
{
|
||||
|
@ -604,14 +531,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'sharepoint_server',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'custom',
|
||||
'connector',
|
||||
'connector_client',
|
||||
'box',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client', 'box'],
|
||||
description: i18n.translate('searchConnectorsPlugin.content.nativeConnectors.box.description', {
|
||||
defaultMessage: 'Search over your content on Box.',
|
||||
}),
|
||||
|
@ -632,14 +552,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
defaultMessage: 'Search over your content on Outlook.',
|
||||
}
|
||||
),
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'custom',
|
||||
'connector',
|
||||
'connector_client',
|
||||
'outlook',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client', 'outlook'],
|
||||
iconPath: 'outlook.svg',
|
||||
isBeta: false,
|
||||
isNative: true,
|
||||
|
@ -650,14 +563,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'outlook',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'custom',
|
||||
'connector',
|
||||
'connector_client',
|
||||
'teams',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client', 'teams'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.teams.description',
|
||||
{
|
||||
|
@ -675,14 +581,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'microsoft_teams',
|
||||
},
|
||||
{
|
||||
categories: [
|
||||
'enterprise_search',
|
||||
'elastic_stack',
|
||||
'custom',
|
||||
'connector',
|
||||
'connector_client',
|
||||
'zoom',
|
||||
],
|
||||
categories: ['search', 'elastic_stack', 'custom', 'connector', 'connector_client', 'zoom'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.zoom.description',
|
||||
{
|
||||
|
@ -700,7 +599,7 @@ export const CONNECTOR_DEFINITIONS: ConnectorServerSideDefinition[] = [
|
|||
serviceType: 'zoom',
|
||||
},
|
||||
{
|
||||
categories: ['enterprise_search', 'custom', 'elastic_stack', 'connector', 'connector_client'],
|
||||
categories: ['search', 'custom', 'elastic_stack', 'connector', 'connector_client'],
|
||||
description: i18n.translate(
|
||||
'searchConnectorsPlugin.content.nativeConnectors.customConnector.description',
|
||||
{
|
||||
|
|
|
@ -16174,8 +16174,6 @@
|
|||
"xpack.enterpriseSearch.appSearch.enginesOverview.table.column.lastUpdated": "Dernière mise à jour",
|
||||
"xpack.enterpriseSearch.appSearch.enginesOverview.table.column.name": "Nom",
|
||||
"xpack.enterpriseSearch.appSearch.enginesOverview.title": "Aperçu des moteurs",
|
||||
"xpack.enterpriseSearch.appSearch.integrations.jsonDescription": "Recherchez dans vos données JSON avec App Search.",
|
||||
"xpack.enterpriseSearch.appSearch.integrations.jsonName": "JSON",
|
||||
"xpack.enterpriseSearch.appSearch.logRetention.callout.description.manageSettingsDetail": "Pour gérer les analyses et le logging, {visitSettingsLink}.",
|
||||
"xpack.enterpriseSearch.appSearch.logRetention.callout.description.manageSettingsLinkText": "accédez à vos paramètres",
|
||||
"xpack.enterpriseSearch.appSearch.logRetention.callout.disabledSinceTitle": "{logsTitle} ont été désactivés depuis le {disabledDate}.",
|
||||
|
|
|
@ -15921,8 +15921,6 @@
|
|||
"xpack.enterpriseSearch.appSearch.enginesOverview.table.column.lastUpdated": "最終更新",
|
||||
"xpack.enterpriseSearch.appSearch.enginesOverview.table.column.name": "名前",
|
||||
"xpack.enterpriseSearch.appSearch.enginesOverview.title": "エンジン概要",
|
||||
"xpack.enterpriseSearch.appSearch.integrations.jsonDescription": "App Searchを使用して、JSONデータを検索します。",
|
||||
"xpack.enterpriseSearch.appSearch.integrations.jsonName": "JSON",
|
||||
"xpack.enterpriseSearch.appSearch.logRetention.callout.description.manageSettingsDetail": "分析とログを管理するには、{visitSettingsLink}してください。",
|
||||
"xpack.enterpriseSearch.appSearch.logRetention.callout.description.manageSettingsLinkText": "設定を表示",
|
||||
"xpack.enterpriseSearch.appSearch.logRetention.callout.disabledSinceTitle": "{logsTitle}は、{disabledDate}以降に無効にされました。",
|
||||
|
|
|
@ -15949,8 +15949,6 @@
|
|||
"xpack.enterpriseSearch.appSearch.enginesOverview.table.column.lastUpdated": "上次更新时间",
|
||||
"xpack.enterpriseSearch.appSearch.enginesOverview.table.column.name": "名称",
|
||||
"xpack.enterpriseSearch.appSearch.enginesOverview.title": "引擎概览",
|
||||
"xpack.enterpriseSearch.appSearch.integrations.jsonDescription": "通过 App Search 搜索您的 JSON 数据。",
|
||||
"xpack.enterpriseSearch.appSearch.integrations.jsonName": "JSON",
|
||||
"xpack.enterpriseSearch.appSearch.logRetention.callout.description.manageSettingsDetail": "要管理分析和日志记录,请{visitSettingsLink}。",
|
||||
"xpack.enterpriseSearch.appSearch.logRetention.callout.description.manageSettingsLinkText": "访问您的设置",
|
||||
"xpack.enterpriseSearch.appSearch.logRetention.callout.disabledSinceTitle": "自 {disabledDate}后,{logsTitle} 已禁用。",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue