mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Clean up task manager public setup contract to improve readability and API docs (#113415)
* Improve API docs for task manager * Update docs
This commit is contained in:
parent
fb2ee109b8
commit
66f69d6a13
56 changed files with 2263 additions and 803 deletions
|
@ -184,7 +184,7 @@
|
|||
"APMPluginStartDependencies",
|
||||
", unknown>, plugins: Pick<",
|
||||
"APMPluginSetupDependencies",
|
||||
", \"data\" | \"security\" | \"home\" | \"features\" | \"fleet\" | \"ml\" | \"actions\" | \"usageCollection\" | \"apmOss\" | \"licensing\" | \"observability\" | \"ruleRegistry\" | \"spaces\" | \"cloud\" | \"taskManager\" | \"alerting\">) => { config$: ",
|
||||
", \"data\" | \"cloud\" | \"security\" | \"home\" | \"features\" | \"fleet\" | \"ml\" | \"actions\" | \"usageCollection\" | \"apmOss\" | \"licensing\" | \"observability\" | \"ruleRegistry\" | \"spaces\" | \"taskManager\" | \"alerting\">) => { config$: ",
|
||||
"Observable",
|
||||
"<{ 'apm_oss.transactionIndices': string; 'apm_oss.spanIndices': string; 'apm_oss.errorIndices': string; 'apm_oss.metricsIndices': string; 'apm_oss.sourcemapIndices': string; 'apm_oss.onboardingIndices': string; 'xpack.apm.serviceMapEnabled': boolean; 'xpack.apm.serviceMapFingerprintBucketSize': number; 'xpack.apm.serviceMapTraceIdBucketSize': number; 'xpack.apm.serviceMapFingerprintGlobalBucketSize': number; 'xpack.apm.serviceMapTraceIdGlobalBucketSize': number; 'xpack.apm.serviceMapMaxTracesPerRequest': number; 'xpack.apm.ui.enabled': boolean; 'xpack.apm.maxServiceEnvironments': number; 'xpack.apm.maxServiceSelection': number; 'xpack.apm.ui.maxTraceItems': number; 'xpack.apm.ui.transactionGroupBucketSize': number; 'xpack.apm.autocreateApmIndexPattern': boolean; 'xpack.apm.telemetryCollectionEnabled': boolean; 'xpack.apm.searchAggregatedTransactions': ",
|
||||
"SearchAggregatedTransactionSetting",
|
||||
|
@ -244,7 +244,7 @@
|
|||
"signature": [
|
||||
"Pick<",
|
||||
"APMPluginSetupDependencies",
|
||||
", \"data\" | \"security\" | \"home\" | \"features\" | \"fleet\" | \"ml\" | \"actions\" | \"usageCollection\" | \"apmOss\" | \"licensing\" | \"observability\" | \"ruleRegistry\" | \"spaces\" | \"cloud\" | \"taskManager\" | \"alerting\">"
|
||||
", \"data\" | \"cloud\" | \"security\" | \"home\" | \"features\" | \"fleet\" | \"ml\" | \"actions\" | \"usageCollection\" | \"apmOss\" | \"licensing\" | \"observability\" | \"ruleRegistry\" | \"spaces\" | \"taskManager\" | \"alerting\">"
|
||||
],
|
||||
"path": "x-pack/plugins/apm/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
|
@ -421,7 +421,9 @@
|
|||
"label": "params",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ query: { _inspect: boolean; }; }"
|
||||
"{ query: { _inspect: boolean; start?: number | undefined; end?: number | undefined; uiFilters?: ",
|
||||
"UxUIFilters",
|
||||
" | undefined; }; }"
|
||||
],
|
||||
"path": "x-pack/plugins/apm/server/routes/typings.ts",
|
||||
"deprecated": false
|
||||
|
@ -593,7 +595,15 @@
|
|||
"section": "def-server.RuleRegistryPluginStartContract",
|
||||
"text": "RuleRegistryPluginStartContract"
|
||||
},
|
||||
">; }; security?: { setup: ",
|
||||
">; }; cloud?: { setup: ",
|
||||
{
|
||||
"pluginId": "cloud",
|
||||
"scope": "server",
|
||||
"docId": "kibCloudPluginApi",
|
||||
"section": "def-server.CloudSetup",
|
||||
"text": "CloudSetup"
|
||||
},
|
||||
"; start: () => Promise<undefined>; } | undefined; security?: { setup: ",
|
||||
{
|
||||
"pluginId": "security",
|
||||
"scope": "server",
|
||||
|
@ -675,15 +685,7 @@
|
|||
"section": "def-server.SpacesPluginStart",
|
||||
"text": "SpacesPluginStart"
|
||||
},
|
||||
">; } | undefined; cloud?: { setup: ",
|
||||
{
|
||||
"pluginId": "cloud",
|
||||
"scope": "server",
|
||||
"docId": "kibCloudPluginApi",
|
||||
"section": "def-server.CloudSetup",
|
||||
"text": "CloudSetup"
|
||||
},
|
||||
"; start: () => Promise<undefined>; } | undefined; taskManager?: { setup: ",
|
||||
">; } | undefined; taskManager?: { setup: ",
|
||||
{
|
||||
"pluginId": "taskManager",
|
||||
"scope": "server",
|
||||
|
@ -890,7 +892,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { environments: any; }, ",
|
||||
", { environments: string[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/errors\": ",
|
||||
"ServerRoute",
|
||||
|
@ -944,7 +946,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { errorGroups: any; }, ",
|
||||
", { errorGroups: { message: string; occurrenceCount: number; culprit: string | undefined; groupId: string; latestOccurrenceAt: string; handled: boolean | undefined; type: string | undefined; }[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/errors/{groupId}\": ",
|
||||
"ServerRoute",
|
||||
|
@ -991,13 +993,7 @@
|
|||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { transaction: ",
|
||||
"APMError",
|
||||
" | ",
|
||||
"Transaction",
|
||||
" | ",
|
||||
"Span",
|
||||
" | BaseMetric | ",
|
||||
"Profile",
|
||||
" | undefined; error: ",
|
||||
"APMError",
|
||||
"; occurrencesCount: number; }, ",
|
||||
|
@ -1048,7 +1044,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { noHits: boolean; buckets: any; bucketSize: number; }, ",
|
||||
", { noHits: boolean; buckets: { key: number; count: number; }[]; bucketSize: number; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/metrics/charts\": ",
|
||||
"ServerRoute",
|
||||
|
@ -1128,7 +1124,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { serviceCount: any; transactionPerMinute: { value: undefined; timeseries: never[]; } | { value: number; timeseries: any; }; }, ",
|
||||
", { serviceCount: number; transactionPerMinute: { value: undefined; timeseries: never[]; } | { value: number; timeseries: { x: number; y: number | null; }[]; }; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/observability_overview/has_data\": ",
|
||||
"ServerRoute",
|
||||
|
@ -1296,7 +1292,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { topItems: string[]; items: any; }, ",
|
||||
", { topItems: string[]; items: Record<string, number>[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/rum-client/services\": ",
|
||||
"ServerRoute",
|
||||
|
@ -1322,7 +1318,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { rumServices: any; }, ",
|
||||
", { rumServices: string[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/rum-client/visitor-breakdown\": ",
|
||||
"ServerRoute",
|
||||
|
@ -1354,7 +1350,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { os: any; browsers: any; }, ",
|
||||
", { os: { count: number; name: string; }[]; browsers: { count: number; name: string; }[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/rum-client/web-core-vitals\": ",
|
||||
"ServerRoute",
|
||||
|
@ -1386,7 +1382,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { coreVitalPages: any; cls: any; fid: any; lcp: any; tbt: any; fcp: any; lcpRanks: number[]; fidRanks: number[]; clsRanks: number[]; }, ",
|
||||
", { coreVitalPages: number; cls: number | null; fid: number | null | undefined; lcp: number | null | undefined; tbt: number; fcp: number | null | undefined; lcpRanks: number[]; fidRanks: number[]; clsRanks: number[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/rum-client/long-task-metrics\": ",
|
||||
"ServerRoute",
|
||||
|
@ -1508,7 +1504,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { indices: string; hasData: boolean; serviceName: any; }, ",
|
||||
", { indices: string; hasData: boolean; serviceName: string | number | undefined; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/service-map\": ",
|
||||
"ServerRoute",
|
||||
|
@ -1716,7 +1712,19 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { items: JoinedReturnType<any, any>; hasLegacyData: boolean; }, ",
|
||||
", { items: JoinedReturnType<{ serviceName: string; transactionType: string; environments: string[]; agentName: ",
|
||||
"AgentName",
|
||||
"; latency: number | null; transactionErrorRate: number; throughput: number; } | { serviceName: string; environments: string[]; agentName: ",
|
||||
"AgentName",
|
||||
"; } | { serviceName: string; healthStatus: ",
|
||||
"ServiceHealthStatus",
|
||||
"; }, { serviceName: string; transactionType: string; environments: string[]; agentName: ",
|
||||
"AgentName",
|
||||
"; latency: number | null; transactionErrorRate: number; throughput: number; } & { serviceName: string; environments: string[]; agentName: ",
|
||||
"AgentName",
|
||||
"; } & { serviceName: string; healthStatus: ",
|
||||
"ServiceHealthStatus",
|
||||
"; }>; hasLegacyData: boolean; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/detailed_statistics\": ",
|
||||
"ServerRoute",
|
||||
|
@ -1764,7 +1772,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { currentPeriod: _.Dictionary<any>; previousPeriod: _.Dictionary<any>; }, ",
|
||||
", { currentPeriod: _.Dictionary<{ serviceName: string; latency: { x: number; y: number | null; }[]; transactionErrorRate: { x: number; y: number; }[]; throughput: { x: number; y: number; }[]; }>; previousPeriod: _.Dictionary<{ serviceName: string; latency: { x: number; y: number | null; }[]; transactionErrorRate: { x: number; y: number; }[]; throughput: { x: number; y: number; }[]; }>; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/metadata/details\": ",
|
||||
"ServerRoute",
|
||||
|
@ -1864,7 +1872,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { transactionTypes: any; }, ",
|
||||
", { transactionTypes: string[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/node/{serviceNodeName}/metadata\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2030,7 +2038,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { is_aggregation_accurate: boolean; error_groups: any; }, ",
|
||||
", { is_aggregation_accurate: boolean; error_groups: { group_id: string; name: string; lastSeen: number; occurrences: number; }[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/error_groups/detailed_statistics\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2116,9 +2124,29 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { '@timestamp': string; agent: ",
|
||||
", { '@timestamp': string; agent: (",
|
||||
"Agent",
|
||||
" | { name: string; version: string; }; service: any; container: any; kubernetes: any; host: any; cloud: any; }, ",
|
||||
" & { name: string; version: string; }) | ({ name: string; version: string; } & ",
|
||||
"Agent",
|
||||
"); service: ",
|
||||
"Service",
|
||||
" | (",
|
||||
"Service",
|
||||
" & { name: string; node?: { name: string; } | undefined; environment?: string | undefined; version?: string | undefined; }) | (",
|
||||
"Service",
|
||||
" & { node?: { name: string; } | undefined; }) | (",
|
||||
"Service",
|
||||
" & { name: string; node?: { name: string; } | undefined; environment?: string | undefined; version?: string | undefined; } & { node?: { name: string; } | undefined; }) | (",
|
||||
"Service",
|
||||
" & { node?: { name: string; } | undefined; } & { name: string; node?: { name: string; } | undefined; environment?: string | undefined; version?: string | undefined; }); container: ",
|
||||
"Container",
|
||||
" | undefined; kubernetes: ",
|
||||
"Kubernetes",
|
||||
" | undefined; host: ",
|
||||
"Host",
|
||||
" | undefined; cloud: ",
|
||||
"Cloud",
|
||||
" | undefined; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/throughput\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2178,7 +2206,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { currentPeriod: any; previousPeriod: { x: number; y: number | null | undefined; }[]; throughputUnit: ",
|
||||
", { currentPeriod: { x: number; y: number | null; }[]; previousPeriod: { x: number; y: number | null | undefined; }[]; throughputUnit: ",
|
||||
"ThroughputUnit",
|
||||
"; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
|
@ -2440,7 +2468,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { breakdown: { title: string; data: any; }[]; }, ",
|
||||
", { breakdown: { title: string; data: { x: number; y: number; }[]; }[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/profiling/timeline\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2484,7 +2512,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { profilingTimeline: any; }, ",
|
||||
", { profilingTimeline: { x: number; valueTypes: { wall_time: number; cpu_time: number; samples: number; alloc_objects: number; alloc_space: number; inuse_objects: number; inuse_space: number; unknown: number; }; }[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/profiling/statistics\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2606,7 +2634,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { alerts: any[]; }, ",
|
||||
", { alerts: Partial<Record<string, unknown[]>>[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/infrastructure\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2650,7 +2678,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { serviceInfrastructure: { containerIds: any; hostNames: any; }; }, ",
|
||||
", { serviceInfrastructure: { containerIds: string[]; hostNames: string[]; }; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/traces/{traceId}\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2678,9 +2706,9 @@
|
|||
"ProcessorEvent",
|
||||
".transaction | ",
|
||||
"ProcessorEvent",
|
||||
".span>[]; errorDocs: TypeOfProcessorEvent<",
|
||||
"ProcessorEvent",
|
||||
">[]; }, ",
|
||||
".span>[]; errorDocs: ",
|
||||
"APMError",
|
||||
"[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/traces\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2740,9 +2768,9 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { transaction: TypeOfProcessorEvent<",
|
||||
"ProcessorEvent",
|
||||
">; }, ",
|
||||
", { transaction: ",
|
||||
"Transaction",
|
||||
"; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/transactions/{transactionId}\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2760,9 +2788,9 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { transaction: TypeOfProcessorEvent<",
|
||||
"ProcessorEvent",
|
||||
">; }, ",
|
||||
", { transaction: ",
|
||||
"Transaction",
|
||||
"; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/transactions/groups/main_statistics\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2824,7 +2852,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { transactionGroups: any; isAggregationAccurate: boolean; bucketSize: number; }, ",
|
||||
", { transactionGroups: { transactionType: string; name: string; latency: number | null; throughput: number; errorRate: number; impact: number; }[]; isAggregationAccurate: boolean; bucketSize: number; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/transactions/groups/detailed_statistics\": ",
|
||||
"ServerRoute",
|
||||
|
@ -2976,7 +3004,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { currentPeriod: { overallAvgDuration: any; latencyTimeseries: any; }; previousPeriod: { latencyTimeseries: { x: number; y: number | null | undefined; }[]; overallAvgDuration: any; }; anomalyTimeseries: { jobId: string; anomalyScore: { x0: number; x: number; y: number; }[]; anomalyBoundaries: { x: number; y0: number; y: number; }[]; } | undefined; }, ",
|
||||
", { currentPeriod: { overallAvgDuration: number | null; latencyTimeseries: { x: number; y: number | null; }[]; }; previousPeriod: { latencyTimeseries: { x: number; y: number | null | undefined; }[]; overallAvgDuration: number | null; }; anomalyTimeseries: { jobId: string; anomalyScore: { x0: number; x: number; y: number; }[]; anomalyBoundaries: { x: number; y0: number; y: number; }[]; } | undefined; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/transactions/traces/samples\": ",
|
||||
"ServerRoute",
|
||||
|
@ -3088,7 +3116,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { timeseries: { title: any; color: any; type: string; data: any; hideLegend: boolean; legendValue: string; }[]; }, ",
|
||||
", { timeseries: { title: string; color: string; type: string; data: { x: number; y: number | null; }[]; hideLegend: boolean; legendValue: string; }[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/services/{serviceName}/transactions/charts/error_rate\": ",
|
||||
"ServerRoute",
|
||||
|
@ -3204,7 +3232,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { errorRateChartPreview: any; }, ",
|
||||
", { errorRateChartPreview: { x: number; y: number; }[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/alerts/chart_preview/transaction_duration\": ",
|
||||
"ServerRoute",
|
||||
|
@ -3258,7 +3286,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { latencyChartPreview: any; }, ",
|
||||
", { latencyChartPreview: { x: number; y: number | null; }[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/alerts/chart_preview/transaction_error_count\": ",
|
||||
"ServerRoute",
|
||||
|
@ -3312,7 +3340,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { errorCountChartPreview: any; }, ",
|
||||
", { errorCountChartPreview: { x: number; y: number; }[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/settings/agent-configuration\": ",
|
||||
"ServerRoute",
|
||||
|
@ -3482,7 +3510,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { environments: { name: any; alreadyConfigured: any; }[]; }, ",
|
||||
", { environments: { name: string; alreadyConfigured: boolean; }[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/settings/agent-configuration/agent_name\": ",
|
||||
"ServerRoute",
|
||||
|
@ -3544,7 +3572,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { environments: any; }, ",
|
||||
", { environments: string[]; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/settings/apm-index-settings\": ",
|
||||
"ServerRoute",
|
||||
|
@ -3624,9 +3652,9 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", TypeOfProcessorEvent<",
|
||||
"ProcessorEvent",
|
||||
">, ",
|
||||
", ",
|
||||
"Transaction",
|
||||
", ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/settings/custom_links\": ",
|
||||
"ServerRoute",
|
||||
|
@ -4090,7 +4118,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { metadata: { spanType: any; spanSubtype: any; }; }, ",
|
||||
", { metadata: { spanType: string | undefined; spanSubtype: string | undefined; }; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/backends/{backendName}/charts/latency\": ",
|
||||
"ServerRoute",
|
||||
|
@ -4138,7 +4166,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { currentTimeseries: any; comparisonTimeseries: any; }, ",
|
||||
", { currentTimeseries: { x: number; y: number; }[]; comparisonTimeseries: { x: number; y: number; }[] | null; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/backends/{backendName}/charts/throughput\": ",
|
||||
"ServerRoute",
|
||||
|
@ -4186,7 +4214,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { currentTimeseries: any; comparisonTimeseries: any; }, ",
|
||||
", { currentTimeseries: { x: number; y: number | null; }[]; comparisonTimeseries: { x: number; y: number | null; }[] | null; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/backends/{backendName}/charts/error_rate\": ",
|
||||
"ServerRoute",
|
||||
|
@ -4234,7 +4262,7 @@
|
|||
"section": "def-server.APMRouteHandlerResources",
|
||||
"text": "APMRouteHandlerResources"
|
||||
},
|
||||
", { currentTimeseries: any; comparisonTimeseries: any; }, ",
|
||||
", { currentTimeseries: { x: number; y: number; }[]; comparisonTimeseries: { x: number; y: number; }[] | null; }, ",
|
||||
"APMRouteCreateOptions",
|
||||
">; } & { \"GET /api/apm/fallback_to_transactions\": ",
|
||||
"ServerRoute",
|
||||
|
|
|
@ -18,7 +18,7 @@ Contact [APM UI](https://github.com/orgs/elastic/teams/apm-ui) for questions reg
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 42 | 0 | 42 | 30 |
|
||||
| 42 | 0 | 42 | 36 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -2935,7 +2935,7 @@
|
|||
"label": "actionField",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(\"status\" | \"description\" | \"title\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]"
|
||||
"(\"status\" | \"title\" | \"description\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/ui/types.ts",
|
||||
"deprecated": false
|
||||
|
@ -4143,7 +4143,7 @@
|
|||
"label": "updateKey",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"status\" | \"description\" | \"title\" | \"tags\" | \"settings\" | \"connector\""
|
||||
"\"status\" | \"title\" | \"description\" | \"tags\" | \"settings\" | \"connector\""
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/ui/types.ts",
|
||||
"deprecated": false
|
||||
|
@ -5112,7 +5112,7 @@
|
|||
"label": "CaseField",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"description\" | \"title\" | \"comments\""
|
||||
"\"title\" | \"description\" | \"comments\""
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
|
||||
"deprecated": false,
|
||||
|
@ -5848,7 +5848,7 @@
|
|||
"section": "def-common.ConnectorTypes",
|
||||
"text": "ConnectorTypes"
|
||||
},
|
||||
".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }[]; owner: string; } & { id: string; version: string; error: string | null; owner: string; })[]"
|
||||
".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"title\" | \"description\" | \"comments\"; target: string; }[]; owner: string; } & { id: string; version: string; error: string | null; owner: string; })[]"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/cases/configure.ts",
|
||||
"deprecated": false,
|
||||
|
@ -6158,7 +6158,7 @@
|
|||
"section": "def-common.ConnectorTypes",
|
||||
"text": "ConnectorTypes"
|
||||
},
|
||||
".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }[]; owner: string; } & { id: string; version: string; error: string | null; owner: string; }"
|
||||
".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"title\" | \"description\" | \"comments\"; target: string; }[]; owner: string; } & { id: string; version: string; error: string | null; owner: string; }"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/cases/configure.ts",
|
||||
"deprecated": false,
|
||||
|
@ -6776,7 +6776,7 @@
|
|||
"label": "CaseUserActionAttributes",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ action_field: (\"status\" | \"description\" | \"title\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]; action: \"add\" | \"delete\" | \"create\" | \"update\" | \"push-to-service\"; action_at: string; action_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; new_value: string | null; old_value: string | null; owner: string; }"
|
||||
"{ action_field: (\"status\" | \"title\" | \"description\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]; action: \"add\" | \"delete\" | \"create\" | \"update\" | \"push-to-service\"; action_at: string; action_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; new_value: string | null; old_value: string | null; owner: string; }"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
|
||||
"deprecated": false,
|
||||
|
@ -6852,7 +6852,7 @@
|
|||
"label": "CaseUserActionResponse",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ action_field: (\"status\" | \"description\" | \"title\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]; action: \"add\" | \"delete\" | \"create\" | \"update\" | \"push-to-service\"; action_at: string; action_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; new_value: string | null; old_value: string | null; owner: string; } & { action_id: string; case_id: string; comment_id: string | null; new_val_connector_id: string | null; old_val_connector_id: string | null; } & { sub_case_id?: string | undefined; }"
|
||||
"{ action_field: (\"status\" | \"title\" | \"description\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]; action: \"add\" | \"delete\" | \"create\" | \"update\" | \"push-to-service\"; action_at: string; action_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; new_value: string | null; old_value: string | null; owner: string; } & { action_id: string; case_id: string; comment_id: string | null; new_val_connector_id: string | null; old_val_connector_id: string | null; } & { sub_case_id?: string | undefined; }"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
|
||||
"deprecated": false,
|
||||
|
@ -6866,7 +6866,7 @@
|
|||
"label": "CaseUserActionsResponse",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"({ action_field: (\"status\" | \"description\" | \"title\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]; action: \"add\" | \"delete\" | \"create\" | \"update\" | \"push-to-service\"; action_at: string; action_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; new_value: string | null; old_value: string | null; owner: string; } & { action_id: string; case_id: string; comment_id: string | null; new_val_connector_id: string | null; old_val_connector_id: string | null; } & { sub_case_id?: string | undefined; })[]"
|
||||
"({ action_field: (\"status\" | \"title\" | \"description\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]; action: \"add\" | \"delete\" | \"create\" | \"update\" | \"push-to-service\"; action_at: string; action_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; new_value: string | null; old_value: string | null; owner: string; } & { action_id: string; case_id: string; comment_id: string | null; new_val_connector_id: string | null; old_val_connector_id: string | null; } & { sub_case_id?: string | undefined; })[]"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
|
||||
"deprecated": false,
|
||||
|
@ -7568,7 +7568,7 @@
|
|||
"label": "ConnectorMappings",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }[]; owner: string; }"
|
||||
"{ mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"title\" | \"description\" | \"comments\"; target: string; }[]; owner: string; }"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
|
||||
"deprecated": false,
|
||||
|
@ -7582,7 +7582,7 @@
|
|||
"label": "ConnectorMappingsAttributes",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }"
|
||||
"{ action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"title\" | \"description\" | \"comments\"; target: string; }"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
|
||||
"deprecated": false,
|
||||
|
@ -7878,7 +7878,7 @@
|
|||
"label": "GetDefaultMappingsResponse",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"description\" | \"title\" | \"comments\"; target: string; }[]"
|
||||
"{ action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"title\" | \"description\" | \"comments\"; target: string; }[]"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
|
||||
"deprecated": false,
|
||||
|
@ -8545,7 +8545,7 @@
|
|||
"label": "UpdateKey",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"status\" | \"description\" | \"title\" | \"tags\" | \"settings\" | \"connector\""
|
||||
"\"status\" | \"title\" | \"description\" | \"tags\" | \"settings\" | \"connector\""
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/ui/types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -8587,7 +8587,7 @@
|
|||
"label": "UserActionField",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(\"status\" | \"description\" | \"title\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]"
|
||||
"(\"status\" | \"title\" | \"description\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
|
||||
"deprecated": false,
|
||||
|
@ -8601,7 +8601,7 @@
|
|||
"label": "UserActionFieldType",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"status\" | \"description\" | \"title\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\""
|
||||
"\"status\" | \"title\" | \"description\" | \"tags\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\""
|
||||
],
|
||||
"path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
|
||||
"deprecated": false,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -18,7 +18,7 @@ Contact [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) for que
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 2292 | 27 | 1020 | 30 |
|
||||
| 2293 | 27 | 1020 | 30 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -2223,7 +2223,7 @@
|
|||
"section": "def-public.AppDeepLink",
|
||||
"text": "AppDeepLink"
|
||||
},
|
||||
", \"title\" | \"id\" | \"order\" | \"path\" | \"tooltip\" | \"euiIconType\" | \"icon\"> & { deepLinks: ",
|
||||
", \"id\" | \"title\" | \"order\" | \"path\" | \"tooltip\" | \"euiIconType\" | \"icon\"> & { deepLinks: ",
|
||||
{
|
||||
"pluginId": "core",
|
||||
"scope": "public",
|
||||
|
@ -2263,7 +2263,7 @@
|
|||
"section": "def-public.App",
|
||||
"text": "App"
|
||||
},
|
||||
"<unknown>, \"status\" | \"title\" | \"id\" | \"order\" | \"category\" | \"navLinkStatus\" | \"defaultPath\" | \"capabilities\" | \"chromeless\" | \"appRoute\" | \"exactRoute\" | \"tooltip\" | \"euiIconType\" | \"icon\"> & { status: ",
|
||||
"<unknown>, \"status\" | \"id\" | \"title\" | \"order\" | \"category\" | \"navLinkStatus\" | \"defaultPath\" | \"capabilities\" | \"chromeless\" | \"appRoute\" | \"exactRoute\" | \"tooltip\" | \"euiIconType\" | \"icon\"> & { status: ",
|
||||
{
|
||||
"pluginId": "core",
|
||||
"scope": "public",
|
||||
|
|
|
@ -18,7 +18,7 @@ Contact [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) for que
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 2292 | 27 | 1020 | 30 |
|
||||
| 2293 | 27 | 1020 | 30 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ Contact [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) for que
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 2292 | 27 | 1020 | 30 |
|
||||
| 2293 | 27 | 1020 | 30 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ Contact [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) for que
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 2292 | 27 | 1020 | 30 |
|
||||
| 2293 | 27 | 1020 | 30 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -14902,6 +14902,21 @@
|
|||
"path": "src/core/server/saved_objects/types.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "core",
|
||||
"id": "def-server.SavedObjectsTypeManagementDefinition.displayName",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "displayName",
|
||||
"description": [
|
||||
"\nWhen specified, will be used instead of the type's name in SO management section's labels."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "src/core/server/saved_objects/types.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "core",
|
||||
"id": "def-server.SavedObjectsTypeManagementDefinition.visibleInManagement",
|
||||
|
|
|
@ -18,7 +18,7 @@ Contact [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) for que
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 2292 | 27 | 1020 | 30 |
|
||||
| 2293 | 27 | 1020 | 30 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
814
api_docs/custom_integrations.json
Normal file
814
api_docs/custom_integrations.json
Normal file
|
@ -0,0 +1,814 @@
|
|||
{
|
||||
"id": "customIntegrations",
|
||||
"client": {
|
||||
"classes": [],
|
||||
"functions": [],
|
||||
"interfaces": [],
|
||||
"enums": [],
|
||||
"misc": [],
|
||||
"objects": [],
|
||||
"setup": {
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-public.CustomIntegrationsSetup",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CustomIntegrationsSetup",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/public/types.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-public.CustomIntegrationsSetup.getAppendCustomIntegrations",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "getAppendCustomIntegrations",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"() => Promise<",
|
||||
{
|
||||
"pluginId": "customIntegrations",
|
||||
"scope": "common",
|
||||
"docId": "kibCustomIntegrationsPluginApi",
|
||||
"section": "def-common.CustomIntegration",
|
||||
"text": "CustomIntegration"
|
||||
},
|
||||
"[]>"
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/public/types.ts",
|
||||
"deprecated": false,
|
||||
"children": [],
|
||||
"returnComment": []
|
||||
}
|
||||
],
|
||||
"lifecycle": "setup",
|
||||
"initialIsOpen": true
|
||||
},
|
||||
"start": {
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-public.CustomIntegrationsStart",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CustomIntegrationsStart",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/public/types.ts",
|
||||
"deprecated": false,
|
||||
"children": [],
|
||||
"lifecycle": "start",
|
||||
"initialIsOpen": true
|
||||
}
|
||||
},
|
||||
"server": {
|
||||
"classes": [],
|
||||
"functions": [],
|
||||
"interfaces": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CategoryCount",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CategoryCount",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CategoryCount.count",
|
||||
"type": "number",
|
||||
"tags": [],
|
||||
"label": "count",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CategoryCount.id",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "id",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"custom\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"sample_data\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\" | \"upload_file\" | \"updates_available\""
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegration",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CustomIntegration",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegration.id",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "id",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegration.title",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "title",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegration.description",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "description",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegration.type",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "type",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"ui_link\""
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegration.uiInternalPath",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "uiInternalPath",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegration.isBeta",
|
||||
"type": "boolean",
|
||||
"tags": [],
|
||||
"label": "isBeta",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegration.icons",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "icons",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ src: string; type: string; }[]"
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegration.categories",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "categories",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(\"custom\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"sample_data\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\" | \"upload_file\" | \"updates_available\")[]"
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegration.shipper",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "shipper",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
}
|
||||
],
|
||||
"enums": [],
|
||||
"misc": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.Category",
|
||||
"type": "Type",
|
||||
"tags": [],
|
||||
"label": "Category",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"custom\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"sample_data\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\" | \"upload_file\" | \"updates_available\""
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false,
|
||||
"initialIsOpen": false
|
||||
}
|
||||
],
|
||||
"objects": [],
|
||||
"setup": {
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegrationsPluginSetup",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CustomIntegrationsPluginSetup",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/server/types.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegrationsPluginSetup.registerCustomIntegration",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "registerCustomIntegration",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(customIntegration: Pick<",
|
||||
{
|
||||
"pluginId": "customIntegrations",
|
||||
"scope": "common",
|
||||
"docId": "kibCustomIntegrationsPluginApi",
|
||||
"section": "def-common.CustomIntegration",
|
||||
"text": "CustomIntegration"
|
||||
},
|
||||
", \"id\" | \"title\" | \"description\" | \"uiInternalPath\" | \"isBeta\" | \"icons\" | \"categories\" | \"shipper\">) => void"
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/server/types.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegrationsPluginSetup.registerCustomIntegration.$1",
|
||||
"type": "Object",
|
||||
"tags": [],
|
||||
"label": "customIntegration",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"Pick<",
|
||||
{
|
||||
"pluginId": "customIntegrations",
|
||||
"scope": "common",
|
||||
"docId": "kibCustomIntegrationsPluginApi",
|
||||
"section": "def-common.CustomIntegration",
|
||||
"text": "CustomIntegration"
|
||||
},
|
||||
", \"id\" | \"title\" | \"description\" | \"uiInternalPath\" | \"isBeta\" | \"icons\" | \"categories\" | \"shipper\">"
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/server/types.ts",
|
||||
"deprecated": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": []
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegrationsPluginSetup.getAppendCustomIntegrations",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "getAppendCustomIntegrations",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"() => ",
|
||||
{
|
||||
"pluginId": "customIntegrations",
|
||||
"scope": "common",
|
||||
"docId": "kibCustomIntegrationsPluginApi",
|
||||
"section": "def-common.CustomIntegration",
|
||||
"text": "CustomIntegration"
|
||||
},
|
||||
"[]"
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/server/types.ts",
|
||||
"deprecated": false,
|
||||
"children": [],
|
||||
"returnComment": []
|
||||
}
|
||||
],
|
||||
"lifecycle": "setup",
|
||||
"initialIsOpen": true
|
||||
},
|
||||
"start": {
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-server.CustomIntegrationsPluginStart",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CustomIntegrationsPluginStart",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/server/types.ts",
|
||||
"deprecated": false,
|
||||
"children": [],
|
||||
"lifecycle": "start",
|
||||
"initialIsOpen": true
|
||||
}
|
||||
},
|
||||
"common": {
|
||||
"classes": [],
|
||||
"functions": [],
|
||||
"interfaces": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CategoryCount",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CategoryCount",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CategoryCount.count",
|
||||
"type": "number",
|
||||
"tags": [],
|
||||
"label": "count",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CategoryCount.id",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "id",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"custom\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"sample_data\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\" | \"upload_file\" | \"updates_available\""
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CustomIntegration",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CustomIntegration",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CustomIntegration.id",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "id",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CustomIntegration.title",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "title",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CustomIntegration.description",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "description",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CustomIntegration.type",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "type",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"ui_link\""
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CustomIntegration.uiInternalPath",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "uiInternalPath",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CustomIntegration.isBeta",
|
||||
"type": "boolean",
|
||||
"tags": [],
|
||||
"label": "isBeta",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CustomIntegration.icons",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "icons",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ src: string; type: string; }[]"
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CustomIntegration.categories",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "categories",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(\"custom\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"sample_data\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\" | \"upload_file\" | \"updates_available\")[]"
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CustomIntegration.shipper",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "shipper",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
}
|
||||
],
|
||||
"enums": [],
|
||||
"misc": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.Category",
|
||||
"type": "Type",
|
||||
"tags": [],
|
||||
"label": "Category",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"custom\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"sample_data\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\" | \"upload_file\" | \"updates_available\""
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.PLUGIN_ID",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "PLUGIN_ID",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"customIntegrations\""
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.PLUGIN_NAME",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "PLUGIN_NAME",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"customIntegrations\""
|
||||
],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.ROUTES_ADDABLECUSTOMINTEGRATIONS",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "ROUTES_ADDABLECUSTOMINTEGRATIONS",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false,
|
||||
"initialIsOpen": false
|
||||
}
|
||||
],
|
||||
"objects": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY",
|
||||
"type": "Object",
|
||||
"tags": [],
|
||||
"label": "CATEGORY_DISPLAY",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.aws",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "aws",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.azure",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "azure",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.cloud",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "cloud",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.config_management",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "config_management",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.containers",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "containers",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.crm",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "crm",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.custom",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "custom",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.datastore",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "datastore",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.elastic_stack",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "elastic_stack",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.google_cloud",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "google_cloud",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.kubernetes",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "kubernetes",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.languages",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "languages",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.message_queue",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "message_queue",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.monitoring",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "monitoring",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.network",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "network",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.notification",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "notification",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.os_system",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "os_system",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.productivity",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "productivity",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.security",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "security",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.sample_data",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "sample_data",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.support",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "support",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.ticketing",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "ticketing",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.version_control",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "version_control",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.web",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "web",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.upload_file",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "upload_file",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "customIntegrations",
|
||||
"id": "def-common.CATEGORY_DISPLAY.updates_available",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "updates_available",
|
||||
"description": [],
|
||||
"path": "src/plugins/custom_integrations/common/index.ts",
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
55
api_docs/custom_integrations.mdx
Normal file
55
api_docs/custom_integrations.mdx
Normal file
|
@ -0,0 +1,55 @@
|
|||
---
|
||||
id: kibCustomIntegrationsPluginApi
|
||||
slug: /kibana-dev-docs/customIntegrationsPluginApi
|
||||
title: customIntegrations
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
summary: API docs for the customIntegrations plugin
|
||||
date: 2020-11-16
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'customIntegrations']
|
||||
warning: This document is auto-generated and is meant to be viewed inside our experimental, new docs system. Reach out in #docs-engineering for more info.
|
||||
---
|
||||
import customIntegrationsObj from './custom_integrations.json';
|
||||
|
||||
Add custom data integrations so they can be displayed in the Fleet integrations app
|
||||
|
||||
Contact [Fleet](https://github.com/orgs/elastic/teams/fleet) for questions regarding this plugin.
|
||||
|
||||
**Code health stats**
|
||||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 66 | 0 | 66 | 0 |
|
||||
|
||||
## Client
|
||||
|
||||
### Setup
|
||||
<DocDefinitionList data={[customIntegrationsObj.client.setup]}/>
|
||||
|
||||
### Start
|
||||
<DocDefinitionList data={[customIntegrationsObj.client.start]}/>
|
||||
|
||||
## Server
|
||||
|
||||
### Setup
|
||||
<DocDefinitionList data={[customIntegrationsObj.server.setup]}/>
|
||||
|
||||
### Start
|
||||
<DocDefinitionList data={[customIntegrationsObj.server.start]}/>
|
||||
|
||||
### Interfaces
|
||||
<DocDefinitionList data={customIntegrationsObj.server.interfaces}/>
|
||||
|
||||
### Consts, variables and types
|
||||
<DocDefinitionList data={customIntegrationsObj.server.misc}/>
|
||||
|
||||
## Common
|
||||
|
||||
### Objects
|
||||
<DocDefinitionList data={customIntegrationsObj.common.objects}/>
|
||||
|
||||
### Interfaces
|
||||
<DocDefinitionList data={customIntegrationsObj.common.interfaces}/>
|
||||
|
||||
### Consts, variables and types
|
||||
<DocDefinitionList data={customIntegrationsObj.common.misc}/>
|
||||
|
|
@ -2385,6 +2385,14 @@
|
|||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/overview/containers/overview_cti_links/index.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/overview/containers/overview_risky_host_links/use_risky_hosts_dashboard_button_href.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/overview/containers/overview_risky_host_links/use_risky_hosts_dashboard_links.tsx"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -607,7 +607,7 @@
|
|||
"UrlGeneratorsSetup",
|
||||
"; url: ",
|
||||
"UrlService",
|
||||
"; navigate(options: ",
|
||||
"<unknown>; navigate(options: ",
|
||||
"RedirectOptions",
|
||||
"<",
|
||||
"SerializableRecord",
|
||||
|
@ -706,7 +706,7 @@
|
|||
"UrlGeneratorsStart",
|
||||
"; url: ",
|
||||
"UrlService",
|
||||
"; navigate(options: ",
|
||||
"<unknown>; navigate(options: ",
|
||||
"RedirectOptions",
|
||||
"<",
|
||||
"SerializableRecord",
|
||||
|
|
|
@ -3518,6 +3518,14 @@
|
|||
"plugin": "visTypeTimeseries",
|
||||
"path": "src/plugins/vis_types/timeseries/public/application/components/timeseries_visualization.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "discover",
|
||||
"path": "src/plugins/discover/public/application/embeddable/view_saved_search_action.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "discover",
|
||||
"path": "src/plugins/discover/public/application/embeddable/view_saved_search_action.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "discover",
|
||||
"path": "src/plugins/discover/public/application/helpers/get_fields_to_show.test.ts"
|
||||
|
@ -8192,14 +8200,6 @@
|
|||
{
|
||||
"plugin": "indexPatternFieldEditor",
|
||||
"path": "src/plugins/index_pattern_field_editor/public/components/field_format_editor/field_format_editor.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "savedObjectsManagement",
|
||||
"path": "src/plugins/saved_objects_management/public/lib/create_field_list.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "savedObjectsManagement",
|
||||
"path": "src/plugins/saved_objects_management/public/lib/create_field_list.ts"
|
||||
}
|
||||
],
|
||||
"returnComment": [],
|
||||
|
@ -9222,7 +9222,7 @@
|
|||
"section": "def-common.QueryFilter",
|
||||
"text": "QueryFilter"
|
||||
},
|
||||
">[] | undefined; }, never>, \"enabled\" | \"filters\" | \"id\" | \"schema\" | \"json\" | \"timeShift\">, ",
|
||||
">[] | undefined; }, never>, \"enabled\" | \"id\" | \"filters\" | \"schema\" | \"json\" | \"timeShift\">, ",
|
||||
"AggExpressionType",
|
||||
", ",
|
||||
{
|
||||
|
@ -9910,7 +9910,7 @@
|
|||
"section": "def-common.ExtendedBounds",
|
||||
"text": "ExtendedBounds"
|
||||
},
|
||||
"> | undefined; }, never>, \"enabled\" | \"interval\" | \"timeRange\" | \"id\" | \"schema\" | \"json\" | \"customLabel\" | \"timeShift\" | \"field\" | \"time_zone\" | \"used_interval\" | \"min_doc_count\" | \"extended_bounds\" | \"useNormalizedEsInterval\" | \"scaleMetricValues\" | \"used_time_zone\" | \"drop_partials\" | \"format\">, ",
|
||||
"> | undefined; }, never>, \"enabled\" | \"interval\" | \"id\" | \"timeRange\" | \"schema\" | \"json\" | \"customLabel\" | \"timeShift\" | \"field\" | \"time_zone\" | \"used_interval\" | \"min_doc_count\" | \"extended_bounds\" | \"useNormalizedEsInterval\" | \"scaleMetricValues\" | \"used_time_zone\" | \"drop_partials\" | \"format\">, ",
|
||||
"AggExpressionType",
|
||||
", ",
|
||||
{
|
||||
|
@ -16081,10 +16081,6 @@
|
|||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/common/components/url_state/helpers.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/common/components/url_state/helpers.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/common/components/navigation/helpers.ts"
|
||||
|
@ -27532,6 +27528,14 @@
|
|||
"plugin": "visTypeTimeseries",
|
||||
"path": "src/plugins/vis_types/timeseries/public/application/components/timeseries_visualization.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "discover",
|
||||
"path": "src/plugins/discover/public/application/embeddable/view_saved_search_action.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "discover",
|
||||
"path": "src/plugins/discover/public/application/embeddable/view_saved_search_action.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "discover",
|
||||
"path": "src/plugins/discover/public/application/helpers/get_fields_to_show.test.ts"
|
||||
|
@ -31409,14 +31413,6 @@
|
|||
{
|
||||
"plugin": "indexPatternFieldEditor",
|
||||
"path": "src/plugins/index_pattern_field_editor/public/components/field_format_editor/field_format_editor.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "savedObjectsManagement",
|
||||
"path": "src/plugins/saved_objects_management/public/lib/create_field_list.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "savedObjectsManagement",
|
||||
"path": "src/plugins/saved_objects_management/public/lib/create_field_list.ts"
|
||||
}
|
||||
],
|
||||
"returnComment": [],
|
||||
|
@ -33322,10 +33318,6 @@
|
|||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/common/components/url_state/helpers.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/common/components/url_state/helpers.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/common/components/navigation/helpers.ts"
|
||||
|
@ -37306,14 +37298,6 @@
|
|||
{
|
||||
"plugin": "indexPatternFieldEditor",
|
||||
"path": "src/plugins/index_pattern_field_editor/public/components/field_format_editor/field_format_editor.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "savedObjectsManagement",
|
||||
"path": "src/plugins/saved_objects_management/public/lib/create_field_list.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "savedObjectsManagement",
|
||||
"path": "src/plugins/saved_objects_management/public/lib/create_field_list.ts"
|
||||
}
|
||||
],
|
||||
"returnComment": [],
|
||||
|
@ -40124,10 +40108,6 @@
|
|||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/common/components/url_state/helpers.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/common/components/url_state/helpers.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/common/components/navigation/helpers.ts"
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -13422,7 +13422,7 @@
|
|||
"section": "def-common.QueryFilter",
|
||||
"text": "QueryFilter"
|
||||
},
|
||||
">[] | undefined; }, never>, \"enabled\" | \"filters\" | \"id\" | \"schema\" | \"json\" | \"timeShift\">, ",
|
||||
">[] | undefined; }, never>, \"enabled\" | \"id\" | \"filters\" | \"schema\" | \"json\" | \"timeShift\">, ",
|
||||
"AggExpressionType",
|
||||
", ",
|
||||
{
|
||||
|
@ -14110,7 +14110,7 @@
|
|||
"section": "def-common.ExtendedBounds",
|
||||
"text": "ExtendedBounds"
|
||||
},
|
||||
"> | undefined; }, never>, \"enabled\" | \"interval\" | \"timeRange\" | \"id\" | \"schema\" | \"json\" | \"customLabel\" | \"timeShift\" | \"field\" | \"time_zone\" | \"used_interval\" | \"min_doc_count\" | \"extended_bounds\" | \"useNormalizedEsInterval\" | \"scaleMetricValues\" | \"used_time_zone\" | \"drop_partials\" | \"format\">, ",
|
||||
"> | undefined; }, never>, \"enabled\" | \"interval\" | \"id\" | \"timeRange\" | \"schema\" | \"json\" | \"customLabel\" | \"timeShift\" | \"field\" | \"time_zone\" | \"used_interval\" | \"min_doc_count\" | \"extended_bounds\" | \"useNormalizedEsInterval\" | \"scaleMetricValues\" | \"used_time_zone\" | \"drop_partials\" | \"format\">, ",
|
||||
"AggExpressionType",
|
||||
", ",
|
||||
{
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -44,7 +44,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| <DocLink id="kibDataPluginApi" section="def-common.SearchSource.create" text="create"/> | discover | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.IndexPatternAttributes" text="IndexPatternAttributes"/> | discover, ml, transform, canvas | - |
|
||||
| <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObjectSaveModal" text="SavedObjectSaveModal"/> | embeddable, discover, presentationUtil, dashboard, graph | - |
|
||||
| <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObjectLoader" text="SavedObjectLoader"/> | visualizations, discover, dashboard, savedObjectsManagement | - |
|
||||
| <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObjectLoader" text="SavedObjectLoader"/> | visualizations, discover, dashboard | - |
|
||||
| <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObject" text="SavedObject"/> | discover, savedObjectsTaggingOss, visualizations, dashboard, visualize, visDefaultEditor | - |
|
||||
| <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObjectsStart.SavedObjectClass" text="SavedObjectClass"/> | discover, visualizations, dashboard | - |
|
||||
| <DocLink id="kibUiActionsPluginApi" section="def-public.UiActionsService.executeTriggerActions" text="executeTriggerActions"/> | data, discover, embeddable | - |
|
||||
|
@ -86,6 +86,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| <DocLink id="kibExpressionsPluginApi" section="def-common.ExpressionsServiceSetup.getTypes" text="getTypes"/> | canvas | - |
|
||||
| <DocLink id="kibExpressionsPluginApi" section="def-server.ExpressionFunctionDefinition.context" text="context"/> | canvas, visTypeXy | - |
|
||||
| <DocLink id="kibSecurityPluginApi" section="def-server.LegacyAuditLogger" text="LegacyAuditLogger"/> | encryptedSavedObjects, actions, alerting | - |
|
||||
| <DocLink id="kibTaskManagerPluginApi" section="def-server.TaskManagerSetupContract.index" text="index"/> | actions | - |
|
||||
| <DocLink id="kibCorePluginApi" section="def-server.ElasticsearchServiceSetup.legacy" text="legacy"/> | console | - |
|
||||
| <DocLink id="kibSpacesPluginApi" section="def-server.SpacesPluginSetup.spacesService" text="spacesService"/> | security, reporting, apm, infra, securitySolution | 7.16 |
|
||||
| <DocLink id="kibSpacesPluginApi" section="def-server.SpacesServiceSetup.getSpaceId" text="getSpaceId"/> | security, reporting, apm, infra, securitySolution | 7.16 |
|
||||
|
@ -116,11 +117,11 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| <DocLink id="kibDataPluginApi" section="def-common.getKbnTypeNames" text="getKbnTypeNames"/> | indexPatternManagement | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.DataView.removeScriptedField" text="removeScriptedField"/> | indexPatternManagement | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.DataView.getScriptedFields" text="getScriptedFields"/> | indexPatternManagement | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.castEsToKbnFieldTypeName" text="castEsToKbnFieldTypeName"/> | indexPatternFieldEditor, savedObjectsManagement | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.castEsToKbnFieldTypeName" text="castEsToKbnFieldTypeName"/> | indexPatternFieldEditor, savedObjectsManagement | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.castEsToKbnFieldTypeName" text="castEsToKbnFieldTypeName"/> | indexPatternFieldEditor, savedObjectsManagement | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.RangeFilterParams" text="RangeFilterParams"/> | visTypeTimelion | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.RangeFilterParams" text="RangeFilterParams"/> | visTypeTimelion | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.castEsToKbnFieldTypeName" text="castEsToKbnFieldTypeName"/> | indexPatternFieldEditor | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.castEsToKbnFieldTypeName" text="castEsToKbnFieldTypeName"/> | indexPatternFieldEditor | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.castEsToKbnFieldTypeName" text="castEsToKbnFieldTypeName"/> | indexPatternFieldEditor | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.isFilterPinned" text="isFilterPinned"/> | visualize | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IFieldSubType" text="IFieldSubType"/> | timelines | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IFieldSubType" text="IFieldSubType"/> | timelines | 8.1 |
|
||||
|
|
|
@ -18,6 +18,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| <DocLink id="kibSecurityPluginApi" section="def-server.LegacyAuditLogger" text="LegacyAuditLogger"/> | [audit_logger.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/authorization/audit_logger.ts#:~:text=LegacyAuditLogger), [audit_logger.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/authorization/audit_logger.ts#:~:text=LegacyAuditLogger), [audit_logger.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/authorization/audit_logger.ts#:~:text=LegacyAuditLogger) | - |
|
||||
| <DocLink id="kibSecurityPluginApi" section="def-server.SecurityPluginSetup.authc" text="authc"/> | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/plugin.ts#:~:text=authc) | - |
|
||||
| <DocLink id="kibSecurityPluginApi" section="def-server.SecurityPluginSetup.authz" text="authz"/> | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/plugin.ts#:~:text=authz) | - |
|
||||
| <DocLink id="kibTaskManagerPluginApi" section="def-server.TaskManagerSetupContract.index" text="index"/> | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/plugin.ts#:~:text=index), [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/actions/server/plugin.ts#:~:text=index) | - |
|
||||
|
||||
|
||||
|
||||
|
@ -199,7 +200,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| ---------------|-----------|-----------|
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IndexPatternsService" text="IndexPatternsService"/> | [index_patterns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/__mocks__/index_patterns.ts#:~:text=IndexPatternsService), [index_patterns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/__mocks__/index_patterns.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IndexPatternsContract" text="IndexPatternsContract"/> | [use_data_grid_columns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/use_data_grid_columns.ts#:~:text=IndexPatternsContract), [use_data_grid_columns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/use_data_grid_columns.ts#:~:text=IndexPatternsContract), [use_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/use_index_pattern.tsx#:~:text=IndexPatternsContract), [use_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/use_index_pattern.tsx#:~:text=IndexPatternsContract), [resolve_index_pattern.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/utils/resolve_index_pattern.ts#:~:text=IndexPatternsContract), [resolve_index_pattern.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/utils/resolve_index_pattern.ts#:~:text=IndexPatternsContract), [use_data_grid_columns.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/helpers/use_data_grid_columns.d.ts#:~:text=IndexPatternsContract), [use_data_grid_columns.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/helpers/use_data_grid_columns.d.ts#:~:text=IndexPatternsContract), [resolve_index_pattern.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/apps/main/utils/resolve_index_pattern.d.ts#:~:text=IndexPatternsContract), [resolve_index_pattern.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/apps/main/utils/resolve_index_pattern.d.ts#:~:text=IndexPatternsContract)+ 20 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IndexPattern" text="IndexPattern"/> | [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern)+ 170 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IndexPattern" text="IndexPattern"/> | [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern)+ 172 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IndexPatternField" text="IndexPatternField"/> | [field_name.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/field_name/field_name.tsx#:~:text=IndexPatternField), [field_name.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/field_name/field_name.tsx#:~:text=IndexPatternField), [table_cell_actions.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table_cell_actions.tsx#:~:text=IndexPatternField), [table_cell_actions.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table_cell_actions.tsx#:~:text=IndexPatternField), [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table.tsx#:~:text=IndexPatternField), [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table.tsx#:~:text=IndexPatternField), [discover_field_bucket.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_bucket.tsx#:~:text=IndexPatternField), [discover_field_bucket.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_bucket.tsx#:~:text=IndexPatternField), [discover_field_bucket.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_bucket.tsx#:~:text=IndexPatternField), [discover_field_details.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_details.tsx#:~:text=IndexPatternField)+ 91 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IndexPatternAttributes" text="IndexPatternAttributes"/> | [discover_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_index_pattern.tsx#:~:text=IndexPatternAttributes), [discover_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_index_pattern.tsx#:~:text=IndexPatternAttributes), [discover_index_pattern.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/apps/main/components/sidebar/discover_index_pattern.d.ts#:~:text=IndexPatternAttributes), [discover_index_pattern.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/apps/main/components/sidebar/discover_index_pattern.d.ts#:~:text=IndexPatternAttributes), [discover_sidebar_responsive.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_sidebar_responsive.tsx#:~:text=IndexPatternAttributes), [discover_sidebar_responsive.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_sidebar_responsive.tsx#:~:text=IndexPatternAttributes), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/layout/types.ts#:~:text=IndexPatternAttributes), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/layout/types.ts#:~:text=IndexPatternAttributes), [discover_main_app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/discover_main_app.tsx#:~:text=IndexPatternAttributes), [discover_main_app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/discover_main_app.tsx#:~:text=IndexPatternAttributes)+ 3 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.SearchSource.create" text="create"/> | [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx#:~:text=create), [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx#:~:text=create) | - |
|
||||
|
@ -212,13 +213,13 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| <DocLink id="kibDataPluginApi" section="def-common.Filter" text="Filter"/> | [url_generator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/url_generator.ts#:~:text=Filter), [url_generator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/url_generator.ts#:~:text=Filter), [url_generator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/url_generator.ts#:~:text=Filter), [locator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/locator.ts#:~:text=Filter), [locator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/locator.ts#:~:text=Filter), [locator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/locator.ts#:~:text=Filter), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/types.ts#:~:text=Filter), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/types.ts#:~:text=Filter), [discover_state.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/services/discover_state.ts#:~:text=Filter), [discover_state.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/services/discover_state.ts#:~:text=Filter)+ 21 more | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IndexPatternsService" text="IndexPatternsService"/> | [index_patterns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/__mocks__/index_patterns.ts#:~:text=IndexPatternsService), [index_patterns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/__mocks__/index_patterns.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IndexPatternsContract" text="IndexPatternsContract"/> | [use_data_grid_columns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/use_data_grid_columns.ts#:~:text=IndexPatternsContract), [use_data_grid_columns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/use_data_grid_columns.ts#:~:text=IndexPatternsContract), [use_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/use_index_pattern.tsx#:~:text=IndexPatternsContract), [use_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/use_index_pattern.tsx#:~:text=IndexPatternsContract), [resolve_index_pattern.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/utils/resolve_index_pattern.ts#:~:text=IndexPatternsContract), [resolve_index_pattern.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/utils/resolve_index_pattern.ts#:~:text=IndexPatternsContract), [use_data_grid_columns.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/helpers/use_data_grid_columns.d.ts#:~:text=IndexPatternsContract), [use_data_grid_columns.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/helpers/use_data_grid_columns.d.ts#:~:text=IndexPatternsContract), [resolve_index_pattern.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/apps/main/utils/resolve_index_pattern.d.ts#:~:text=IndexPatternsContract), [resolve_index_pattern.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/apps/main/utils/resolve_index_pattern.d.ts#:~:text=IndexPatternsContract)+ 20 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IndexPattern" text="IndexPattern"/> | [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern)+ 170 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IndexPattern" text="IndexPattern"/> | [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern)+ 172 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IndexPatternField" text="IndexPatternField"/> | [field_name.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/field_name/field_name.tsx#:~:text=IndexPatternField), [field_name.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/field_name/field_name.tsx#:~:text=IndexPatternField), [table_cell_actions.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table_cell_actions.tsx#:~:text=IndexPatternField), [table_cell_actions.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table_cell_actions.tsx#:~:text=IndexPatternField), [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table.tsx#:~:text=IndexPatternField), [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table.tsx#:~:text=IndexPatternField), [discover_field_bucket.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_bucket.tsx#:~:text=IndexPatternField), [discover_field_bucket.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_bucket.tsx#:~:text=IndexPatternField), [discover_field_bucket.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_bucket.tsx#:~:text=IndexPatternField), [discover_field_details.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_details.tsx#:~:text=IndexPatternField)+ 91 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.SearchSource.create" text="create"/> | [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx#:~:text=create), [saved_search_embeddable.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/saved_search_embeddable.tsx#:~:text=create) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.SearchSource.fetch" text="fetch"/> | [anchor.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/context/services/anchor.ts#:~:text=fetch), [fetch_hits_in_interval.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/context/services/utils/fetch_hits_in_interval.ts#:~:text=fetch) | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.IndexPatternField" text="IndexPatternField"/> | [field_name.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/field_name/field_name.tsx#:~:text=IndexPatternField), [field_name.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/field_name/field_name.tsx#:~:text=IndexPatternField), [table_cell_actions.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table_cell_actions.tsx#:~:text=IndexPatternField), [table_cell_actions.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table_cell_actions.tsx#:~:text=IndexPatternField), [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table.tsx#:~:text=IndexPatternField), [table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/table/table.tsx#:~:text=IndexPatternField), [discover_field_bucket.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_bucket.tsx#:~:text=IndexPatternField), [discover_field_bucket.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_bucket.tsx#:~:text=IndexPatternField), [discover_field_bucket.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_bucket.tsx#:~:text=IndexPatternField), [discover_field_details.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_field_details.tsx#:~:text=IndexPatternField)+ 91 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.IndexPatternAttributes" text="IndexPatternAttributes"/> | [discover_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_index_pattern.tsx#:~:text=IndexPatternAttributes), [discover_index_pattern.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_index_pattern.tsx#:~:text=IndexPatternAttributes), [discover_index_pattern.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/apps/main/components/sidebar/discover_index_pattern.d.ts#:~:text=IndexPatternAttributes), [discover_index_pattern.d.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/target/types/public/application/apps/main/components/sidebar/discover_index_pattern.d.ts#:~:text=IndexPatternAttributes), [discover_sidebar_responsive.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_sidebar_responsive.tsx#:~:text=IndexPatternAttributes), [discover_sidebar_responsive.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/sidebar/discover_sidebar_responsive.tsx#:~:text=IndexPatternAttributes), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/layout/types.ts#:~:text=IndexPatternAttributes), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/layout/types.ts#:~:text=IndexPatternAttributes), [discover_main_app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/discover_main_app.tsx#:~:text=IndexPatternAttributes), [discover_main_app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/discover_main_app.tsx#:~:text=IndexPatternAttributes)+ 3 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.IndexPattern" text="IndexPattern"/> | [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern)+ 170 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.IndexPattern" text="IndexPattern"/> | [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/doc_table/components/table_header/helpers.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_flyout.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [discover_grid_context.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_context.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [get_render_cell_value.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/get_render_cell_value.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern), [discover_grid_columns.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/components/discover_grid/discover_grid_columns.tsx#:~:text=IndexPattern)+ 172 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.IndexPatternsService" text="IndexPatternsService"/> | [index_patterns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/__mocks__/index_patterns.ts#:~:text=IndexPatternsService), [index_patterns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/__mocks__/index_patterns.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [popularize_field.test.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/helpers/popularize_field.test.ts#:~:text=IndexPatternsService), [index_patterns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/__mocks__/index_patterns.ts#:~:text=IndexPatternsService), [index_patterns.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/__mocks__/index_patterns.ts#:~:text=IndexPatternsService)+ 6 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.Filter" text="Filter"/> | [url_generator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/url_generator.ts#:~:text=Filter), [url_generator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/url_generator.ts#:~:text=Filter), [url_generator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/url_generator.ts#:~:text=Filter), [locator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/locator.ts#:~:text=Filter), [locator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/locator.ts#:~:text=Filter), [locator.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/locator.ts#:~:text=Filter), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/types.ts#:~:text=Filter), [types.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/embeddable/types.ts#:~:text=Filter), [discover_state.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/services/discover_state.ts#:~:text=Filter), [discover_state.ts](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/services/discover_state.ts#:~:text=Filter)+ 21 more | 8.1 |
|
||||
| <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObjectSaveModal" text="SavedObjectSaveModal"/> | [on_save_search.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/top_nav/on_save_search.tsx#:~:text=SavedObjectSaveModal), [on_save_search.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/discover/public/application/apps/main/components/top_nav/on_save_search.tsx#:~:text=SavedObjectSaveModal) | - |
|
||||
|
@ -709,14 +710,10 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| ---------------|-----------|-----------|
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IndexPatternsContract" text="IndexPatternsContract"/> | [flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx#:~:text=IndexPatternsContract), [flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx#:~:text=IndexPatternsContract), [saved_objects_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx#:~:text=IndexPatternsContract), [saved_objects_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx#:~:text=IndexPatternsContract) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IndexPattern" text="IndexPattern"/> | [flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx#:~:text=IndexPattern), [flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx#:~:text=IndexPattern) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.castEsToKbnFieldTypeName" text="castEsToKbnFieldTypeName"/> | [create_field_list.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/create_field_list.ts#:~:text=castEsToKbnFieldTypeName), [create_field_list.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/create_field_list.ts#:~:text=castEsToKbnFieldTypeName) | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.DataPublicPluginStart.indexPatterns" text="indexPatterns"/> | [saved_objects_table_page.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/saved_objects_table_page.tsx#:~:text=indexPatterns) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IndexPatternsContract" text="IndexPatternsContract"/> | [flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx#:~:text=IndexPatternsContract), [flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx#:~:text=IndexPatternsContract), [saved_objects_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx#:~:text=IndexPatternsContract), [saved_objects_table.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/saved_objects_table.tsx#:~:text=IndexPatternsContract) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IndexPattern" text="IndexPattern"/> | [flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx#:~:text=IndexPattern), [flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx#:~:text=IndexPattern) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.castEsToKbnFieldTypeName" text="castEsToKbnFieldTypeName"/> | [create_field_list.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/create_field_list.ts#:~:text=castEsToKbnFieldTypeName), [create_field_list.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/create_field_list.ts#:~:text=castEsToKbnFieldTypeName) | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.IndexPattern" text="IndexPattern"/> | [flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx#:~:text=IndexPattern), [flyout.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/management_section/objects_table/components/flyout.tsx#:~:text=IndexPattern) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.castEsToKbnFieldTypeName" text="castEsToKbnFieldTypeName"/> | [create_field_list.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/create_field_list.ts#:~:text=castEsToKbnFieldTypeName), [create_field_list.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/create_field_list.ts#:~:text=castEsToKbnFieldTypeName) | 8.1 |
|
||||
| <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObjectLoader" text="SavedObjectLoader"/> | [service_registry.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/services/service_registry.ts#:~:text=SavedObjectLoader), [service_registry.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/services/service_registry.ts#:~:text=SavedObjectLoader), [create_field_list.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/create_field_list.ts#:~:text=SavedObjectLoader), [create_field_list.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/create_field_list.ts#:~:text=SavedObjectLoader) | - |
|
||||
| <DocLink id="kibCorePluginApi" section="def-public.SavedObjectsImportSuccess.createNewCopy" text="createNewCopy"/> | [resolve_import_errors.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/resolve_import_errors.ts#:~:text=createNewCopy) | - |
|
||||
| <DocLink id="kibCorePluginApi" section="def-server.SavedObjectsImportSuccess.createNewCopy" text="createNewCopy"/> | [resolve_import_errors.ts](https://github.com/elastic/kibana/tree/master/src/plugins/saved_objects_management/public/lib/resolve_import_errors.ts#:~:text=createNewCopy) | - |
|
||||
|
||||
|
@ -772,21 +769,21 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
|
||||
| Deprecated API | Reference location(s) | Remove By |
|
||||
| ---------------|-----------|-----------|
|
||||
| <DocLink id="kibDashboardPluginApi" section="def-public.DashboardStart.dashboardUrlGenerator" text="dashboardUrlGenerator"/> | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/containers/overview_cti_links/index.tsx#:~:text=dashboardUrlGenerator) | - |
|
||||
| <DocLink id="kibDashboardPluginApi" section="def-public.DashboardStart.dashboardUrlGenerator" text="dashboardUrlGenerator"/> | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/containers/overview_cti_links/index.tsx#:~:text=dashboardUrlGenerator), [use_risky_hosts_dashboard_button_href.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/containers/overview_risky_host_links/use_risky_hosts_dashboard_button_href.ts#:~:text=dashboardUrlGenerator), [use_risky_hosts_dashboard_links.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/containers/overview_risky_host_links/use_risky_hosts_dashboard_links.tsx#:~:text=dashboardUrlGenerator) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IndexPattern" text="IndexPattern"/> | [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [entry_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/entry_item.tsx#:~:text=IndexPattern), [entry_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/entry_item.tsx#:~:text=IndexPattern), [entry_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/entry_item.tsx#:~:text=IndexPattern), [list_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/list_item.tsx#:~:text=IndexPattern), [list_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/list_item.tsx#:~:text=IndexPattern)+ 10 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IndexPatternField" text="IndexPatternField"/> | [field_name_cell.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/event_details/table/field_name_cell.tsx#:~:text=IndexPatternField), [field_name_cell.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/event_details/table/field_name_cell.tsx#:~:text=IndexPatternField) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.IIndexPattern" text="IIndexPattern"/> | [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=IIndexPattern), [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=IIndexPattern), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#:~:text=IIndexPattern), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#:~:text=IIndexPattern), [action.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#:~:text=IIndexPattern), [action.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#:~:text=IIndexPattern), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=IIndexPattern), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=IIndexPattern), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=IIndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/timeline/helpers.tsx#:~:text=IIndexPattern)+ 76 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.DataPublicPluginStart.indexPatterns" text="indexPatterns"/> | [middleware.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=indexPatterns), [plugin.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/plugin.tsx#:~:text=indexPatterns), [dependencies_start_mock.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/mock/endpoint/dependencies_start_mock.ts#:~:text=indexPatterns) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.esFilters" text="esFilters"/> | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/timeline/query_bar/index.tsx#:~:text=esFilters), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/timeline/query_bar/index.tsx#:~:text=esFilters), [epic.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/epic.ts#:~:text=esFilters), [epic.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/epic.ts#:~:text=esFilters), [epic.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/epic.ts#:~:text=esFilters), [epic.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/epic.ts#:~:text=esFilters), [epic.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/epic.ts#:~:text=esFilters), [epic.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/epic.ts#:~:text=esFilters), [epic.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/epic.ts#:~:text=esFilters), [epic.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/epic.ts#:~:text=esFilters)+ 15 more | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.esQuery" text="esQuery"/> | [expandable_network.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/side_panel/network_details/expandable_network.tsx#:~:text=esQuery), [expandable_network.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/side_panel/network_details/expandable_network.tsx#:~:text=esQuery), [events_viewer.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx#:~:text=esQuery), [events_viewer.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/events_viewer/events_viewer.tsx#:~:text=esQuery), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/events_by_dataset/index.tsx#:~:text=esQuery), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/overview/components/events_by_dataset/index.tsx#:~:text=esQuery), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/alerts_kpis/alerts_histogram_panel/index.tsx#:~:text=esQuery), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/alerts_kpis/alerts_histogram_panel/index.tsx#:~:text=esQuery), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/detections/components/alerts_kpis/alerts_histogram_panel/index.tsx#:~:text=esQuery), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/top_n/index.tsx#:~:text=esQuery)+ 30 more | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.Filter" text="Filter"/> | [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter)+ 164 more | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.Filter" text="Filter"/> | [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter)+ 164 more | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.Filter" text="Filter"/> | [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter)+ 163 more | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.Filter" text="Filter"/> | [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter)+ 163 more | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IndexPattern" text="IndexPattern"/> | [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [entry_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/entry_item.tsx#:~:text=IndexPattern), [entry_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/entry_item.tsx#:~:text=IndexPattern), [entry_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/entry_item.tsx#:~:text=IndexPattern), [list_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/list_item.tsx#:~:text=IndexPattern), [list_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/list_item.tsx#:~:text=IndexPattern)+ 10 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IndexPatternField" text="IndexPatternField"/> | [field_name_cell.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/event_details/table/field_name_cell.tsx#:~:text=IndexPatternField), [field_name_cell.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/event_details/table/field_name_cell.tsx#:~:text=IndexPatternField) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.IIndexPattern" text="IIndexPattern"/> | [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=IIndexPattern), [index.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=IIndexPattern), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#:~:text=IIndexPattern), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts#:~:text=IIndexPattern), [action.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#:~:text=IIndexPattern), [action.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts#:~:text=IIndexPattern), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=IIndexPattern), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=IIndexPattern), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/containers/source/index.tsx#:~:text=IIndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/components/timeline/helpers.tsx#:~:text=IIndexPattern)+ 76 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.IndexPatternField" text="IndexPatternField"/> | [field_name_cell.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/event_details/table/field_name_cell.tsx#:~:text=IndexPatternField), [field_name_cell.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/event_details/table/field_name_cell.tsx#:~:text=IndexPatternField) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.IndexPattern" text="IndexPattern"/> | [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [helpers.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/helpers.tsx#:~:text=IndexPattern), [entry_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/entry_item.tsx#:~:text=IndexPattern), [entry_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/entry_item.tsx#:~:text=IndexPattern), [entry_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/entry_item.tsx#:~:text=IndexPattern), [list_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/list_item.tsx#:~:text=IndexPattern), [list_item.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/components/threat_match/list_item.tsx#:~:text=IndexPattern)+ 10 more | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.Filter" text="Filter"/> | [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter)+ 164 more | 8.1 |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.Filter" text="Filter"/> | [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [store.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/types/timeline/store.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [model.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/model.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/actions.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [selectors.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/common/store/inputs/selectors.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter), [actions.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/public/timelines/store/timeline/actions.ts#:~:text=Filter)+ 163 more | 8.1 |
|
||||
| <DocLink id="kibLicensingPluginApi" section="def-public.PublicLicense.mode" text="mode"/> | [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [isolation.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/isolation.test.ts#:~:text=mode), [isolation.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/isolation.test.ts#:~:text=mode)+ 2 more | - |
|
||||
| <DocLink id="kibLicensingPluginApi" section="def-server.PublicLicense.mode" text="mode"/> | [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [policy_config.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/common/license/policy_config.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [fleet_integration.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/fleet_integration/fleet_integration.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [license_watch.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/lib/policy/license_watch.test.ts#:~:text=mode), [isolation.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/isolation.test.ts#:~:text=mode), [isolation.test.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/endpoint/routes/actions/isolation.test.ts#:~:text=mode)+ 2 more | - |
|
||||
| <DocLink id="kibSecurityPluginApi" section="def-server.SecurityPluginSetup.authc" text="authc"/> | [create_signals_migration_route.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/create_signals_migration_route.ts#:~:text=authc), [delete_signals_migration_route.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/delete_signals_migration_route.ts#:~:text=authc), [finalize_signals_migration_route.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/detection_engine/routes/signals/finalize_signals_migration_route.ts#:~:text=authc), [common.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/security_solution/server/lib/timeline/utils/common.ts#:~:text=authc) | - |
|
||||
|
|
|
@ -753,7 +753,7 @@
|
|||
"label": "logEvent",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(properties: DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void"
|
||||
"(properties: DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void"
|
||||
],
|
||||
"path": "x-pack/plugins/event_log/server/types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -766,7 +766,7 @@
|
|||
"label": "properties",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined"
|
||||
"DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/event_log/server/types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -783,7 +783,7 @@
|
|||
"label": "startTiming",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(event: DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void"
|
||||
"(event: DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void"
|
||||
],
|
||||
"path": "x-pack/plugins/event_log/server/types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -796,7 +796,7 @@
|
|||
"label": "event",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined"
|
||||
"DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/event_log/server/types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -813,7 +813,7 @@
|
|||
"label": "stopTiming",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(event: DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void"
|
||||
"(event: DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => void"
|
||||
],
|
||||
"path": "x-pack/plugins/event_log/server/types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -826,7 +826,7 @@
|
|||
"label": "event",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined"
|
||||
"DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/event_log/server/types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -886,7 +886,7 @@
|
|||
"label": "data",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}> | undefined)[]"
|
||||
"(Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}> | undefined)[]"
|
||||
],
|
||||
"path": "x-pack/plugins/event_log/server/es/cluster_client_adapter.ts",
|
||||
"deprecated": false
|
||||
|
@ -905,7 +905,7 @@
|
|||
"label": "IEvent",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined"
|
||||
"DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/event_log/generated/schemas.ts",
|
||||
"deprecated": false,
|
||||
|
@ -919,7 +919,7 @@
|
|||
"label": "IValidatedEvent",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}> | undefined"
|
||||
"Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}> | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/event_log/generated/schemas.ts",
|
||||
"deprecated": false,
|
||||
|
@ -1153,7 +1153,7 @@
|
|||
"label": "getLogger",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(properties: DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => ",
|
||||
"(properties: DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined) => ",
|
||||
{
|
||||
"pluginId": "eventLog",
|
||||
"scope": "server",
|
||||
|
@ -1173,7 +1173,7 @@
|
|||
"label": "properties",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ description?: string | undefined; id?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined"
|
||||
"DeepPartial<DeepWriteable<Readonly<{ tags?: string[] | undefined; kibana?: Readonly<{ version?: string | undefined; saved_objects?: Readonly<{ type?: string | undefined; id?: string | undefined; rel?: string | undefined; namespace?: string | undefined; type_id?: string | undefined; } & {}>[] | undefined; alerting?: Readonly<{ status?: string | undefined; instance_id?: string | undefined; action_group_id?: string | undefined; action_subgroup?: string | undefined; } & {}> | undefined; server_uuid?: string | undefined; task?: Readonly<{ scheduled?: string | undefined; schedule_delay?: number | undefined; } & {}> | undefined; } & {}> | undefined; user?: Readonly<{ name?: string | undefined; } & {}> | undefined; error?: Readonly<{ type?: string | undefined; id?: string | undefined; message?: string | undefined; code?: string | undefined; stack_trace?: string | undefined; } & {}> | undefined; message?: string | undefined; event?: Readonly<{ start?: string | undefined; type?: string[] | undefined; id?: string | undefined; end?: string | undefined; category?: string[] | undefined; url?: string | undefined; code?: string | undefined; original?: string | undefined; action?: string | undefined; kind?: string | undefined; severity?: number | undefined; outcome?: string | undefined; created?: string | undefined; dataset?: string | undefined; duration?: number | undefined; hash?: string | undefined; ingested?: string | undefined; module?: string | undefined; provider?: string | undefined; reason?: string | undefined; reference?: string | undefined; risk_score?: number | undefined; risk_score_norm?: number | undefined; sequence?: number | undefined; timezone?: string | undefined; } & {}> | undefined; rule?: Readonly<{ id?: string | undefined; description?: string | undefined; name?: string | undefined; version?: string | undefined; license?: string | undefined; category?: string | undefined; reference?: string | undefined; author?: string[] | undefined; ruleset?: string | undefined; uuid?: string | undefined; } & {}> | undefined; '@timestamp'?: string | undefined; log?: Readonly<{ logger?: string | undefined; level?: string | undefined; } & {}> | undefined; ecs?: Readonly<{ version?: string | undefined; } & {}> | undefined; } & {}>>> | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/event_log/server/types.ts",
|
||||
"deprecated": false,
|
||||
|
|
|
@ -36326,15 +36326,15 @@
|
|||
},
|
||||
") => ",
|
||||
"Observable",
|
||||
"<",
|
||||
"<{ columns: ",
|
||||
{
|
||||
"pluginId": "expressions",
|
||||
"scope": "common",
|
||||
"docId": "kibExpressionsPluginApi",
|
||||
"section": "def-common.Datatable",
|
||||
"text": "Datatable"
|
||||
"section": "def-common.DatatableColumn",
|
||||
"text": "DatatableColumn"
|
||||
},
|
||||
">"
|
||||
"[]; rows: Record<string, any>[]; type: \"datatable\"; }>"
|
||||
],
|
||||
"path": "src/plugins/expressions/common/expression_functions/specs/map_column.ts",
|
||||
"deprecated": false,
|
||||
|
|
|
@ -4522,7 +4522,7 @@
|
|||
"signature": [
|
||||
"Pick<",
|
||||
"KibanaClient",
|
||||
", \"get\" | \"delete\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"search\" | \"security\" | \"transform\" | \"eql\" | \"helpers\" | \"emit\" | \"on\" | \"once\" | \"off\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"count\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"monitoring\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ",
|
||||
", \"get\" | \"delete\" | \"monitoring\" | \"security\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"search\" | \"transform\" | \"eql\" | \"helpers\" | \"emit\" | \"on\" | \"once\" | \"off\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"count\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ",
|
||||
"TransportRequestParams",
|
||||
", options?: ",
|
||||
"TransportRequestOptions",
|
||||
|
@ -4814,7 +4814,7 @@
|
|||
"signature": [
|
||||
"Pick<",
|
||||
"KibanaClient",
|
||||
", \"get\" | \"delete\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"search\" | \"security\" | \"transform\" | \"eql\" | \"helpers\" | \"emit\" | \"on\" | \"once\" | \"off\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"count\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"monitoring\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ",
|
||||
", \"get\" | \"delete\" | \"monitoring\" | \"security\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"search\" | \"transform\" | \"eql\" | \"helpers\" | \"emit\" | \"on\" | \"once\" | \"off\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"count\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ",
|
||||
"TransportRequestParams",
|
||||
", options?: ",
|
||||
"TransportRequestOptions",
|
||||
|
@ -6395,7 +6395,7 @@
|
|||
"section": "def-common.RegistryPackage",
|
||||
"text": "RegistryPackage"
|
||||
},
|
||||
", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"installed\"; savedObject: ",
|
||||
", \"type\" | \"title\" | \"description\" | \"icons\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"policy_templates\"> & { status: \"installed\"; savedObject: ",
|
||||
"SavedObject",
|
||||
"<",
|
||||
{
|
||||
|
@ -6413,7 +6413,7 @@
|
|||
"section": "def-common.RegistryPackage",
|
||||
"text": "RegistryPackage"
|
||||
},
|
||||
", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"not_installed\"; } & { integration?: string | undefined; id: string; })) => boolean"
|
||||
", \"type\" | \"title\" | \"description\" | \"icons\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"policy_templates\"> & { status: \"not_installed\"; } & { integration?: string | undefined; id: string; })) => boolean"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/services/packages_with_integrations.ts",
|
||||
"deprecated": false,
|
||||
|
@ -6529,7 +6529,7 @@
|
|||
"section": "def-common.RegistryPackage",
|
||||
"text": "RegistryPackage"
|
||||
},
|
||||
", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"installed\"; savedObject: ",
|
||||
", \"type\" | \"title\" | \"description\" | \"icons\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"policy_templates\"> & { status: \"installed\"; savedObject: ",
|
||||
"SavedObject",
|
||||
"<",
|
||||
{
|
||||
|
@ -6547,7 +6547,7 @@
|
|||
"section": "def-common.RegistryPackage",
|
||||
"text": "RegistryPackage"
|
||||
},
|
||||
", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"not_installed\"; } & { integration?: string | undefined; id: string; })"
|
||||
", \"type\" | \"title\" | \"description\" | \"icons\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"policy_templates\"> & { status: \"not_installed\"; } & { integration?: string | undefined; id: string; })"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/services/packages_with_integrations.ts",
|
||||
"deprecated": false,
|
||||
|
@ -12223,6 +12223,122 @@
|
|||
],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.IntegrationCardItem",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "IntegrationCardItem",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.IntegrationCardItem.uiInternalPathUrl",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "uiInternalPathUrl",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.IntegrationCardItem.release",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "release",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"experimental\" | \"beta\" | \"ga\" | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.IntegrationCardItem.description",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "description",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.IntegrationCardItem.name",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "name",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.IntegrationCardItem.title",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "title",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.IntegrationCardItem.version",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "version",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.IntegrationCardItem.icons",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "icons",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "fleet",
|
||||
"scope": "common",
|
||||
"docId": "kibFleetPluginApi",
|
||||
"section": "def-common.PackageSpecIcon",
|
||||
"text": "PackageSpecIcon"
|
||||
},
|
||||
"[]"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.IntegrationCardItem.integration",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "integration",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.IntegrationCardItem.id",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "id",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.ListResult",
|
||||
|
@ -13600,7 +13716,7 @@
|
|||
"label": "categories",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(\"custom\" | \"security\" | \"monitoring\" | \"cloud\" | \"kubernetes\" | \"aws\" | \"azure\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"languages\" | \"message_queue\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\" | undefined)[] | undefined"
|
||||
"(\"custom\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\" | undefined)[] | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/package_spec.ts",
|
||||
"deprecated": false
|
||||
|
@ -15025,7 +15141,7 @@
|
|||
"label": "[RegistryPolicyTemplateKeys.categories]",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(\"custom\" | \"security\" | \"monitoring\" | \"cloud\" | \"kubernetes\" | \"aws\" | \"azure\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"languages\" | \"message_queue\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\" | undefined)[] | undefined"
|
||||
"(\"custom\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\" | undefined)[] | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false
|
||||
|
@ -17635,7 +17751,7 @@
|
|||
"section": "def-common.RegistryPackage",
|
||||
"text": "RegistryPackage"
|
||||
},
|
||||
", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"installed\"; savedObject: ",
|
||||
", \"type\" | \"title\" | \"description\" | \"icons\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"policy_templates\"> & { status: \"installed\"; savedObject: ",
|
||||
"SavedObject",
|
||||
"<",
|
||||
{
|
||||
|
@ -17653,7 +17769,7 @@
|
|||
"section": "def-common.RegistryPackage",
|
||||
"text": "RegistryPackage"
|
||||
},
|
||||
", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\"> & { status: \"not_installed\"; } & { integration?: string | undefined; id: string; })"
|
||||
", \"type\" | \"title\" | \"description\" | \"icons\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"policy_templates\"> & { status: \"not_installed\"; } & { integration?: string | undefined; id: string; })"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false,
|
||||
|
@ -17829,7 +17945,7 @@
|
|||
"label": "PackageSpecCategory",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"custom\" | \"security\" | \"monitoring\" | \"cloud\" | \"kubernetes\" | \"aws\" | \"azure\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"languages\" | \"message_queue\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\""
|
||||
"\"custom\" | \"aws\" | \"azure\" | \"cloud\" | \"config_management\" | \"containers\" | \"crm\" | \"datastore\" | \"elastic_stack\" | \"google_cloud\" | \"kubernetes\" | \"languages\" | \"message_queue\" | \"monitoring\" | \"network\" | \"notification\" | \"os_system\" | \"productivity\" | \"security\" | \"support\" | \"ticketing\" | \"version_control\" | \"web\""
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/package_spec.ts",
|
||||
"deprecated": false,
|
||||
|
@ -18012,15 +18128,7 @@
|
|||
"label": "RegistrySearchResult",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ type?: \"integration\" | undefined; description: string; title: string; name: string; version: string; path: string; download: string; internal?: boolean | undefined; data_streams?: ",
|
||||
{
|
||||
"pluginId": "fleet",
|
||||
"scope": "common",
|
||||
"docId": "kibFleetPluginApi",
|
||||
"section": "def-common.RegistryDataStream",
|
||||
"text": "RegistryDataStream"
|
||||
},
|
||||
"[] | undefined; release: \"experimental\" | \"beta\" | \"ga\"; icons?: (",
|
||||
"{ type?: \"integration\" | undefined; title: string; description: string; icons?: (",
|
||||
{
|
||||
"pluginId": "fleet",
|
||||
"scope": "common",
|
||||
|
@ -18036,7 +18144,15 @@
|
|||
"section": "def-common.RegistryImage",
|
||||
"text": "RegistryImage"
|
||||
},
|
||||
"[]) | undefined; policy_templates?: ",
|
||||
"[]) | undefined; name: string; version: string; path: string; download: string; internal?: boolean | undefined; data_streams?: ",
|
||||
{
|
||||
"pluginId": "fleet",
|
||||
"scope": "common",
|
||||
"docId": "kibFleetPluginApi",
|
||||
"section": "def-common.RegistryDataStream",
|
||||
"text": "RegistryDataStream"
|
||||
},
|
||||
"[] | undefined; release: \"experimental\" | \"beta\" | \"ga\"; policy_templates?: ",
|
||||
{
|
||||
"pluginId": "fleet",
|
||||
"scope": "common",
|
||||
|
@ -18066,7 +18182,7 @@
|
|||
"section": "def-common.RegistryPackage",
|
||||
"text": "RegistryPackage"
|
||||
},
|
||||
", \"type\" | \"description\" | \"title\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"icons\" | \"policy_templates\">[]"
|
||||
", \"type\" | \"title\" | \"description\" | \"icons\" | \"name\" | \"version\" | \"path\" | \"download\" | \"internal\" | \"data_streams\" | \"release\" | \"policy_templates\">[]"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false,
|
||||
|
|
|
@ -18,7 +18,7 @@ Contact [Fleet](https://github.com/orgs/elastic/teams/fleet) for questions regar
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 1186 | 15 | 1085 | 11 |
|
||||
| 1196 | 15 | 1095 | 11 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -449,7 +449,7 @@
|
|||
"signature": [
|
||||
"Pick<",
|
||||
"GlobalSearchProviderResult",
|
||||
", \"type\" | \"title\" | \"id\" | \"meta\" | \"icon\" | \"score\"> & { url: string; }"
|
||||
", \"type\" | \"id\" | \"title\" | \"meta\" | \"icon\" | \"score\"> & { url: string; }"
|
||||
],
|
||||
"path": "x-pack/plugins/global_search/common/types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -1096,7 +1096,7 @@
|
|||
"signature": [
|
||||
"Pick<",
|
||||
"GlobalSearchProviderResult",
|
||||
", \"type\" | \"title\" | \"id\" | \"meta\" | \"icon\" | \"score\"> & { url: string; }"
|
||||
", \"type\" | \"id\" | \"title\" | \"meta\" | \"icon\" | \"score\"> & { url: string; }"
|
||||
],
|
||||
"path": "x-pack/plugins/global_search/common/types.ts",
|
||||
"deprecated": false,
|
||||
|
|
|
@ -983,7 +983,7 @@
|
|||
},
|
||||
") => void; getSampleDatasets: () => ",
|
||||
"Writable",
|
||||
"<Readonly<{ status?: string | undefined; darkPreviewImagePath?: string | undefined; statusMsg?: string | undefined; } & { description: string; id: string; name: string; savedObjects: Readonly<{ version?: any; attributes?: any; } & { type: string; id: string; references: any[]; }>[]; defaultIndex: string; previewImagePath: string; overviewDashboard: string; appLinks: Readonly<{} & { label: string; path: string; icon: string; }>[]; dataIndices: Readonly<{} & { id: string; fields: Record<string, any>; timeFields: string[]; dataPath: string; currentTimeMarker: string; preserveDayOfWeekTimeOfDay: boolean; }>[]; }>>[]; addSavedObjectsToSampleDataset: (id: string, savedObjects: ",
|
||||
"<Readonly<{ status?: string | undefined; darkPreviewImagePath?: string | undefined; statusMsg?: string | undefined; } & { id: string; description: string; name: string; savedObjects: Readonly<{ version?: any; attributes?: any; } & { type: string; id: string; references: any[]; }>[]; defaultIndex: string; previewImagePath: string; overviewDashboard: string; appLinks: Readonly<{} & { label: string; path: string; icon: string; }>[]; dataIndices: Readonly<{} & { id: string; fields: Record<string, any>; timeFields: string[]; dataPath: string; currentTimeMarker: string; preserveDayOfWeekTimeOfDay: boolean; }>[]; }>>[]; addSavedObjectsToSampleDataset: (id: string, savedObjects: ",
|
||||
"SavedObject",
|
||||
"<unknown>[]) => void; addAppLinksToSampleDataset: (id: string, appLinks: Readonly<{} & { label: string; path: string; icon: string; }>[]) => void; replacePanelInSampleDatasetDashboard: ({ sampleDataId, dashboardId, oldEmbeddableId, embeddableId, embeddableType, embeddableConfig, }: ",
|
||||
"SampleDatasetDashboardPanel",
|
||||
|
@ -1003,7 +1003,7 @@
|
|||
"signature": [
|
||||
"() => ",
|
||||
"Writable",
|
||||
"<Readonly<{ status?: string | undefined; darkPreviewImagePath?: string | undefined; statusMsg?: string | undefined; } & { description: string; id: string; name: string; savedObjects: Readonly<{ version?: any; attributes?: any; } & { type: string; id: string; references: any[]; }>[]; defaultIndex: string; previewImagePath: string; overviewDashboard: string; appLinks: Readonly<{} & { label: string; path: string; icon: string; }>[]; dataIndices: Readonly<{} & { id: string; fields: Record<string, any>; timeFields: string[]; dataPath: string; currentTimeMarker: string; preserveDayOfWeekTimeOfDay: boolean; }>[]; }>>"
|
||||
"<Readonly<{ status?: string | undefined; darkPreviewImagePath?: string | undefined; statusMsg?: string | undefined; } & { id: string; description: string; name: string; savedObjects: Readonly<{ version?: any; attributes?: any; } & { type: string; id: string; references: any[]; }>[]; defaultIndex: string; previewImagePath: string; overviewDashboard: string; appLinks: Readonly<{} & { label: string; path: string; icon: string; }>[]; dataIndices: Readonly<{} & { id: string; fields: Record<string, any>; timeFields: string[]; dataPath: string; currentTimeMarker: string; preserveDayOfWeekTimeOfDay: boolean; }>[]; }>>"
|
||||
],
|
||||
"path": "src/plugins/home/server/services/sample_data/lib/sample_dataset_registry_types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -1021,7 +1021,7 @@
|
|||
"signature": [
|
||||
"(context: ",
|
||||
"TutorialContext",
|
||||
") => Readonly<{ savedObjects?: any[] | undefined; euiIconType?: string | undefined; previewImagePath?: string | undefined; moduleName?: string | undefined; isBeta?: boolean | undefined; completionTimeMinutes?: number | undefined; elasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; onPremElasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; artifacts?: Readonly<{ application?: Readonly<{} & { label: string; path: string; }> | undefined; exportedFields?: Readonly<{} & { documentationUrl: string; }> | undefined; } & { dashboards: Readonly<{ linkLabel?: string | undefined; } & { id: string; isOverview: boolean; }>[]; }> | undefined; savedObjectsInstallMsg?: string | undefined; customStatusCheckName?: string | undefined; } & { id: string; name: string; category: \"metrics\" | \"security\" | \"other\" | \"logging\"; shortDescription: string; longDescription: string; onPrem: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }>; }>"
|
||||
") => Readonly<{ isBeta?: boolean | undefined; savedObjects?: any[] | undefined; euiIconType?: string | undefined; previewImagePath?: string | undefined; moduleName?: string | undefined; completionTimeMinutes?: number | undefined; elasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; onPremElasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; artifacts?: Readonly<{ application?: Readonly<{} & { label: string; path: string; }> | undefined; exportedFields?: Readonly<{} & { documentationUrl: string; }> | undefined; } & { dashboards: Readonly<{ linkLabel?: string | undefined; } & { id: string; isOverview: boolean; }>[]; }> | undefined; savedObjectsInstallMsg?: string | undefined; customStatusCheckName?: string | undefined; integrationBrowserCategories?: string[] | undefined; } & { id: string; name: string; category: \"security\" | \"metrics\" | \"other\" | \"logging\"; shortDescription: string; longDescription: string; onPrem: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }>; }>"
|
||||
],
|
||||
"path": "src/plugins/home/server/services/tutorials/lib/tutorials_registry_types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -1051,7 +1051,7 @@
|
|||
"label": "TutorialSchema",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ readonly savedObjects?: any[] | undefined; readonly euiIconType?: string | undefined; readonly previewImagePath?: string | undefined; readonly moduleName?: string | undefined; readonly isBeta?: boolean | undefined; readonly completionTimeMinutes?: number | undefined; readonly elasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; readonly onPremElasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; readonly artifacts?: Readonly<{ application?: Readonly<{} & { label: string; path: string; }> | undefined; exportedFields?: Readonly<{} & { documentationUrl: string; }> | undefined; } & { dashboards: Readonly<{ linkLabel?: string | undefined; } & { id: string; isOverview: boolean; }>[]; }> | undefined; readonly savedObjectsInstallMsg?: string | undefined; readonly customStatusCheckName?: string | undefined; readonly id: string; readonly name: string; readonly category: \"metrics\" | \"security\" | \"other\" | \"logging\"; readonly shortDescription: string; readonly longDescription: string; readonly onPrem: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }>; }"
|
||||
"{ readonly isBeta?: boolean | undefined; readonly savedObjects?: any[] | undefined; readonly euiIconType?: string | undefined; readonly previewImagePath?: string | undefined; readonly moduleName?: string | undefined; readonly completionTimeMinutes?: number | undefined; readonly elasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; readonly onPremElasticCloud?: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }> | undefined; readonly artifacts?: Readonly<{ application?: Readonly<{} & { label: string; path: string; }> | undefined; exportedFields?: Readonly<{} & { documentationUrl: string; }> | undefined; } & { dashboards: Readonly<{ linkLabel?: string | undefined; } & { id: string; isOverview: boolean; }>[]; }> | undefined; readonly savedObjectsInstallMsg?: string | undefined; readonly customStatusCheckName?: string | undefined; readonly integrationBrowserCategories?: string[] | undefined; readonly id: string; readonly name: string; readonly category: \"security\" | \"metrics\" | \"other\" | \"logging\"; readonly shortDescription: string; readonly longDescription: string; readonly onPrem: Readonly<{ params?: Readonly<{ defaultValue?: any; } & { type: \"string\" | \"number\"; label: string; id: string; }>[] | undefined; } & { instructionSets: Readonly<{ title?: string | undefined; callOut?: Readonly<{ iconType?: string | undefined; message?: string | undefined; } & { title: string; }> | undefined; statusCheck?: Readonly<{ title?: string | undefined; text?: string | undefined; error?: string | undefined; success?: string | undefined; btnLabel?: string | undefined; } & { esHitsCheck: Readonly<{} & { query: Record<string, any>; index: string | string[]; }>; }> | undefined; } & { instructionVariants: Readonly<{} & { id: string; instructions: Readonly<{ title?: string | undefined; commands?: string[] | undefined; textPre?: string | undefined; textPost?: string | undefined; customComponentName?: string | undefined; } & {}>[]; }>[]; }>[]; }>; }"
|
||||
],
|
||||
"path": "src/plugins/home/server/services/tutorials/lib/tutorial_schema.ts",
|
||||
"deprecated": false,
|
||||
|
@ -1312,7 +1312,7 @@
|
|||
},
|
||||
") => void; getSampleDatasets: () => ",
|
||||
"Writable",
|
||||
"<Readonly<{ status?: string | undefined; darkPreviewImagePath?: string | undefined; statusMsg?: string | undefined; } & { description: string; id: string; name: string; savedObjects: Readonly<{ version?: any; attributes?: any; } & { type: string; id: string; references: any[]; }>[]; defaultIndex: string; previewImagePath: string; overviewDashboard: string; appLinks: Readonly<{} & { label: string; path: string; icon: string; }>[]; dataIndices: Readonly<{} & { id: string; fields: Record<string, any>; timeFields: string[]; dataPath: string; currentTimeMarker: string; preserveDayOfWeekTimeOfDay: boolean; }>[]; }>>[]; addSavedObjectsToSampleDataset: (id: string, savedObjects: ",
|
||||
"<Readonly<{ status?: string | undefined; darkPreviewImagePath?: string | undefined; statusMsg?: string | undefined; } & { id: string; description: string; name: string; savedObjects: Readonly<{ version?: any; attributes?: any; } & { type: string; id: string; references: any[]; }>[]; defaultIndex: string; previewImagePath: string; overviewDashboard: string; appLinks: Readonly<{} & { label: string; path: string; icon: string; }>[]; dataIndices: Readonly<{} & { id: string; fields: Record<string, any>; timeFields: string[]; dataPath: string; currentTimeMarker: string; preserveDayOfWeekTimeOfDay: boolean; }>[]; }>>[]; addSavedObjectsToSampleDataset: (id: string, savedObjects: ",
|
||||
"SavedObject",
|
||||
"<unknown>[]) => void; addAppLinksToSampleDataset: (id: string, appLinks: Readonly<{} & { label: string; path: string; icon: string; }>[]) => void; replacePanelInSampleDatasetDashboard: ({ sampleDataId, dashboardId, oldEmbeddableId, embeddableId, embeddableType, embeddableConfig, }: ",
|
||||
"SampleDatasetDashboardPanel",
|
||||
|
|
|
@ -168,12 +168,12 @@
|
|||
{
|
||||
"parentPluginId": "indexManagement",
|
||||
"id": "def-public.Index.documents",
|
||||
"type": "Any",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "documents",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"any"
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/index_management/common/types/indices.ts",
|
||||
"deprecated": false
|
||||
|
@ -201,6 +201,16 @@
|
|||
"path": "x-pack/plugins/index_management/common/types/indices.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "indexManagement",
|
||||
"id": "def-public.Index.hidden",
|
||||
"type": "boolean",
|
||||
"tags": [],
|
||||
"label": "hidden",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/index_management/common/types/indices.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "indexManagement",
|
||||
"id": "def-public.Index.aliases",
|
||||
|
@ -421,12 +431,12 @@
|
|||
{
|
||||
"parentPluginId": "indexManagement",
|
||||
"id": "def-server.Index.documents",
|
||||
"type": "Any",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "documents",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"any"
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/index_management/common/types/indices.ts",
|
||||
"deprecated": false
|
||||
|
@ -454,6 +464,16 @@
|
|||
"path": "x-pack/plugins/index_management/common/types/indices.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "indexManagement",
|
||||
"id": "def-server.Index.hidden",
|
||||
"type": "boolean",
|
||||
"tags": [],
|
||||
"label": "hidden",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/index_management/common/types/indices.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "indexManagement",
|
||||
"id": "def-server.Index.aliases",
|
||||
|
@ -1474,12 +1494,12 @@
|
|||
{
|
||||
"parentPluginId": "indexManagement",
|
||||
"id": "def-common.Index.documents",
|
||||
"type": "Any",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "documents",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"any"
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/index_management/common/types/indices.ts",
|
||||
"deprecated": false
|
||||
|
@ -1507,6 +1527,16 @@
|
|||
"path": "x-pack/plugins/index_management/common/types/indices.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "indexManagement",
|
||||
"id": "def-common.Index.hidden",
|
||||
"type": "boolean",
|
||||
"tags": [],
|
||||
"label": "hidden",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/index_management/common/types/indices.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "indexManagement",
|
||||
"id": "def-common.Index.aliases",
|
||||
|
|
|
@ -18,7 +18,7 @@ Contact [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-ma
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 165 | 12 | 160 | 3 |
|
||||
| 168 | 9 | 163 | 3 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -1922,7 +1922,7 @@
|
|||
"signature": [
|
||||
"(Pick<",
|
||||
"LensByValueInput",
|
||||
", \"palette\" | \"timeRange\" | \"syncColors\" | \"viewMode\" | \"filters\" | \"title\" | \"query\" | \"executionContext\" | \"hidePanelTitles\" | \"id\" | \"lastReloadRequestTime\" | \"enhancements\" | \"disabledActions\" | \"disableTriggers\" | \"searchSessionId\" | \"className\" | \"style\" | \"onLoad\" | \"renderMode\" | \"onBrushEnd\" | \"onFilter\" | \"onTableRowClick\"> & { attributes: LensAttributes<\"lnsXY\", ",
|
||||
", \"palette\" | \"id\" | \"title\" | \"timeRange\" | \"syncColors\" | \"viewMode\" | \"filters\" | \"query\" | \"executionContext\" | \"hidePanelTitles\" | \"lastReloadRequestTime\" | \"enhancements\" | \"disabledActions\" | \"disableTriggers\" | \"searchSessionId\" | \"className\" | \"style\" | \"onLoad\" | \"renderMode\" | \"onBrushEnd\" | \"onFilter\" | \"onTableRowClick\"> & { attributes: LensAttributes<\"lnsXY\", ",
|
||||
{
|
||||
"pluginId": "lens",
|
||||
"scope": "public",
|
||||
|
@ -2389,7 +2389,7 @@
|
|||
"signature": [
|
||||
"Pick<",
|
||||
"LensByValueInput",
|
||||
", \"palette\" | \"timeRange\" | \"syncColors\" | \"viewMode\" | \"filters\" | \"title\" | \"query\" | \"executionContext\" | \"hidePanelTitles\" | \"id\" | \"lastReloadRequestTime\" | \"enhancements\" | \"disabledActions\" | \"disableTriggers\" | \"searchSessionId\" | \"className\" | \"style\" | \"onLoad\" | \"renderMode\" | \"onBrushEnd\" | \"onFilter\" | \"onTableRowClick\"> & { attributes: LensAttributes<\"lnsXY\", ",
|
||||
", \"palette\" | \"id\" | \"title\" | \"timeRange\" | \"syncColors\" | \"viewMode\" | \"filters\" | \"query\" | \"executionContext\" | \"hidePanelTitles\" | \"lastReloadRequestTime\" | \"enhancements\" | \"disabledActions\" | \"disableTriggers\" | \"searchSessionId\" | \"className\" | \"style\" | \"onLoad\" | \"renderMode\" | \"onBrushEnd\" | \"onFilter\" | \"onTableRowClick\"> & { attributes: LensAttributes<\"lnsXY\", ",
|
||||
{
|
||||
"pluginId": "lens",
|
||||
"scope": "public",
|
||||
|
@ -3002,7 +3002,7 @@
|
|||
{
|
||||
"parentPluginId": "lens",
|
||||
"id": "def-server.PluginSetupContract.taskManager",
|
||||
"type": "CompoundType",
|
||||
"type": "Object",
|
||||
"tags": [],
|
||||
"label": "taskManager",
|
||||
"description": [],
|
||||
|
|
|
@ -2738,7 +2738,7 @@
|
|||
"signature": [
|
||||
"Pick<",
|
||||
"KibanaClient",
|
||||
", \"get\" | \"delete\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"search\" | \"security\" | \"transform\" | \"eql\" | \"helpers\" | \"emit\" | \"on\" | \"once\" | \"off\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"count\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"monitoring\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ",
|
||||
", \"get\" | \"delete\" | \"monitoring\" | \"security\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"search\" | \"transform\" | \"eql\" | \"helpers\" | \"emit\" | \"on\" | \"once\" | \"off\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"count\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ",
|
||||
"TransportRequestParams",
|
||||
", options?: ",
|
||||
"TransportRequestOptions",
|
||||
|
|
|
@ -196,7 +196,7 @@
|
|||
"signature": [
|
||||
"Pick<Pick<",
|
||||
"CreateManagementItemArgs",
|
||||
", \"title\" | \"order\" | \"euiIconType\" | \"icon\" | \"tip\"> & Pick<{ id: string; }, \"id\"> & Pick<{ id: string; }, never>, \"title\" | \"id\" | \"order\" | \"euiIconType\" | \"icon\" | \"tip\">"
|
||||
", \"title\" | \"order\" | \"euiIconType\" | \"icon\" | \"tip\"> & Pick<{ id: string; }, \"id\"> & Pick<{ id: string; }, never>, \"id\" | \"title\" | \"order\" | \"euiIconType\" | \"icon\" | \"tip\">"
|
||||
],
|
||||
"path": "src/plugins/management/public/utils/management_section.ts",
|
||||
"deprecated": false,
|
||||
|
@ -221,7 +221,7 @@
|
|||
"section": "def-public.RegisterManagementAppArgs",
|
||||
"text": "RegisterManagementAppArgs"
|
||||
},
|
||||
", \"title\" | \"id\" | \"order\" | \"mount\" | \"keywords\" | \"euiIconType\" | \"icon\" | \"tip\">) => ",
|
||||
", \"id\" | \"title\" | \"order\" | \"mount\" | \"keywords\" | \"euiIconType\" | \"icon\" | \"tip\">) => ",
|
||||
{
|
||||
"pluginId": "management",
|
||||
"scope": "public",
|
||||
|
@ -249,7 +249,7 @@
|
|||
"section": "def-public.RegisterManagementAppArgs",
|
||||
"text": "RegisterManagementAppArgs"
|
||||
},
|
||||
", \"title\" | \"id\" | \"order\" | \"mount\" | \"keywords\" | \"euiIconType\" | \"icon\" | \"tip\">"
|
||||
", \"id\" | \"title\" | \"order\" | \"mount\" | \"keywords\" | \"euiIconType\" | \"icon\" | \"tip\">"
|
||||
],
|
||||
"path": "src/plugins/management/public/utils/management_section.ts",
|
||||
"deprecated": false,
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
"signature": [
|
||||
"Pick<",
|
||||
"KibanaClient",
|
||||
", \"get\" | \"delete\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"search\" | \"security\" | \"transform\" | \"eql\" | \"helpers\" | \"emit\" | \"on\" | \"once\" | \"off\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"count\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"monitoring\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ",
|
||||
", \"get\" | \"delete\" | \"monitoring\" | \"security\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"search\" | \"transform\" | \"eql\" | \"helpers\" | \"emit\" | \"on\" | \"once\" | \"off\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"count\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ",
|
||||
"TransportRequestParams",
|
||||
", options?: ",
|
||||
"TransportRequestOptions",
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -12,13 +12,13 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
|
||||
| Plugin Count | Plugins with a <br /> public API | Number of teams |
|
||||
|--------------|----------|------------------------|
|
||||
| 128 | 107 | 28 |
|
||||
| 129 | 108 | 28 |
|
||||
|
||||
### Public API health stats
|
||||
|
||||
| API Count | Any Count | Missing comments | Missing exports |
|
||||
|--------------|----------|-----------------|--------|
|
||||
| 20052 | 272 | 16143 | 595 |
|
||||
| 20153 | 269 | 16232 | 601 |
|
||||
|
||||
## Plugin Directory
|
||||
|
||||
|
@ -27,7 +27,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| <DocLink id="kibActionsPluginApi" text="actions"/> | [Kibana Alerting](https://github.com/orgs/elastic/teams/kibana-alerting-services) | - | 125 | 0 | 125 | 8 |
|
||||
| <DocLink id="kibAdvancedSettingsPluginApi" text="advancedSettings"/> | [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | - | 23 | 0 | 22 | 1 |
|
||||
| <DocLink id="kibAlertingPluginApi" text="alerting"/> | [Kibana Alerting](https://github.com/orgs/elastic/teams/kibana-alerting-services) | - | 248 | 0 | 240 | 17 |
|
||||
| <DocLink id="kibApmPluginApi" text="apm"/> | [APM UI](https://github.com/orgs/elastic/teams/apm-ui) | - | 42 | 0 | 42 | 30 |
|
||||
| <DocLink id="kibApmPluginApi" text="apm"/> | [APM UI](https://github.com/orgs/elastic/teams/apm-ui) | - | 42 | 0 | 42 | 36 |
|
||||
| <DocLink id="kibApmOssPluginApi" text="apmOss"/> | [APM UI](https://github.com/orgs/elastic/teams/apm-ui) | - | 6 | 0 | 6 | 0 |
|
||||
| <DocLink id="kibBannersPluginApi" text="banners"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 9 | 0 | 9 | 0 |
|
||||
| <DocLink id="kibBfetchPluginApi" text="bfetch"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Considering using bfetch capabilities when fetching large amounts of data. This services supports batching HTTP requests and streaming responses back. | 77 | 1 | 66 | 2 |
|
||||
|
@ -36,8 +36,9 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| <DocLink id="kibChartsPluginApi" text="charts"/> | [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors) | - | 223 | 2 | 192 | 3 |
|
||||
| <DocLink id="kibCloudPluginApi" text="cloud"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 22 | 0 | 22 | 0 |
|
||||
| <DocLink id="kibConsolePluginApi" text="console"/> | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 9 | 0 | 9 | 1 |
|
||||
| <DocLink id="kibCorePluginApi" text="core"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 2292 | 27 | 1020 | 30 |
|
||||
| <DocLink id="kibCorePluginApi" text="core"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 2293 | 27 | 1020 | 30 |
|
||||
| crossClusterReplication | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 0 | 0 | 0 | 0 |
|
||||
| <DocLink id="kibCustomIntegrationsPluginApi" text="customIntegrations"/> | [Fleet](https://github.com/orgs/elastic/teams/fleet) | Add custom data integrations so they can be displayed in the Fleet integrations app | 66 | 0 | 66 | 0 |
|
||||
| <DocLink id="kibDashboardPluginApi" text="dashboard"/> | [Kibana Presentation](https://github.com/orgs/elastic/teams/kibana-presentation) | Adds the Dashboard app to Kibana | 145 | 1 | 132 | 10 |
|
||||
| <DocLink id="kibDashboardEnhancedPluginApi" text="dashboardEnhanced"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 51 | 0 | 50 | 0 |
|
||||
| <DocLink id="kibDataPluginApi" text="data"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Data services are useful for searching and querying data from Elasticsearch. Helpful utilities include: a re-usable react query bar, KQL autocomplete, async search, Data Views (Index Patterns) and field formatters. | 3186 | 44 | 2800 | 49 |
|
||||
|
@ -63,7 +64,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| <DocLink id="kibFeaturesPluginApi" text="features"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 216 | 0 | 98 | 2 |
|
||||
| <DocLink id="kibFieldFormatsPluginApi" text="fieldFormats"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Index pattern fields and ambiguous values formatters | 288 | 7 | 250 | 3 |
|
||||
| <DocLink id="kibFileUploadPluginApi" text="fileUpload"/> | [Machine Learning UI](https://github.com/orgs/elastic/teams/ml-ui) | The file upload plugin contains components and services for uploading a file, analyzing its data, and then importing the data into an Elasticsearch index. Supported file types include CSV, TSV, newline-delimited JSON and GeoJSON. | 129 | 4 | 129 | 1 |
|
||||
| <DocLink id="kibFleetPluginApi" text="fleet"/> | [Fleet](https://github.com/orgs/elastic/teams/fleet) | - | 1186 | 15 | 1085 | 11 |
|
||||
| <DocLink id="kibFleetPluginApi" text="fleet"/> | [Fleet](https://github.com/orgs/elastic/teams/fleet) | - | 1196 | 15 | 1095 | 11 |
|
||||
| <DocLink id="kibGlobalSearchPluginApi" text="globalSearch"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 68 | 0 | 14 | 5 |
|
||||
| globalSearchBar | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 0 | 0 | 0 | 0 |
|
||||
| globalSearchProviders | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 0 | 0 | 0 | 0 |
|
||||
|
@ -71,7 +72,7 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| grokdebugger | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 0 | 0 | 0 | 0 |
|
||||
| <DocLink id="kibHomePluginApi" text="home"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 99 | 3 | 77 | 5 |
|
||||
| <DocLink id="kibIndexLifecycleManagementPluginApi" text="indexLifecycleManagement"/> | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 4 | 0 | 4 | 0 |
|
||||
| <DocLink id="kibIndexManagementPluginApi" text="indexManagement"/> | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 165 | 12 | 160 | 3 |
|
||||
| <DocLink id="kibIndexManagementPluginApi" text="indexManagement"/> | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 168 | 9 | 163 | 3 |
|
||||
| <DocLink id="kibIndexPatternEditorPluginApi" text="indexPatternEditor"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | This plugin provides the ability to create index patterns via a modal flyout from any kibana app | 13 | 1 | 8 | 0 |
|
||||
| <DocLink id="kibIndexPatternFieldEditorPluginApi" text="indexPatternFieldEditor"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Reusable index pattern field editor across Kibana | 42 | 2 | 39 | 3 |
|
||||
| <DocLink id="kibIndexPatternManagementPluginApi" text="indexPatternManagement"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Index pattern management app | 2 | 0 | 2 | 0 |
|
||||
|
@ -109,19 +110,19 @@ warning: This document is auto-generated and is meant to be viewed inside our ex
|
|||
| <DocLink id="kibRuleRegistryPluginApi" text="ruleRegistry"/> | [RAC](https://github.com/orgs/elastic/teams/rac) | - | 132 | 0 | 109 | 7 |
|
||||
| <DocLink id="kibRuntimeFieldsPluginApi" text="runtimeFields"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 24 | 0 | 19 | 2 |
|
||||
| <DocLink id="kibSavedObjectsPluginApi" text="savedObjects"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 221 | 3 | 207 | 4 |
|
||||
| <DocLink id="kibSavedObjectsManagementPluginApi" text="savedObjectsManagement"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 104 | 0 | 91 | 0 |
|
||||
| <DocLink id="kibSavedObjectsManagementPluginApi" text="savedObjectsManagement"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 103 | 0 | 90 | 0 |
|
||||
| <DocLink id="kibSavedObjectsTaggingPluginApi" text="savedObjectsTagging"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 54 | 0 | 50 | 0 |
|
||||
| <DocLink id="kibSavedObjectsTaggingOssPluginApi" text="savedObjectsTaggingOss"/> | [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) | - | 90 | 3 | 51 | 0 |
|
||||
| <DocLink id="kibScreenshotModePluginApi" text="screenshotMode"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | - | 22 | 0 | 17 | 1 |
|
||||
| searchprofiler | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 0 | 0 | 0 | 0 |
|
||||
| <DocLink id="kibSecurityPluginApi" text="security"/> | [Platform Security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin provides authentication and authorization features, and exposes functionality to understand the capabilities of the currently authenticated user. | 112 | 0 | 51 | 6 |
|
||||
| <DocLink id="kibSecurityOssPluginApi" text="securityOss"/> | [Platform Security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin exposes a limited set of security functionality to OSS plugins. | 12 | 0 | 9 | 3 |
|
||||
| <DocLink id="kibSecuritySolutionPluginApi" text="securitySolution"/> | [Security solution](https://github.com/orgs/elastic/teams/security-solution) | - | 1347 | 8 | 1293 | 29 |
|
||||
| <DocLink id="kibSharePluginApi" text="share"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Adds URL Service and sharing capabilities to Kibana | 135 | 1 | 88 | 9 |
|
||||
| <DocLink id="kibSecuritySolutionPluginApi" text="securitySolution"/> | [Security solution](https://github.com/orgs/elastic/teams/security-solution) | - | 1350 | 8 | 1296 | 29 |
|
||||
| <DocLink id="kibSharePluginApi" text="share"/> | [App Services](https://github.com/orgs/elastic/teams/kibana-app-services) | Adds URL Service and sharing capabilities to Kibana | 137 | 1 | 90 | 10 |
|
||||
| <DocLink id="kibSnapshotRestorePluginApi" text="snapshotRestore"/> | [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-management) | - | 23 | 1 | 22 | 1 |
|
||||
| <DocLink id="kibSpacesPluginApi" text="spaces"/> | [Platform Security](https://github.com/orgs/elastic/teams/kibana-security) | This plugin provides the Spaces feature, which allows saved objects to be organized into meaningful categories. | 203 | 0 | 20 | 1 |
|
||||
| <DocLink id="kibStackAlertsPluginApi" text="stackAlerts"/> | [Kibana Alerting](https://github.com/orgs/elastic/teams/kibana-alerting-services) | - | 4 | 0 | 4 | 0 |
|
||||
| <DocLink id="kibTaskManagerPluginApi" text="taskManager"/> | [Kibana Alerting](https://github.com/orgs/elastic/teams/kibana-alerting-services) | - | 53 | 0 | 26 | 8 |
|
||||
| <DocLink id="kibTaskManagerPluginApi" text="taskManager"/> | [Kibana Alerting](https://github.com/orgs/elastic/teams/kibana-alerting-services) | - | 70 | 0 | 32 | 7 |
|
||||
| <DocLink id="kibTelemetryPluginApi" text="telemetry"/> | [Kibana Telemetry](https://github.com/orgs/elastic/teams/kibana-telemetry) | - | 41 | 0 | 0 | 0 |
|
||||
| <DocLink id="kibTelemetryCollectionManagerPluginApi" text="telemetryCollectionManager"/> | [Kibana Telemetry](https://github.com/orgs/elastic/teams/kibana-telemetry) | - | 36 | 0 | 36 | 4 |
|
||||
| <DocLink id="kibTelemetryCollectionXpackPluginApi" text="telemetryCollectionXpack"/> | [Kibana Telemetry](https://github.com/orgs/elastic/teams/kibana-telemetry) | - | 1 | 0 | 1 | 0 |
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -2089,16 +2089,18 @@
|
|||
{
|
||||
"parentPluginId": "reporting",
|
||||
"id": "def-server.ReportingSetupDeps.taskManager",
|
||||
"type": "CompoundType",
|
||||
"type": "Object",
|
||||
"tags": [],
|
||||
"label": "taskManager",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ index: string; addMiddleware: (middleware: ",
|
||||
"Middleware",
|
||||
") => void; } & Pick<",
|
||||
"TaskTypeDictionary",
|
||||
", \"registerTaskDefinitions\">"
|
||||
{
|
||||
"pluginId": "taskManager",
|
||||
"scope": "server",
|
||||
"docId": "kibTaskManagerPluginApi",
|
||||
"section": "def-server.TaskManagerSetupContract",
|
||||
"text": "TaskManagerSetupContract"
|
||||
}
|
||||
],
|
||||
"path": "x-pack/plugins/reporting/server/types.ts",
|
||||
"deprecated": false
|
||||
|
|
|
@ -655,22 +655,6 @@
|
|||
{
|
||||
"plugin": "dashboard",
|
||||
"path": "src/plugins/dashboard/public/url_generator.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "savedObjectsManagement",
|
||||
"path": "src/plugins/saved_objects_management/public/services/service_registry.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "savedObjectsManagement",
|
||||
"path": "src/plugins/saved_objects_management/public/services/service_registry.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "savedObjectsManagement",
|
||||
"path": "src/plugins/saved_objects_management/public/lib/create_field_list.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "savedObjectsManagement",
|
||||
"path": "src/plugins/saved_objects_management/public/lib/create_field_list.ts"
|
||||
}
|
||||
],
|
||||
"children": [
|
||||
|
@ -1235,7 +1219,7 @@
|
|||
"section": "def-public.SavedObject",
|
||||
"text": "SavedObject"
|
||||
},
|
||||
", \"title\" | \"id\" | \"getDisplayName\" | \"lastSavedTitle\" | \"copyOnSave\" | \"getEsType\">, isTitleDuplicateConfirmed: boolean, onTitleDuplicate: (() => void) | undefined, services: Pick<",
|
||||
", \"id\" | \"title\" | \"getDisplayName\" | \"lastSavedTitle\" | \"copyOnSave\" | \"getEsType\">, isTitleDuplicateConfirmed: boolean, onTitleDuplicate: (() => void) | undefined, services: Pick<",
|
||||
"SavedObjectKibanaServices",
|
||||
", \"overlays\" | \"savedObjectsClient\">) => Promise<true>"
|
||||
],
|
||||
|
@ -1258,7 +1242,7 @@
|
|||
"section": "def-public.SavedObject",
|
||||
"text": "SavedObject"
|
||||
},
|
||||
", \"title\" | \"id\" | \"getDisplayName\" | \"lastSavedTitle\" | \"copyOnSave\" | \"getEsType\">"
|
||||
", \"id\" | \"title\" | \"getDisplayName\" | \"lastSavedTitle\" | \"copyOnSave\" | \"getEsType\">"
|
||||
],
|
||||
"path": "src/plugins/saved_objects/public/saved_object/helpers/check_for_duplicate_title.ts",
|
||||
"deprecated": false,
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -18,7 +18,7 @@ Contact [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) for que
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 104 | 0 | 91 | 0 |
|
||||
| 103 | 0 | 90 | 0 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -693,7 +693,7 @@
|
|||
"label": "errors",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ color?: string | undefined; description?: string | undefined; id?: string | undefined; name?: string | undefined; }"
|
||||
"{ color?: string | undefined; id?: string | undefined; description?: string | undefined; name?: string | undefined; }"
|
||||
],
|
||||
"path": "x-pack/plugins/saved_objects_tagging/common/validation.ts",
|
||||
"deprecated": false
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
"label": "experimentalFeatures",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ readonly metricsEntitiesEnabled: boolean; readonly ruleRegistryEnabled: boolean; readonly tGridEnabled: boolean; readonly tGridEventRenderedViewEnabled: boolean; readonly trustedAppsByPolicyEnabled: boolean; readonly excludePoliciesInFilterEnabled: boolean; readonly uebaEnabled: boolean; readonly disableIsolationUIPendingStatuses: boolean; }"
|
||||
"{ readonly metricsEntitiesEnabled: boolean; readonly ruleRegistryEnabled: boolean; readonly tGridEnabled: boolean; readonly tGridEventRenderedViewEnabled: boolean; readonly trustedAppsByPolicyEnabled: boolean; readonly excludePoliciesInFilterEnabled: boolean; readonly uebaEnabled: boolean; readonly disableIsolationUIPendingStatuses: boolean; readonly riskyHostsEnabled: boolean; }"
|
||||
],
|
||||
"path": "x-pack/plugins/security_solution/public/plugin.tsx",
|
||||
"deprecated": false
|
||||
|
@ -273,7 +273,7 @@
|
|||
"signature": [
|
||||
"Pick<",
|
||||
"TGridModel",
|
||||
", \"columns\" | \"filters\" | \"title\" | \"id\" | \"sort\" | \"version\" | \"isLoading\" | \"filterManager\" | \"dateRange\" | \"defaultColumns\" | \"savedObjectId\" | \"unit\" | \"dataProviders\" | \"deletedEventIds\" | \"documentType\" | \"excludedRowRendererIds\" | \"expandedDetail\" | \"footerText\" | \"graphEventId\" | \"kqlQuery\" | \"queryFields\" | \"indexNames\" | \"isSelectAllChecked\" | \"itemsPerPage\" | \"itemsPerPageOptions\" | \"loadingEventIds\" | \"loadingText\" | \"selectAll\" | \"showCheckboxes\" | \"selectedEventIds\"> & { activeTab: ",
|
||||
", \"columns\" | \"id\" | \"title\" | \"filters\" | \"sort\" | \"version\" | \"isLoading\" | \"filterManager\" | \"dateRange\" | \"defaultColumns\" | \"savedObjectId\" | \"unit\" | \"dataProviders\" | \"deletedEventIds\" | \"documentType\" | \"excludedRowRendererIds\" | \"expandedDetail\" | \"footerText\" | \"graphEventId\" | \"kqlQuery\" | \"queryFields\" | \"indexNames\" | \"isSelectAllChecked\" | \"itemsPerPage\" | \"itemsPerPageOptions\" | \"loadingEventIds\" | \"loadingText\" | \"selectAll\" | \"showCheckboxes\" | \"selectedEventIds\"> & { activeTab: ",
|
||||
{
|
||||
"pluginId": "securitySolution",
|
||||
"scope": "common",
|
||||
|
@ -7717,6 +7717,57 @@
|
|||
],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "securitySolution",
|
||||
"id": "def-common.HostsRiskyHostsStrategyResponse",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "HostsRiskyHostsStrategyResponse",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "securitySolution",
|
||||
"scope": "common",
|
||||
"docId": "kibSecuritySolutionPluginApi",
|
||||
"section": "def-common.HostsRiskyHostsStrategyResponse",
|
||||
"text": "HostsRiskyHostsStrategyResponse"
|
||||
},
|
||||
" extends ",
|
||||
{
|
||||
"pluginId": "data",
|
||||
"scope": "common",
|
||||
"docId": "kibDataSearchPluginApi",
|
||||
"section": "def-common.IEsSearchResponse",
|
||||
"text": "IEsSearchResponse"
|
||||
},
|
||||
"<any>"
|
||||
],
|
||||
"path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/risky_hosts/index.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "securitySolution",
|
||||
"id": "def-common.HostsRiskyHostsStrategyResponse.inspect",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "inspect",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "timelines",
|
||||
"scope": "common",
|
||||
"docId": "kibTimelinesPluginApi",
|
||||
"section": "def-common.Inspect",
|
||||
"text": "Inspect"
|
||||
},
|
||||
" | null | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/risky_hosts/index.ts",
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "securitySolution",
|
||||
"id": "def-common.HostsSortField",
|
||||
|
@ -19733,6 +19784,26 @@
|
|||
"deprecated": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "securitySolution",
|
||||
"id": "def-common.HostsRiskyHostsRequestOptions",
|
||||
"type": "Type",
|
||||
"tags": [],
|
||||
"label": "HostsRiskyHostsRequestOptions",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "securitySolution",
|
||||
"scope": "common",
|
||||
"docId": "kibSecuritySolutionPluginApi",
|
||||
"section": "def-common.RequestBasicOptions",
|
||||
"text": "RequestBasicOptions"
|
||||
}
|
||||
],
|
||||
"path": "x-pack/plugins/security_solution/common/search_strategy/security_solution/hosts/risky_hosts/index.ts",
|
||||
"deprecated": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "securitySolution",
|
||||
"id": "def-common.HostTacticsSortField",
|
||||
|
@ -21182,6 +21253,22 @@
|
|||
"section": "def-common.HostsQueries",
|
||||
"text": "HostsQueries"
|
||||
},
|
||||
".riskyHosts ? ",
|
||||
{
|
||||
"pluginId": "securitySolution",
|
||||
"scope": "common",
|
||||
"docId": "kibSecuritySolutionPluginApi",
|
||||
"section": "def-common.RequestBasicOptions",
|
||||
"text": "RequestBasicOptions"
|
||||
},
|
||||
" : T extends ",
|
||||
{
|
||||
"pluginId": "securitySolution",
|
||||
"scope": "common",
|
||||
"docId": "kibSecuritySolutionPluginApi",
|
||||
"section": "def-common.HostsQueries",
|
||||
"text": "HostsQueries"
|
||||
},
|
||||
".details ? ",
|
||||
{
|
||||
"pluginId": "securitySolution",
|
||||
|
@ -21649,6 +21736,22 @@
|
|||
"text": "RiskScoreStrategyResponse"
|
||||
},
|
||||
" : T extends ",
|
||||
{
|
||||
"pluginId": "securitySolution",
|
||||
"scope": "common",
|
||||
"docId": "kibSecuritySolutionPluginApi",
|
||||
"section": "def-common.HostsQueries",
|
||||
"text": "HostsQueries"
|
||||
},
|
||||
".riskyHosts ? ",
|
||||
{
|
||||
"pluginId": "securitySolution",
|
||||
"scope": "common",
|
||||
"docId": "kibSecuritySolutionPluginApi",
|
||||
"section": "def-common.HostsRiskyHostsStrategyResponse",
|
||||
"text": "HostsRiskyHostsStrategyResponse"
|
||||
},
|
||||
" : T extends ",
|
||||
{
|
||||
"pluginId": "securitySolution",
|
||||
"scope": "common",
|
||||
|
@ -22702,7 +22805,7 @@
|
|||
"section": "def-common.TimelineStatus",
|
||||
"text": "TimelineStatus"
|
||||
},
|
||||
" | null | undefined; columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; description?: string | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; title?: string | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; createdBy?: string | null | undefined; updatedBy?: string | null | undefined; created?: number | null | undefined; updated?: number | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ",
|
||||
" | null | undefined; columns?: { aggregatable?: boolean | null | undefined; category?: string | null | undefined; columnHeaderType?: string | null | undefined; description?: string | null | undefined; example?: string | null | undefined; indexes?: string[] | null | undefined; id?: string | null | undefined; name?: string | null | undefined; placeholder?: string | null | undefined; searchable?: boolean | null | undefined; type?: string | null | undefined; }[] | null | undefined; title?: string | null | undefined; description?: string | null | undefined; filters?: { exists?: string | null | undefined; meta?: { alias?: string | null | undefined; controlledBy?: string | null | undefined; disabled?: boolean | null | undefined; field?: string | null | undefined; formattedValue?: string | null | undefined; index?: string | null | undefined; key?: string | null | undefined; negate?: boolean | null | undefined; params?: string | null | undefined; type?: string | null | undefined; value?: string | null | undefined; } | null | undefined; match_all?: string | null | undefined; missing?: string | null | undefined; query?: string | null | undefined; range?: string | null | undefined; script?: string | null | undefined; }[] | null | undefined; sort?: { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; } | { columnId?: string | null | undefined; columnType?: string | null | undefined; sortDirection?: string | null | undefined; }[] | null | undefined; dateRange?: { start?: string | number | null | undefined; end?: string | number | null | undefined; } | null | undefined; createdBy?: string | null | undefined; updatedBy?: string | null | undefined; created?: number | null | undefined; updated?: number | null | undefined; dataProviders?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; and?: { id?: string | null | undefined; name?: string | null | undefined; enabled?: boolean | null | undefined; excluded?: boolean | null | undefined; kqlQuery?: string | null | undefined; queryMatch?: { field?: string | null | undefined; displayField?: string | null | undefined; value?: string | null | undefined; displayValue?: string | null | undefined; operator?: string | null | undefined; } | null | undefined; }[] | null | undefined; type?: ",
|
||||
{
|
||||
"pluginId": "securitySolution",
|
||||
"scope": "common",
|
||||
|
|
|
@ -18,7 +18,7 @@ Contact [Security solution](https://github.com/orgs/elastic/teams/security-solut
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 1347 | 8 | 1293 | 29 |
|
||||
| 1350 | 8 | 1296 | 29 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -617,6 +617,16 @@
|
|||
"path": "src/plugins/share/common/url_service/locators/types.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "share",
|
||||
"id": "def-public.LocatorPublic.id",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "id",
|
||||
"description": [],
|
||||
"path": "src/plugins/share/common/url_service/locators/types.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "share",
|
||||
"id": "def-public.LocatorPublic.getLocation",
|
||||
|
@ -1886,7 +1896,7 @@
|
|||
"UrlGeneratorsSetup",
|
||||
"; url: ",
|
||||
"UrlService",
|
||||
"; navigate(options: ",
|
||||
"<unknown>; navigate(options: ",
|
||||
"RedirectOptions",
|
||||
"<",
|
||||
"SerializableRecord",
|
||||
|
@ -1917,7 +1927,7 @@
|
|||
"UrlGeneratorsStart",
|
||||
"; url: ",
|
||||
"UrlService",
|
||||
"; navigate(options: ",
|
||||
"<unknown>; navigate(options: ",
|
||||
"RedirectOptions",
|
||||
"<",
|
||||
"SerializableRecord",
|
||||
|
@ -1983,7 +1993,10 @@
|
|||
"label": "url",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"UrlService"
|
||||
"UrlService",
|
||||
"<",
|
||||
"ServerShortUrlClientFactoryCreateParams",
|
||||
">"
|
||||
],
|
||||
"path": "src/plugins/share/server/plugin.ts",
|
||||
"deprecated": false
|
||||
|
@ -2010,7 +2023,10 @@
|
|||
"label": "url",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"UrlService"
|
||||
"UrlService",
|
||||
"<",
|
||||
"ServerShortUrlClientFactoryCreateParams",
|
||||
">"
|
||||
],
|
||||
"path": "src/plugins/share/server/plugin.ts",
|
||||
"deprecated": false
|
||||
|
@ -2283,6 +2299,16 @@
|
|||
"path": "src/plugins/share/common/url_service/locators/types.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "share",
|
||||
"id": "def-common.LocatorPublic.id",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "id",
|
||||
"description": [],
|
||||
"path": "src/plugins/share/common/url_service/locators/types.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "share",
|
||||
"id": "def-common.LocatorPublic.getLocation",
|
||||
|
|
|
@ -18,7 +18,7 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 135 | 1 | 88 | 9 |
|
||||
| 137 | 1 | 90 | 10 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -1489,7 +1489,7 @@
|
|||
"section": "def-common.GetSpaceResult",
|
||||
"text": "GetSpaceResult"
|
||||
},
|
||||
", \"color\" | \"description\" | \"id\" | \"name\" | \"initials\" | \"imageUrl\" | \"_reserved\">"
|
||||
", \"color\" | \"id\" | \"description\" | \"name\" | \"initials\" | \"imageUrl\" | \"_reserved\">"
|
||||
],
|
||||
"path": "x-pack/plugins/spaces/public/types.ts",
|
||||
"deprecated": false,
|
||||
|
|
|
@ -830,6 +830,188 @@
|
|||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "TaskRegisterDefinition",
|
||||
"description": [
|
||||
"\nDefines a task which can be scheduled and run by the Kibana\ntask manager."
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition.title",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "title",
|
||||
"description": [
|
||||
"\nA brief, human-friendly title for this task."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition.timeout",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "timeout",
|
||||
"description": [
|
||||
"\nHow long, in minutes or seconds, the system should wait for the task to complete\nbefore it is considered to be timed out. (e.g. '5m', the default). If\nthe task takes longer than this, Kibana will send it a kill command and\nthe task will be re-attempted."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition.description",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "description",
|
||||
"description": [
|
||||
"\nAn optional more detailed description of what this task does."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition.getRetry",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "getRetry",
|
||||
"description": [
|
||||
"\nFunction that customizes how the task should behave when the task fails. This\nfunction can return `true`, `false` or a Date. True will tell task manager\nto retry using default delay logic. False will tell task manager to stop retrying\nthis task. Date will suggest when to the task manager the task should retry.\nThis function isn't used for recurring tasks, those retry as per their configured recurring schedule."
|
||||
],
|
||||
"signature": [
|
||||
"((attempts: number, error: object) => boolean | Date) | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition.getRetry.$1",
|
||||
"type": "number",
|
||||
"tags": [],
|
||||
"label": "attempts",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"number"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false,
|
||||
"isRequired": true
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition.getRetry.$2",
|
||||
"type": "Uncategorized",
|
||||
"tags": [],
|
||||
"label": "error",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"object"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": []
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition.createTaskRunner",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "createTaskRunner",
|
||||
"description": [
|
||||
"\nCreates an object that has a run function which performs the task's work,\nand an optional cancel function which cancels the task."
|
||||
],
|
||||
"signature": [
|
||||
"(context: ",
|
||||
{
|
||||
"pluginId": "taskManager",
|
||||
"scope": "server",
|
||||
"docId": "kibTaskManagerPluginApi",
|
||||
"section": "def-server.RunContext",
|
||||
"text": "RunContext"
|
||||
},
|
||||
") => ",
|
||||
"CancellableTask"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false,
|
||||
"returnComment": [],
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition.createTaskRunner.$1",
|
||||
"type": "Object",
|
||||
"tags": [],
|
||||
"label": "context",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "taskManager",
|
||||
"scope": "server",
|
||||
"docId": "kibTaskManagerPluginApi",
|
||||
"section": "def-server.RunContext",
|
||||
"text": "RunContext"
|
||||
}
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task.ts",
|
||||
"deprecated": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition.maxAttempts",
|
||||
"type": "number",
|
||||
"tags": [],
|
||||
"label": "maxAttempts",
|
||||
"description": [
|
||||
"\nUp to how many times the task should retry when it fails to run. This will\ndefault to the global variable. The default value, if not specified, is 1."
|
||||
],
|
||||
"signature": [
|
||||
"number | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRegisterDefinition.maxConcurrency",
|
||||
"type": "number",
|
||||
"tags": [],
|
||||
"label": "maxConcurrency",
|
||||
"description": [
|
||||
"\nThe maximum number tasks of this type that can be run concurrently per Kibana instance.\nSetting this value will force Task Manager to poll for this task type separately from other task types\nwhich can add significant load to the ES cluster, so please use this configuration only when absolutely necessary.\nThe default value, if not given, is 0."
|
||||
],
|
||||
"signature": [
|
||||
"number | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
}
|
||||
],
|
||||
"enums": [
|
||||
|
@ -862,6 +1044,30 @@
|
|||
"deprecated": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskDefinitionRegistry",
|
||||
"type": "Type",
|
||||
"tags": [],
|
||||
"label": "TaskDefinitionRegistry",
|
||||
"description": [
|
||||
"\nA mapping of task type id to the task definition."
|
||||
],
|
||||
"signature": [
|
||||
"{ [x: string]: ",
|
||||
{
|
||||
"pluginId": "taskManager",
|
||||
"scope": "server",
|
||||
"docId": "kibTaskManagerPluginApi",
|
||||
"section": "def-server.TaskRegisterDefinition",
|
||||
"text": "TaskRegisterDefinition"
|
||||
},
|
||||
"; }"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/task_type_dictionary.ts",
|
||||
"deprecated": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskRunCreatorFunction",
|
||||
|
@ -912,19 +1118,118 @@
|
|||
"setup": {
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskManagerSetupContract",
|
||||
"type": "Type",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "TaskManagerSetupContract",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ index: string; addMiddleware: (middleware: ",
|
||||
"Middleware",
|
||||
") => void; } & Pick<",
|
||||
"TaskTypeDictionary",
|
||||
", \"registerTaskDefinitions\">"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskManagerSetupContract.index",
|
||||
"type": "string",
|
||||
"tags": [
|
||||
"deprecated"
|
||||
],
|
||||
"label": "index",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/task_manager/server/plugin.ts",
|
||||
"deprecated": true,
|
||||
"references": [
|
||||
{
|
||||
"plugin": "actions",
|
||||
"path": "x-pack/plugins/actions/server/plugin.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "actions",
|
||||
"path": "x-pack/plugins/actions/server/plugin.ts"
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskManagerSetupContract.addMiddleware",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "addMiddleware",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(middleware: ",
|
||||
"Middleware",
|
||||
") => void"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskManagerSetupContract.addMiddleware.$1",
|
||||
"type": "Object",
|
||||
"tags": [],
|
||||
"label": "middleware",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"Middleware"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": []
|
||||
},
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskManagerSetupContract.registerTaskDefinitions",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "registerTaskDefinitions",
|
||||
"description": [
|
||||
"\nMethod for allowing consumers to register task definitions into the system."
|
||||
],
|
||||
"signature": [
|
||||
"(taskDefinitions: Record<string, ",
|
||||
{
|
||||
"pluginId": "taskManager",
|
||||
"scope": "server",
|
||||
"docId": "kibTaskManagerPluginApi",
|
||||
"section": "def-server.TaskRegisterDefinition",
|
||||
"text": "TaskRegisterDefinition"
|
||||
},
|
||||
">) => void"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "taskManager",
|
||||
"id": "def-server.TaskManagerSetupContract.registerTaskDefinitions.$1",
|
||||
"type": "Object",
|
||||
"tags": [],
|
||||
"label": "taskDefinitions",
|
||||
"description": [
|
||||
"- The Kibana task definitions dictionary"
|
||||
],
|
||||
"signature": [
|
||||
"Record<string, ",
|
||||
{
|
||||
"pluginId": "taskManager",
|
||||
"scope": "server",
|
||||
"docId": "kibTaskManagerPluginApi",
|
||||
"section": "def-server.TaskRegisterDefinition",
|
||||
"text": "TaskRegisterDefinition"
|
||||
},
|
||||
">"
|
||||
],
|
||||
"path": "x-pack/plugins/task_manager/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": []
|
||||
}
|
||||
],
|
||||
"lifecycle": "setup",
|
||||
"initialIsOpen": true
|
||||
},
|
||||
|
|
|
@ -18,7 +18,7 @@ Contact [Kibana Alerting](https://github.com/orgs/elastic/teams/kibana-alerting-
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 53 | 0 | 26 | 8 |
|
||||
| 70 | 0 | 32 | 7 |
|
||||
|
||||
## Server
|
||||
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
"signature": [
|
||||
"Pick<",
|
||||
"KibanaClient",
|
||||
", \"get\" | \"delete\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"search\" | \"security\" | \"transform\" | \"eql\" | \"helpers\" | \"emit\" | \"on\" | \"once\" | \"off\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"count\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"monitoring\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ",
|
||||
", \"get\" | \"delete\" | \"monitoring\" | \"security\" | \"create\" | \"index\" | \"update\" | \"closePointInTime\" | \"search\" | \"transform\" | \"eql\" | \"helpers\" | \"emit\" | \"on\" | \"once\" | \"off\" | \"asyncSearch\" | \"autoscaling\" | \"bulk\" | \"cat\" | \"ccr\" | \"clearScroll\" | \"cluster\" | \"count\" | \"danglingIndices\" | \"dataFrameTransformDeprecated\" | \"deleteByQuery\" | \"deleteByQueryRethrottle\" | \"deleteScript\" | \"enrich\" | \"exists\" | \"existsSource\" | \"explain\" | \"features\" | \"fieldCaps\" | \"fleet\" | \"getScript\" | \"getScriptContext\" | \"getScriptLanguages\" | \"getSource\" | \"graph\" | \"ilm\" | \"indices\" | \"info\" | \"ingest\" | \"license\" | \"logstash\" | \"mget\" | \"migration\" | \"ml\" | \"msearch\" | \"msearchTemplate\" | \"mtermvectors\" | \"nodes\" | \"openPointInTime\" | \"ping\" | \"putScript\" | \"rankEval\" | \"reindex\" | \"reindexRethrottle\" | \"renderSearchTemplate\" | \"rollup\" | \"scriptsPainlessExecute\" | \"scroll\" | \"searchShards\" | \"searchTemplate\" | \"searchableSnapshots\" | \"shutdown\" | \"slm\" | \"snapshot\" | \"sql\" | \"ssl\" | \"tasks\" | \"termsEnum\" | \"termvectors\" | \"textStructure\" | \"updateByQuery\" | \"updateByQueryRethrottle\" | \"watcher\" | \"xpack\"> & { transport: { request(params: ",
|
||||
"TransportRequestParams",
|
||||
", options?: ",
|
||||
"TransportRequestOptions",
|
||||
|
|
|
@ -1658,9 +1658,9 @@
|
|||
},
|
||||
"; description?: string | undefined; example?: string | undefined; format?: string | undefined; linkField?: string | undefined; placeholder?: string | undefined; subType?: ",
|
||||
"IFieldSubType",
|
||||
" | undefined; type?: string | undefined; })[]; filters?: ",
|
||||
" | undefined; type?: string | undefined; })[]; id: string; title: string; filters?: ",
|
||||
"Filter",
|
||||
"[] | undefined; title: string; id: string; sort: ",
|
||||
"[] | undefined; sort: ",
|
||||
{
|
||||
"pluginId": "timelines",
|
||||
"scope": "common",
|
||||
|
@ -9683,7 +9683,7 @@
|
|||
"label": "currentStatus",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"open\" | \"closed\" | \"in-progress\" | \"acknowledged\" | undefined"
|
||||
"\"open\" | \"in-progress\" | \"acknowledged\" | \"closed\" | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts",
|
||||
"deprecated": false
|
||||
|
@ -12367,7 +12367,7 @@
|
|||
"label": "AlertStatus",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"open\" | \"closed\" | \"in-progress\" | \"acknowledged\""
|
||||
"\"open\" | \"in-progress\" | \"acknowledged\" | \"closed\""
|
||||
],
|
||||
"path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts",
|
||||
"deprecated": false,
|
||||
|
@ -12381,7 +12381,7 @@
|
|||
"label": "AlertWorkflowStatus",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"open\" | \"closed\" | \"acknowledged\""
|
||||
"\"open\" | \"acknowledged\" | \"closed\""
|
||||
],
|
||||
"path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts",
|
||||
"deprecated": false,
|
||||
|
@ -13563,7 +13563,7 @@
|
|||
"label": "status",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"open\" | \"closed\" | \"in-progress\" | \"acknowledged\""
|
||||
"\"open\" | \"in-progress\" | \"acknowledged\" | \"closed\""
|
||||
],
|
||||
"path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts",
|
||||
"deprecated": false
|
||||
|
@ -13628,7 +13628,7 @@
|
|||
"label": "status",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"open\" | \"closed\" | \"in-progress\" | \"acknowledged\""
|
||||
"\"open\" | \"in-progress\" | \"acknowledged\" | \"closed\""
|
||||
],
|
||||
"path": "x-pack/plugins/timelines/common/types/timeline/actions/index.ts",
|
||||
"deprecated": false
|
||||
|
|
|
@ -996,7 +996,7 @@
|
|||
"section": "def-common.VisParams",
|
||||
"text": "VisParams"
|
||||
},
|
||||
">, \"type\" | \"description\" | \"title\" | \"id\" | \"params\" | \"uiState\"> & Pick<{ data: Partial<",
|
||||
">, \"type\" | \"id\" | \"title\" | \"description\" | \"params\" | \"uiState\"> & Pick<{ data: Partial<",
|
||||
{
|
||||
"pluginId": "visualizations",
|
||||
"scope": "public",
|
||||
|
@ -1012,7 +1012,7 @@
|
|||
"section": "def-public.SerializedVisData",
|
||||
"text": "SerializedVisData"
|
||||
},
|
||||
">; }, never>, \"type\" | \"data\" | \"description\" | \"title\" | \"id\" | \"params\" | \"uiState\">) => Promise<void>"
|
||||
">; }, never>, \"type\" | \"data\" | \"id\" | \"title\" | \"description\" | \"params\" | \"uiState\">) => Promise<void>"
|
||||
],
|
||||
"path": "src/plugins/visualizations/public/vis.ts",
|
||||
"deprecated": false,
|
||||
|
@ -1041,7 +1041,7 @@
|
|||
"section": "def-common.VisParams",
|
||||
"text": "VisParams"
|
||||
},
|
||||
">, \"type\" | \"description\" | \"title\" | \"id\" | \"params\" | \"uiState\"> & Pick<{ data: Partial<",
|
||||
">, \"type\" | \"id\" | \"title\" | \"description\" | \"params\" | \"uiState\"> & Pick<{ data: Partial<",
|
||||
{
|
||||
"pluginId": "visualizations",
|
||||
"scope": "public",
|
||||
|
@ -1057,7 +1057,7 @@
|
|||
"section": "def-public.SerializedVisData",
|
||||
"text": "SerializedVisData"
|
||||
},
|
||||
">; }, never>, \"type\" | \"data\" | \"description\" | \"title\" | \"id\" | \"params\" | \"uiState\">"
|
||||
">; }, never>, \"type\" | \"data\" | \"id\" | \"title\" | \"description\" | \"params\" | \"uiState\">"
|
||||
],
|
||||
"path": "src/plugins/visualizations/public/vis.ts",
|
||||
"deprecated": false,
|
||||
|
|
|
@ -12,15 +12,18 @@ import { configSchema, TaskManagerConfig, MAX_WORKERS_LIMIT } from './config';
|
|||
|
||||
export const plugin = (initContext: PluginInitializerContext) => new TaskManagerPlugin(initContext);
|
||||
|
||||
export {
|
||||
export type {
|
||||
TaskInstance,
|
||||
ConcreteTaskInstance,
|
||||
EphemeralTask,
|
||||
TaskRunCreatorFunction,
|
||||
TaskStatus,
|
||||
RunContext,
|
||||
} from './task';
|
||||
|
||||
export { TaskStatus } from './task';
|
||||
|
||||
export type { TaskRegisterDefinition, TaskDefinitionRegistry } from './task_type_dictionary';
|
||||
|
||||
export { asInterval } from './lib/intervals';
|
||||
export {
|
||||
isUnrecoverableError,
|
||||
|
@ -30,7 +33,7 @@ export {
|
|||
export { RunNowResult } from './task_scheduling';
|
||||
export { getOldestIdleActionTask } from './queries/oldest_idle_action_task';
|
||||
|
||||
export {
|
||||
export type {
|
||||
TaskManagerPlugin as TaskManager,
|
||||
TaskManagerSetupContract,
|
||||
TaskManagerStartContract,
|
||||
|
|
|
@ -32,13 +32,18 @@ import { EphemeralTaskLifecycle } from './ephemeral_task_lifecycle';
|
|||
import { EphemeralTask } from './task';
|
||||
import { registerTaskManagerUsageCollector } from './usage';
|
||||
|
||||
export type TaskManagerSetupContract = {
|
||||
export interface TaskManagerSetupContract {
|
||||
/**
|
||||
* @deprecated
|
||||
*/
|
||||
index: string;
|
||||
addMiddleware: (middleware: Middleware) => void;
|
||||
} & Pick<TaskTypeDictionary, 'registerTaskDefinitions'>;
|
||||
/**
|
||||
* Method for allowing consumers to register task definitions into the system.
|
||||
* @param taskDefinitions - The Kibana task definitions dictionary
|
||||
*/
|
||||
registerTaskDefinitions: (taskDefinitions: TaskDefinitionRegistry) => void;
|
||||
}
|
||||
|
||||
export type TaskManagerStartContract = Pick<
|
||||
TaskScheduling,
|
||||
|
|
|
@ -5,13 +5,63 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { TaskDefinition, taskDefinitionSchema } from './task';
|
||||
import { TaskDefinition, taskDefinitionSchema, TaskRunCreatorFunction } from './task';
|
||||
import { Logger } from '../../../../src/core/server';
|
||||
|
||||
export type TaskDefinitionRegistry = Record<
|
||||
string,
|
||||
Omit<TaskDefinition, 'type' | 'timeout'> & Pick<Partial<TaskDefinition>, 'timeout'>
|
||||
>;
|
||||
/**
|
||||
* Defines a task which can be scheduled and run by the Kibana
|
||||
* task manager.
|
||||
*/
|
||||
export interface TaskRegisterDefinition {
|
||||
/**
|
||||
* A brief, human-friendly title for this task.
|
||||
*/
|
||||
title?: string;
|
||||
/**
|
||||
* How long, in minutes or seconds, the system should wait for the task to complete
|
||||
* before it is considered to be timed out. (e.g. '5m', the default). If
|
||||
* the task takes longer than this, Kibana will send it a kill command and
|
||||
* the task will be re-attempted.
|
||||
*/
|
||||
timeout?: string;
|
||||
/**
|
||||
* An optional more detailed description of what this task does.
|
||||
*/
|
||||
description?: string;
|
||||
/**
|
||||
* Function that customizes how the task should behave when the task fails. This
|
||||
* function can return `true`, `false` or a Date. True will tell task manager
|
||||
* to retry using default delay logic. False will tell task manager to stop retrying
|
||||
* this task. Date will suggest when to the task manager the task should retry.
|
||||
* This function isn't used for recurring tasks, those retry as per their configured recurring schedule.
|
||||
*/
|
||||
getRetry?: (attempts: number, error: object) => boolean | Date;
|
||||
|
||||
/**
|
||||
* Creates an object that has a run function which performs the task's work,
|
||||
* and an optional cancel function which cancels the task.
|
||||
*/
|
||||
createTaskRunner: TaskRunCreatorFunction;
|
||||
|
||||
/**
|
||||
* Up to how many times the task should retry when it fails to run. This will
|
||||
* default to the global variable. The default value, if not specified, is 1.
|
||||
*/
|
||||
maxAttempts?: number;
|
||||
/**
|
||||
* The maximum number tasks of this type that can be run concurrently per Kibana instance.
|
||||
* Setting this value will force Task Manager to poll for this task type separately from other task types
|
||||
* which can add significant load to the ES cluster, so please use this configuration only when absolutely necessary.
|
||||
* The default value, if not given, is 0.
|
||||
*/
|
||||
maxConcurrency?: number;
|
||||
}
|
||||
|
||||
/**
|
||||
* A mapping of task type id to the task definition.
|
||||
*/
|
||||
export type TaskDefinitionRegistry = Record<string, TaskRegisterDefinition>;
|
||||
|
||||
export class TaskTypeDictionary {
|
||||
private definitions = new Map<string, TaskDefinition>();
|
||||
private logger: Logger;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue