Merge remote-tracking branch 'upstream/main' into no-src-folder-by-default-on-pkgs-part2

This commit is contained in:
Tiago Costa 2022-08-14 04:10:04 +01:00
commit 4905740390
No known key found for this signature in database
GPG key ID: BAECC2D04A04C6EA
977 changed files with 17050 additions and 8269 deletions

View file

@ -122,7 +122,11 @@ const uploadPipeline = (pipelineContent: string | object) => {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/ux_plugin_e2e.yml'));
}
if (GITHUB_PR_LABELS.includes('ci:deploy-cloud')) {
if (
GITHUB_PR_LABELS.includes('ci:deploy-cloud') ||
GITHUB_PR_LABELS.includes('ci:cloud-deploy') ||
GITHUB_PR_LABELS.includes('ci:cloud-redeploy')
) {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/deploy_cloud.yml'));
}

View file

@ -9,6 +9,7 @@ source .buildkite/scripts/common/util.sh
export KBN_NP_PLUGINS_BUILT=true
VERSION="$(jq -r '.version' package.json)-SNAPSHOT"
ECCTL_LOGS=$(mktemp --suffix ".json")
echo "--- Download Kibana Distribution"
@ -46,9 +47,19 @@ fi
docker logout docker.elastic.co
if is_pr_with_label "ci:cloud-redeploy"; then
echo "--- Shutdown Previous Deployment"
CLOUD_DEPLOYMENT_ID=$(ecctl deployment list --output json | jq -r '.deployments[] | select(.name == "'$CLOUD_DEPLOYMENT_NAME'") | .id')
if [ -z "${CLOUD_DEPLOYMENT_ID}" ]; then
echo "No deployment to remove"
else
echo "Shutting down previous deployment..."
ecctl deployment shutdown "$CLOUD_DEPLOYMENT_ID" --force --track --output json > "$ECCTL_LOGS"
fi
fi
echo "--- Create Deployment"
CLOUD_DEPLOYMENT_ID=$(ecctl deployment list --output json | jq -r '.deployments[] | select(.name == "'$CLOUD_DEPLOYMENT_NAME'") | .id')
JSON_FILE=$(mktemp --suffix ".json")
if [ -z "${CLOUD_DEPLOYMENT_ID}" ]; then
jq '
.resources.kibana[0].plan.kibana.docker_image = "'$KIBANA_CLOUD_IMAGE'" |
@ -60,45 +71,49 @@ if [ -z "${CLOUD_DEPLOYMENT_ID}" ]; then
.resources.integrations_server[0].plan.integrations_server.version = "'$VERSION'"
' .buildkite/scripts/steps/cloud/deploy.json > /tmp/deploy.json
echo -n "Creating deployment..."
ecctl deployment create --track --output json --file /tmp/deploy.json > "$JSON_FILE"
echo "done"
echo "Creating deployment..."
ecctl deployment create --track --output json --file /tmp/deploy.json > "$ECCTL_LOGS"
CLOUD_DEPLOYMENT_USERNAME=$(jq --slurp '.[]|select(.resources).resources[] | select(.credentials).credentials.username' "$JSON_FILE")
CLOUD_DEPLOYMENT_PASSWORD=$(jq --slurp '.[]|select(.resources).resources[] | select(.credentials).credentials.password' "$JSON_FILE")
CLOUD_DEPLOYMENT_ID=$(jq -r --slurp '.[0].id' "$JSON_FILE")
CLOUD_DEPLOYMENT_STATUS_MESSAGES=$(jq --slurp '[.[]|select(.resources == null)]' "$JSON_FILE")
CLOUD_DEPLOYMENT_USERNAME=$(jq --slurp '.[]|select(.resources).resources[] | select(.credentials).credentials.username' "$ECCTL_LOGS")
CLOUD_DEPLOYMENT_PASSWORD=$(jq --slurp '.[]|select(.resources).resources[] | select(.credentials).credentials.password' "$ECCTL_LOGS")
CLOUD_DEPLOYMENT_ID=$(jq -r --slurp '.[0].id' "$ECCTL_LOGS")
CLOUD_DEPLOYMENT_STATUS_MESSAGES=$(jq --slurp '[.[]|select(.resources == null)]' "$ECCTL_LOGS")
echo -n "Writing to vault..."
echo "Writing to vault..."
VAULT_ROLE_ID="$(retry 5 15 gcloud secrets versions access latest --secret=kibana-buildkite-vault-role-id)"
VAULT_SECRET_ID="$(retry 5 15 gcloud secrets versions access latest --secret=kibana-buildkite-vault-secret-id)"
VAULT_TOKEN=$(retry 5 30 vault write -field=token auth/approle/login role_id="$VAULT_ROLE_ID" secret_id="$VAULT_SECRET_ID")
retry 5 30 vault login -no-print "$VAULT_TOKEN"
retry 5 5 vault write "secret/kibana-issues/dev/cloud-deploy/$CLOUD_DEPLOYMENT_NAME" username="$CLOUD_DEPLOYMENT_USERNAME" password="$CLOUD_DEPLOYMENT_PASSWORD"
echo -n "Enabling Stack Monitoring..."
echo "Enabling Stack Monitoring..."
jq '
.settings.observability.metrics.destination.deployment_id = "'$CLOUD_DEPLOYMENT_ID'" |
.settings.observability.logging.destination.deployment_id = "'$CLOUD_DEPLOYMENT_ID'"
' .buildkite/scripts/steps/cloud/stack_monitoring.json > /tmp/stack_monitoring.json
ecctl deployment update "$CLOUD_DEPLOYMENT_ID" --track --output json --file /tmp/stack_monitoring.json > "$JSON_FILE"
echo "done"
echo -n "Enabling verbose logging..."
# After a deployment is created, a new Kibana plan is automatically added to update settings
# and restart Kibana. Polling for a plan state isn't especially reliable because it flips
# between empty and queued, and then empty again depending on how quickly setup is run in cloud.
# We want to enable monitoring after the automatic plan has run, if not we get an error:
# * deployments.resource_plan_state_error: Kibana resource [main-kibana] has a plan still pending, cancel that or wait for it to complete (settings.observability.plan)
# This adds a sleep and retry to see if we can make this step more reliable
sleep 120
retry 5 60 ecctl deployment update "$CLOUD_DEPLOYMENT_ID" --track --output json --file /tmp/stack_monitoring.json > "$ECCTL_LOGS"
echo "Enabling verbose logging..."
ecctl deployment show "$CLOUD_DEPLOYMENT_ID" --generate-update-payload | jq '
.resources.kibana[0].plan.kibana.user_settings_yaml = "logging.root.level: all"
' > /tmp/verbose_logging.json
ecctl deployment update "$CLOUD_DEPLOYMENT_ID" --track --output json --file /tmp/verbose_logging.json > "$JSON_FILE"
echo "done"
ecctl deployment update "$CLOUD_DEPLOYMENT_ID" --track --output json --file /tmp/verbose_logging.json > "$ECCTL_LOGS"
else
ecctl deployment show "$CLOUD_DEPLOYMENT_ID" --generate-update-payload | jq '
.resources.kibana[0].plan.kibana.docker_image = "'$KIBANA_CLOUD_IMAGE'" |
(.. | select(.version? != null).version) = "'$VERSION'"
' > /tmp/deploy.json
ecctl deployment show "$CLOUD_DEPLOYMENT_ID" --generate-update-payload | jq '
.resources.kibana[0].plan.kibana.docker_image = "'$KIBANA_CLOUD_IMAGE'" |
(.. | select(.version? != null).version) = "'$VERSION'"
' > /tmp/deploy.json
echo -n "Updating deployment..."
ecctl deployment update "$CLOUD_DEPLOYMENT_ID" --track --output json --file /tmp/deploy.json > "$JSON_FILE"
echo "done"
echo "Updating deployment..."
ecctl deployment update "$CLOUD_DEPLOYMENT_ID" --track --output json --file /tmp/deploy.json > "$ECCTL_LOGS"
fi
CLOUD_DEPLOYMENT_KIBANA_URL=$(ecctl deployment show "$CLOUD_DEPLOYMENT_ID" | jq -r '.resources.kibana[0].info.metadata.aliased_url')

View file

@ -31,9 +31,13 @@ for (const deployment of prDeployments) {
if (pullRequest.state !== 'OPEN') {
console.log(`Pull Request #${prNumber} is no longer open, will delete associated deployment`);
deploymentsToPurge.push(deployment);
} else if (!pullRequest.labels.filter((label: any) => label.name === 'ci:deploy-cloud')) {
} else if (
!pullRequest.labels.filter((label: any) =>
/^ci:(deploy-cloud|cloud-deploy|cloud-redeploy)$/.test(label.name)
)
) {
console.log(
`Pull Request #${prNumber} no longer has the ci:deploy-cloud label, will delete associated deployment`
`Pull Request #${prNumber} no longer has the a cloud deployment label, will delete associated deployment`
);
deploymentsToPurge.push(deployment);
} else if (lastCommitTimestamp < NOW - 60 * 60 * 24 * 7) {

View file

@ -178,6 +178,7 @@ const DEV_PATTERNS = [
'src/dev/**/*',
'x-pack/{dev-tools,tasks,scripts,test,build_chromium}/**/*',
'x-pack/plugins/*/server/scripts/**/*',
'x-pack/plugins/fleet/cypress',
];
/** Restricted imports with suggested alternatives */
@ -1341,7 +1342,7 @@ module.exports = {
* Discover overrides
*/
{
files: ['src/plugins/discover/**/*.{ts,tsx}'],
files: ['src/plugins/discover/**/*.{ts,tsx}', 'src/plugins/saved_search/**/*.{ts,tsx}'],
rules: {
'@typescript-eslint/no-explicit-any': 'error',
'@typescript-eslint/ban-ts-comment': [

1
.github/CODEOWNERS vendored
View file

@ -10,6 +10,7 @@
# Data Discovery
/src/plugins/discover/ @elastic/kibana-data-discovery
/src/plugins/saved_search/ @elastic/kibana-data-discovery
/x-pack/plugins/discover_enhanced/ @elastic/kibana-data-discovery
/test/functional/apps/discover/ @elastic/kibana-data-discovery
/x-pack/plugins/graph/ @elastic/kibana-data-discovery

View file

@ -18,6 +18,7 @@
"dataViews": "src/plugins/data_views",
"devTools": "src/plugins/dev_tools",
"discover": "src/plugins/discover",
"savedSearch": "src/plugins/saved_search",
"embeddableApi": "src/plugins/embeddable",
"embeddableExamples": "examples/embeddable_examples",
"esQuery": "packages/kbn-es-query/src",

View file

@ -1814,7 +1814,9 @@
"ActionsConfigurationUtilities",
") => Promise<{ accessToken: string | null; }>; enqueueExecution: (options: ",
"ExecuteOptions",
") => Promise<void>; ephemeralEnqueuedExecution: (options: ",
") => Promise<void>; bulkEnqueueExecution: (options: ",
"ExecuteOptions",
"[]) => Promise<void>; ephemeralEnqueuedExecution: (options: ",
"ExecuteOptions",
") => Promise<",
{

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/actions
title: "actions"
image: https://source.unsplash.com/400x175/?github
description: API docs for the actions plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions']
---
import actionsObj from './actions.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/advancedSettings
title: "advancedSettings"
image: https://source.unsplash.com/400x175/?github
description: API docs for the advancedSettings plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings']
---
import advancedSettingsObj from './advanced_settings.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/aiops
title: "aiops"
image: https://source.unsplash.com/400x175/?github
description: API docs for the aiops plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiops']
---
import aiopsObj from './aiops.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/alerting
title: "alerting"
image: https://source.unsplash.com/400x175/?github
description: API docs for the alerting plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'alerting']
---
import alertingObj from './alerting.devdocs.json';

View file

@ -1242,7 +1242,11 @@
"StringC",
"; transactionType: ",
"StringC",
"; }>, ",
"; durationMin: ",
"Type",
"<number, unknown, unknown>; durationMax: ",
"Type",
"<number, unknown, unknown>; }>, ",
"TypeC",
"<{ environment: ",
"UnionC",
@ -1300,7 +1304,11 @@
"StringC",
"; transactionType: ",
"StringC",
"; }>, ",
"; durationMin: ",
"Type",
"<number, unknown, unknown>; durationMax: ",
"Type",
"<number, unknown, unknown>; }>, ",
"TypeC",
"<{ environment: ",
"UnionC",
@ -4918,7 +4926,11 @@
"StringC",
", ",
"Type",
"<number, unknown, unknown>]>; }>>; }>, ",
"<number, unknown, unknown>]>; }>>; durationMin: ",
"Type",
"<number, unknown, unknown>; durationMax: ",
"Type",
"<number, unknown, unknown>; }>, ",
"TypeC",
"<{ environment: ",
"UnionC",

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/apm
title: "apm"
image: https://source.unsplash.com/400x175/?github
description: API docs for the apm plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm']
---
import apmObj from './apm.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/banners
title: "banners"
image: https://source.unsplash.com/400x175/?github
description: API docs for the banners plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'banners']
---
import bannersObj from './banners.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/bfetch
title: "bfetch"
image: https://source.unsplash.com/400x175/?github
description: API docs for the bfetch plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'bfetch']
---
import bfetchObj from './bfetch.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/canvas
title: "canvas"
image: https://source.unsplash.com/400x175/?github
description: API docs for the canvas plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'canvas']
---
import canvasObj from './canvas.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cases
title: "cases"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cases plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cases']
---
import casesObj from './cases.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/charts
title: "charts"
image: https://source.unsplash.com/400x175/?github
description: API docs for the charts plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'charts']
---
import chartsObj from './charts.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloud
title: "cloud"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cloud plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloud']
---
import cloudObj from './cloud.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudSecurityPosture
title: "cloudSecurityPosture"
image: https://source.unsplash.com/400x175/?github
description: API docs for the cloudSecurityPosture plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudSecurityPosture']
---
import cloudSecurityPostureObj from './cloud_security_posture.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/console
title: "console"
image: https://source.unsplash.com/400x175/?github
description: API docs for the console plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'console']
---
import consoleObj from './console.devdocs.json';

View file

@ -1047,7 +1047,7 @@
},
">"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false,
"children": [
{
@ -1060,7 +1060,7 @@
"signature": [
"\"optionsListControl\""
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false
},
{
@ -1070,7 +1070,7 @@
"tags": [],
"label": "deferEmbeddableLoad",
"description": [],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false
},
{
@ -1083,7 +1083,7 @@
"signature": [
"any"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false,
"children": [
{
@ -1102,7 +1102,7 @@
"text": "ReduxEmbeddablePackage"
}
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false,
"isRequired": true
},
@ -1122,7 +1122,7 @@
"text": "OptionsListEmbeddableInput"
}
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false,
"isRequired": true
},
@ -1142,7 +1142,7 @@
"text": "ControlOutput"
}
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false,
"isRequired": true
},
@ -1179,7 +1179,7 @@
},
"> | undefined"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false,
"isRequired": false
}
@ -1196,7 +1196,7 @@
"signature": [
"() => void"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false,
"children": [],
"returnComment": []
@ -1211,7 +1211,7 @@
"signature": [
"() => void"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false,
"children": [],
"returnComment": []
@ -1226,7 +1226,7 @@
"signature": [
"(node: HTMLElement) => void"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false,
"children": [
{
@ -1239,7 +1239,7 @@
"signature": [
"HTMLElement"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable.tsx",
"deprecated": false,
"isRequired": true
}
@ -1332,7 +1332,7 @@
},
">"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"children": [
{
@ -1342,7 +1342,7 @@
"tags": [],
"label": "type",
"description": [],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false
},
{
@ -1355,7 +1355,7 @@
"signature": [
"() => boolean"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"children": [],
"returnComment": []
@ -1370,7 +1370,7 @@
"signature": [
"any"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"children": [],
"returnComment": []
@ -1425,7 +1425,7 @@
},
">"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"children": [
{
@ -1444,7 +1444,7 @@
"text": "OptionsListEmbeddableInput"
}
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"isRequired": true
},
@ -1481,7 +1481,7 @@
},
"> | undefined"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"isRequired": false
}
@ -1538,7 +1538,7 @@
},
">"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"children": [
{
@ -1559,7 +1559,7 @@
},
">"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"isRequired": true
},
@ -1596,7 +1596,7 @@
},
"> | undefined"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"isRequired": false
}
@ -1615,7 +1615,7 @@
"DataControlField",
") => void"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"children": [
{
@ -1628,7 +1628,7 @@
"signature": [
"DataControlField"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"isRequired": true
}
@ -1661,7 +1661,7 @@
},
">) => JSX.Element"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"returnComment": [],
"children": [
@ -1690,7 +1690,7 @@
},
">"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_editor_options.tsx",
"path": "src/plugins/controls/public/options_list/components/options_list_editor_options.tsx",
"deprecated": false
}
]
@ -1705,7 +1705,7 @@
"signature": [
"() => Promise<boolean>"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"children": [],
"returnComment": []
@ -1720,7 +1720,7 @@
"signature": [
"() => string"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"children": [],
"returnComment": []
@ -1735,7 +1735,7 @@
"signature": [
"() => string"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"children": [],
"returnComment": []
@ -1750,7 +1750,7 @@
"signature": [
"() => string"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"children": [],
"returnComment": []
@ -1782,7 +1782,7 @@
"text": "EmbeddableStateWithType"
}
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"returnComment": [],
"children": [
@ -1843,7 +1843,7 @@
"SavedObjectReference",
"[]; }"
],
"path": "src/plugins/controls/public/control_types/options_list/options_list_embeddable_factory.tsx",
"path": "src/plugins/controls/public/options_list/embeddable/options_list_embeddable_factory.tsx",
"deprecated": false,
"returnComment": [],
"children": [
@ -3153,7 +3153,7 @@
" extends ",
"DataControlInput"
],
"path": "src/plugins/controls/common/control_types/options_list/types.ts",
"path": "src/plugins/controls/common/options_list/types.ts",
"deprecated": false,
"children": [
{
@ -3166,7 +3166,7 @@
"signature": [
"string[] | undefined"
],
"path": "src/plugins/controls/common/control_types/options_list/types.ts",
"path": "src/plugins/controls/common/options_list/types.ts",
"deprecated": false
},
{
@ -3179,7 +3179,7 @@
"signature": [
"boolean | undefined"
],
"path": "src/plugins/controls/common/control_types/options_list/types.ts",
"path": "src/plugins/controls/common/options_list/types.ts",
"deprecated": false
},
{
@ -3192,7 +3192,7 @@
"signature": [
"boolean | undefined"
],
"path": "src/plugins/controls/common/control_types/options_list/types.ts",
"path": "src/plugins/controls/common/options_list/types.ts",
"deprecated": false
}
],
@ -3515,7 +3515,7 @@
"signature": [
"\"optionsListControl\""
],
"path": "src/plugins/controls/common/control_types/options_list/types.ts",
"path": "src/plugins/controls/common/options_list/types.ts",
"deprecated": false,
"initialIsOpen": false
},
@ -4200,7 +4200,7 @@
" extends ",
"DataControlInput"
],
"path": "src/plugins/controls/common/control_types/options_list/types.ts",
"path": "src/plugins/controls/common/options_list/types.ts",
"deprecated": false,
"children": [
{
@ -4213,7 +4213,7 @@
"signature": [
"string[] | undefined"
],
"path": "src/plugins/controls/common/control_types/options_list/types.ts",
"path": "src/plugins/controls/common/options_list/types.ts",
"deprecated": false
},
{
@ -4226,7 +4226,7 @@
"signature": [
"boolean | undefined"
],
"path": "src/plugins/controls/common/control_types/options_list/types.ts",
"path": "src/plugins/controls/common/options_list/types.ts",
"deprecated": false
},
{
@ -4239,7 +4239,7 @@
"signature": [
"boolean | undefined"
],
"path": "src/plugins/controls/common/control_types/options_list/types.ts",
"path": "src/plugins/controls/common/options_list/types.ts",
"deprecated": false
}
],
@ -4351,7 +4351,7 @@
"signature": [
"\"optionsListControl\""
],
"path": "src/plugins/controls/common/control_types/options_list/types.ts",
"path": "src/plugins/controls/common/options_list/types.ts",
"deprecated": false,
"initialIsOpen": false
},

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/controls
title: "controls"
image: https://source.unsplash.com/400x175/?github
description: API docs for the controls plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'controls']
---
import controlsObj from './controls.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/core
title: "core"
image: https://source.unsplash.com/400x175/?github
description: API docs for the core plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'core']
---
import coreObj from './core.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/core-application
title: "core.application"
image: https://source.unsplash.com/400x175/?github
description: API docs for the core.application plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'core.application']
---
import coreApplicationObj from './core_application.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/core-chrome
title: "core.chrome"
image: https://source.unsplash.com/400x175/?github
description: API docs for the core.chrome plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'core.chrome']
---
import coreChromeObj from './core_chrome.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/core-savedObjects
title: "core.savedObjects"
image: https://source.unsplash.com/400x175/?github
description: API docs for the core.savedObjects plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'core.savedObjects']
---
import coreSavedObjectsObj from './core_saved_objects.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/customIntegrations
title: "customIntegrations"
image: https://source.unsplash.com/400x175/?github
description: API docs for the customIntegrations plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'customIntegrations']
---
import customIntegrationsObj from './custom_integrations.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dashboard
title: "dashboard"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dashboard plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboard']
---
import dashboardObj from './dashboard.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dashboardEnhanced
title: "dashboardEnhanced"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dashboardEnhanced plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboardEnhanced']
---
import dashboardEnhancedObj from './dashboard_enhanced.devdocs.json';

View file

@ -12590,7 +12590,7 @@
"tags": [],
"label": "getAllRuntimeFields",
"description": [
"\nGet all runtime field definitions."
"\nGet all runtime field definitions.\nNOTE: this does not strip out runtime fields that match mapped field names"
],
"signature": [
"() => Record<string, ",
@ -18703,7 +18703,7 @@
"tags": [],
"label": "getAllRuntimeFields",
"description": [
"\nGet all runtime field definitions."
"\nGet all runtime field definitions.\nNOTE: this does not strip out runtime fields that match mapped field names"
],
"signature": [
"() => Record<string, ",

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data
title: "data"
image: https://source.unsplash.com/400x175/?github
description: API docs for the data plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data']
---
import dataObj from './data.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data-query
title: "data.query"
image: https://source.unsplash.com/400x175/?github
description: API docs for the data.query plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.query']
---
import dataQueryObj from './data_query.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/data-search
title: "data.search"
image: https://source.unsplash.com/400x175/?github
description: API docs for the data.search plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.search']
---
import dataSearchObj from './data_search.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewEditor
title: "dataViewEditor"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dataViewEditor plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewEditor']
---
import dataViewEditorObj from './data_view_editor.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewFieldEditor
title: "dataViewFieldEditor"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dataViewFieldEditor plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewFieldEditor']
---
import dataViewFieldEditorObj from './data_view_field_editor.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViewManagement
title: "dataViewManagement"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dataViewManagement plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewManagement']
---
import dataViewManagementObj from './data_view_management.devdocs.json';

View file

@ -1046,7 +1046,7 @@
"tags": [],
"label": "getAllRuntimeFields",
"description": [
"\nGet all runtime field definitions."
"\nGet all runtime field definitions.\nNOTE: this does not strip out runtime fields that match mapped field names"
],
"signature": [
"() => Record<string, ",
@ -7250,7 +7250,7 @@
"tags": [],
"label": "getAllRuntimeFields",
"description": [
"\nGet all runtime field definitions."
"\nGet all runtime field definitions.\nNOTE: this does not strip out runtime fields that match mapped field names"
],
"signature": [
"() => Record<string, ",
@ -12988,7 +12988,7 @@
"tags": [],
"label": "getAllRuntimeFields",
"description": [
"\nGet all runtime field definitions."
"\nGet all runtime field definitions.\nNOTE: this does not strip out runtime fields that match mapped field names"
],
"signature": [
"() => Record<string, ",

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataViews
title: "dataViews"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dataViews plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViews']
---
import dataViewsObj from './data_views.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/dataVisualizer
title: "dataVisualizer"
image: https://source.unsplash.com/400x175/?github
description: API docs for the dataVisualizer plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataVisualizer']
---
import dataVisualizerObj from './data_visualizer.devdocs.json';

View file

@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsByApi
slug: /kibana-dev-docs/api-meta/deprecated-api-list-by-api
title: Deprecated API usage by API
description: A list of deprecated APIs, which plugins are still referencing them, and when they need to be removed by.
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana']
---
@ -46,6 +46,9 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| <DocLink id="kibDataPluginApi" section="def-server.DataView.getScriptedFields" text="getScriptedFields"/> | dataViews, dataViewManagement | - |
| <DocLink id="kibDataViewsPluginApi" section="def-public.DataView.removeScriptedField" text="removeScriptedField"/> | dataViewManagement | - |
| <DocLink id="kibDataViewsPluginApi" section="def-public.DataView.getScriptedFields" text="getScriptedFields"/> | dataViewManagement | - |
| <DocLink id="kibDiscoverPluginApi" section="def-public.DiscoverAppLocatorParams.indexPatternId" text="indexPatternId"/> | lens, observability, dataVisualizer, fleet, cloudSecurityPosture, discoverEnhanced, osquery, synthetics | - |
| <DocLink id="kibKibanaReactPluginApi" section="def-public.RedirectAppLinks" text="RedirectAppLinks"/> | esUiShared, home, data, spaces, fleet, visualizations, lens, observability, ml, apm, indexLifecycleManagement, synthetics, upgradeAssistant, ux, savedObjectsManagement, kibanaOverview | - |
| <DocLink id="kibKibanaReactPluginApi" section="def-public.KibanaPageTemplate" text="KibanaPageTemplate"/> | management, spaces, ml, canvas, enterpriseSearch, osquery, home | - |
| <DocLink id="kibExpressionsPluginApi" section="def-public.ExpressionFunctionDefinition.context" text="context"/> | canvas, visTypeXy | - |
| <DocLink id="kibExpressionsPluginApi" section="def-public.ExpressionsServiceSetup.getFunction" text="getFunction"/> | canvas | - |
| <DocLink id="kibExpressionsPluginApi" section="def-public.ExpressionsServiceSetup.getFunctions" text="getFunctions"/> | canvas | - |
@ -56,8 +59,6 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| <DocLink id="kibExpressionsPluginApi" section="def-common.ExpressionsServiceSetup.getFunctions" text="getFunctions"/> | canvas | - |
| <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="kibKibanaReactPluginApi" section="def-public.KibanaPageTemplate" text="KibanaPageTemplate"/> | management, spaces, ml, canvas, enterpriseSearch, osquery, home | - |
| <DocLink id="kibKibanaReactPluginApi" section="def-public.RedirectAppLinks" text="RedirectAppLinks"/> | esUiShared, home, data, spaces, fleet, visualizations, lens, observability, ml, apm, indexLifecycleManagement, synthetics, upgradeAssistant, ux, savedObjectsManagement, kibanaOverview | - |
| <DocLink id="kibKibanaReactPluginApi" section="def-public.KibanaPageTemplateProps" text="KibanaPageTemplateProps"/> | management, enterpriseSearch | - |
| <DocLink id="kibSecurityPluginApi" section="def-public.SecurityPluginStart.uiApi" text="uiApi"/> | enterpriseSearch | - |
| <DocLink id="kibSecurityPluginApi" section="def-server.SecurityPluginSetup.authz" text="authz"/> | actions, ml, savedObjectsTagging, enterpriseSearch | - |
@ -75,12 +76,12 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
| <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObjectsStart.SavedObjectClass" text="SavedObjectClass"/> | dashboard | 8.8.0 |
| <DocLink id="kibCorePluginApi" section="def-server.SavedObjectsMigrationLogger.warning" text="warning"/> | maps, dashboard | 8.8.0 |
| <DocLink id="kibCorePluginApi" section="def-server.OpsMetrics.process" text="process"/> | monitoring, kibanaUsageCollection, @kbn/core-metrics-server-internal | 8.8.0 |
| <DocLink id="kibHomePluginApi" section="def-public.HomePublicPluginSetup.environment" text="environment"/> | cloud, apm | 8.8.0 |
| <DocLink id="kibLicensingPluginApi" section="def-public.LicensingPluginSetup.license$" text="license$"/> | security, licenseManagement, ml, apm, crossClusterReplication, logstash, painlessLab, searchprofiler, watcher | 8.8.0 |
| <DocLink id="kibCorePluginApi" section="def-public.AppMountParameters.appBasePath" text="appBasePath"/> | management, fleet, security, kibanaOverview | 8.8.0 |
| <DocLink id="kibFeaturesPluginApi" section="def-public.FeatureKibanaPrivileges.disabled" text="disabled"/> | security, fleet | 8.8.0 |
| <DocLink id="kibFeaturesPluginApi" section="def-common.FeatureKibanaPrivileges.disabled" text="disabled"/> | security, fleet | 8.8.0 |
| <DocLink id="kibFeaturesPluginApi" section="def-server.FeatureKibanaPrivileges.disabled" text="disabled"/> | security, fleet | 8.8.0 |
| <DocLink id="kibCorePluginApi" section="def-public.AppMountParameters.appBasePath" text="appBasePath"/> | management, fleet, security, kibanaOverview | 8.8.0 |
| <DocLink id="kibHomePluginApi" section="def-public.HomePublicPluginSetup.environment" text="environment"/> | cloud, apm | 8.8.0 |
| <DocLink id="kibLicensingPluginApi" section="def-public.LicensingPluginSetup.license$" text="license$"/> | security, licenseManagement, ml, apm, crossClusterReplication, logstash, painlessLab, searchprofiler, watcher | 8.8.0 |
| <DocLink id="kibFeaturesPluginApi" section="def-server.PluginSetupContract.getElasticsearchFeatures" text="getElasticsearchFeatures"/> | security | 8.8.0 |
| <DocLink id="kibLicensingPluginApi" section="def-server.LicensingPluginSetup.refresh" text="refresh"/> | mapsEms | 8.8.0 |
| <DocLink id="kibCorePluginApi" section="def-public.IHttpFetchError.req" text="req"/> | ml, @kbn/core-http-browser-internal | 8.8.0

View file

@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsByPlugin
slug: /kibana-dev-docs/api-meta/deprecated-api-list-by-plugin
title: Deprecated API usage by plugin
description: A list of deprecated APIs, which plugins are still referencing them, and when they need to be removed by.
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana']
---
@ -116,6 +116,14 @@ so TS and code-reference navigation might not highlight them. |
## cloudSecurityPosture
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
| <DocLink id="kibDiscoverPluginApi" section="def-public.DiscoverAppLocatorParams.indexPatternId" text="indexPatternId"/> | [overview_tab.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/cloud_security_posture/public/pages/findings/findings_flyout/overview_tab.tsx#:~:text=indexPatternId) | - |
## console
| Deprecated API | Reference location(s) | Remove By |
@ -188,6 +196,14 @@ so TS and code-reference navigation might not highlight them. |
## dataVisualizer
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
| <DocLink id="kibDiscoverPluginApi" section="def-public.DiscoverAppLocatorParams.indexPatternId" text="indexPatternId"/> | [results_links.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx#:~:text=indexPatternId), [actions_panel.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/actions_panel/actions_panel.tsx#:~:text=indexPatternId) | - |
## discover
| Deprecated API | Reference location(s) | Remove By |
@ -203,6 +219,14 @@ so TS and code-reference navigation might not highlight them. |
## discoverEnhanced
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
| <DocLink id="kibDiscoverPluginApi" section="def-public.DiscoverAppLocatorParams.indexPatternId" text="indexPatternId"/> | [explore_data_context_menu_action.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts#:~:text=indexPatternId), [explore_data_chart_action.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts#:~:text=indexPatternId) | - |
## embeddable
| Deprecated API | Reference location(s) | Remove By |
@ -251,6 +275,7 @@ so TS and code-reference navigation might not highlight them. |
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
| <DocLink id="kibDiscoverPluginApi" section="def-public.DiscoverAppLocatorParams.indexPatternId" text="indexPatternId"/> | [use_get_logs_discover_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/multi_page_layout/hooks/use_get_logs_discover_link.tsx#:~:text=indexPatternId) | - |
| <DocLink id="kibKibanaReactPluginApi" section="def-public.RedirectAppLinks" text="RedirectAppLinks"/> | [tutorial_directory_header_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/home_integration/tutorial_directory_header_link.tsx#:~:text=RedirectAppLinks), [tutorial_directory_header_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/home_integration/tutorial_directory_header_link.tsx#:~:text=RedirectAppLinks), [tutorial_directory_header_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/home_integration/tutorial_directory_header_link.tsx#:~:text=RedirectAppLinks), [custom_assets_accordion.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx#:~:text=RedirectAppLinks), [custom_assets_accordion.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx#:~:text=RedirectAppLinks), [custom_assets_accordion.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/components/custom_assets_accordion.tsx#:~:text=RedirectAppLinks), [agent_logs.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx#:~:text=RedirectAppLinks), [agent_logs.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx#:~:text=RedirectAppLinks), [agent_logs.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/fleet/sections/agents/agent_details_page/components/agent_logs/agent_logs.tsx#:~:text=RedirectAppLinks), [app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/public/applications/integrations/app.tsx#:~:text=RedirectAppLinks)+ 5 more | - |
| <DocLink id="kibFeaturesPluginApi" section="def-public.FeatureKibanaPrivileges.disabled" text="disabled"/> | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 |
| <DocLink id="kibFeaturesPluginApi" section="def-common.FeatureKibanaPrivileges.disabled" text="disabled"/> | [plugin.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/fleet/server/plugin.ts#:~:text=disabled) | 8.8.0 |
@ -329,6 +354,7 @@ so TS and code-reference navigation might not highlight them. |
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
| <DocLink id="kibDiscoverPluginApi" section="def-public.DiscoverAppLocatorParams.indexPatternId" text="indexPatternId"/> | [lens_top_nav.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx#:~:text=indexPatternId) | - |
| <DocLink id="kibKibanaReactPluginApi" section="def-public.RedirectAppLinks" text="RedirectAppLinks"/> | [workspace_panel.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx#:~:text=RedirectAppLinks), [workspace_panel.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx#:~:text=RedirectAppLinks), [workspace_panel.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/editor_frame_service/editor_frame/workspace_panel/workspace_panel.tsx#:~:text=RedirectAppLinks) | - |
| <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObject" text="SavedObject"/> | [display_duplicate_title_confirm_modal.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/display_duplicate_title_confirm_modal.ts#:~:text=SavedObject), [display_duplicate_title_confirm_modal.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/display_duplicate_title_confirm_modal.ts#:~:text=SavedObject), [check_for_duplicate_title.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/check_for_duplicate_title.ts#:~:text=SavedObject), [check_for_duplicate_title.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/check_for_duplicate_title.ts#:~:text=SavedObject) | 8.8.0 |
| <DocLink id="kibCorePluginApi" section="def-public.AppMountParameters.onAppLeave" text="onAppLeave"/> | [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [mounter.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/mounter.tsx#:~:text=onAppLeave) | 8.8.0 |
@ -416,6 +442,7 @@ so TS and code-reference navigation might not highlight them. |
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
| <DocLink id="kibDiscoverPluginApi" section="def-public.DiscoverAppLocatorParams.indexPatternId" text="indexPatternId"/> | [use_discover_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/components/shared/exploratory_view/hooks/use_discover_link.tsx#:~:text=indexPatternId) | - |
| <DocLink id="kibKibanaReactPluginApi" section="def-public.RedirectAppLinks" text="RedirectAppLinks"/> | [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks), [index.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/observability/public/application/index.tsx#:~:text=RedirectAppLinks) | - |
@ -424,6 +451,7 @@ so TS and code-reference navigation might not highlight them. |
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
| <DocLink id="kibDiscoverPluginApi" section="def-public.DiscoverAppLocatorParams.indexPatternId" text="indexPatternId"/> | [pack_queries_status_table.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/osquery/public/packs/pack_queries_status_table.tsx#:~:text=indexPatternId), [pack_queries_status_table.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/osquery/public/live_queries/form/pack_queries_status_table.tsx#:~:text=indexPatternId), [use_discover_link.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/osquery/public/common/hooks/use_discover_link.tsx#:~:text=indexPatternId) | - |
| <DocLink id="kibKibanaReactPluginApi" section="def-public.KibanaPageTemplate" text="KibanaPageTemplate"/> | [empty_state.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/osquery/public/components/empty_state.tsx#:~:text=KibanaPageTemplate), [empty_state.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/osquery/public/components/empty_state.tsx#:~:text=KibanaPageTemplate) | - |
@ -583,6 +611,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/
| Deprecated API | Reference location(s) | Remove By |
| ---------------|-----------|-----------|
| <DocLink id="kibDiscoverPluginApi" section="def-public.DiscoverAppLocatorParams.indexPatternId" text="indexPatternId"/> | [stderr_logs.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/components/synthetics/check_steps/stderr_logs.tsx#:~:text=indexPatternId) | - |
| <DocLink id="kibKibanaReactPluginApi" section="def-public.RedirectAppLinks" text="RedirectAppLinks"/> | [alert_messages.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [alert_messages.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [alert_messages.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks) | - |

View file

@ -7,7 +7,7 @@ id: kibDevDocsDeprecationsDueByTeam
slug: /kibana-dev-docs/api-meta/deprecations-due-by-team
title: Deprecated APIs due to be removed, by team
description: Lists the teams that are referencing deprecated APIs with a remove by date.
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana']
---
@ -190,6 +190,6 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/
| Plugin | Deprecated API | Reference location(s) | Remove By |
| --------|-------|-----------|-----------|
| management | <DocLink id="kibCorePluginApi" section="def-public.AppMountParameters.appBasePath" text="appBasePath"/> | [application.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/management/public/application.tsx#:~:text=appBasePath) | 8.8.0 |
| visualizations | <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObject" text="SavedObject"/> | [display_duplicate_title_confirm_modal.ts](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/utils/saved_objects_utils/display_duplicate_title_confirm_modal.ts#:~:text=SavedObject), [display_duplicate_title_confirm_modal.ts](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/utils/saved_objects_utils/display_duplicate_title_confirm_modal.ts#:~:text=SavedObject), [check_for_duplicate_title.ts](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/utils/saved_objects_utils/check_for_duplicate_title.ts#:~:text=SavedObject), [check_for_duplicate_title.ts](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/utils/saved_objects_utils/check_for_duplicate_title.ts#:~:text=SavedObject), [display_duplicate_title_confirm_modal.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/display_duplicate_title_confirm_modal.ts#:~:text=SavedObject), [display_duplicate_title_confirm_modal.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/display_duplicate_title_confirm_modal.ts#:~:text=SavedObject), [check_for_duplicate_title.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/check_for_duplicate_title.ts#:~:text=SavedObject), [check_for_duplicate_title.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/check_for_duplicate_title.ts#:~:text=SavedObject) | 8.8.0 |
| visualizations | <DocLink id="kibCorePluginApi" section="def-public.AppMountParameters.onAppLeave" text="onAppLeave"/> | [visualize_top_nav.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/components/visualize_top_nav.tsx#:~:text=onAppLeave), [visualize_editor_common.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/components/visualize_editor_common.tsx#:~:text=onAppLeave), [app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/app.tsx#:~:text=onAppLeave), [index.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/index.tsx#:~:text=onAppLeave), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [mounter.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/mounter.tsx#:~:text=onAppLeave) | 8.8.0 |
| lens | <DocLink id="kibSavedObjectsPluginApi" section="def-public.SavedObject" text="SavedObject"/> | [display_duplicate_title_confirm_modal.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/display_duplicate_title_confirm_modal.ts#:~:text=SavedObject), [display_duplicate_title_confirm_modal.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/display_duplicate_title_confirm_modal.ts#:~:text=SavedObject), [check_for_duplicate_title.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/check_for_duplicate_title.ts#:~:text=SavedObject), [check_for_duplicate_title.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/persistence/saved_objects_utils/check_for_duplicate_title.ts#:~:text=SavedObject), [display_duplicate_title_confirm_modal.ts](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/utils/saved_objects_utils/display_duplicate_title_confirm_modal.ts#:~:text=SavedObject), [display_duplicate_title_confirm_modal.ts](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/utils/saved_objects_utils/display_duplicate_title_confirm_modal.ts#:~:text=SavedObject), [check_for_duplicate_title.ts](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/utils/saved_objects_utils/check_for_duplicate_title.ts#:~:text=SavedObject), [check_for_duplicate_title.ts](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/utils/saved_objects_utils/check_for_duplicate_title.ts#:~:text=SavedObject) | 8.8.0 |
| lens | <DocLink id="kibCorePluginApi" section="def-public.AppMountParameters.onAppLeave" text="onAppLeave"/> | [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [types.ts](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/types.ts#:~:text=onAppLeave), [mounter.tsx](https://github.com/elastic/kibana/tree/master/x-pack/plugins/lens/public/app_plugin/mounter.tsx#:~:text=onAppLeave), [visualize_top_nav.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/components/visualize_top_nav.tsx#:~:text=onAppLeave), [visualize_editor_common.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/components/visualize_editor_common.tsx#:~:text=onAppLeave), [app.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/app.tsx#:~:text=onAppLeave), [index.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/visualizations/public/visualize_app/index.tsx#:~:text=onAppLeave) | 8.8.0 |
| management | <DocLink id="kibCorePluginApi" section="def-public.AppMountParameters.appBasePath" text="appBasePath"/> | [application.tsx](https://github.com/elastic/kibana/tree/master/src/plugins/management/public/application.tsx#:~:text=appBasePath) | 8.8.0 |

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/devTools
title: "devTools"
image: https://source.unsplash.com/400x175/?github
description: API docs for the devTools plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'devTools']
---
import devToolsObj from './dev_tools.devdocs.json';

View file

@ -13,15 +13,15 @@
"signature": [
"(savedSearchId: string | undefined, dependencies: GetSavedSearchDependencies) => Promise<",
{
"pluginId": "discover",
"pluginId": "savedSearch",
"scope": "public",
"docId": "kibDiscoverPluginApi",
"docId": "kibSavedSearchPluginApi",
"section": "def-public.SavedSearch",
"text": "SavedSearch"
},
">"
],
"path": "src/plugins/discover/public/services/saved_searches/get_saved_searches.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/get_saved_searches.ts",
"deprecated": false,
"children": [
{
@ -34,7 +34,7 @@
"signature": [
"string | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/get_saved_searches.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/get_saved_searches.ts",
"deprecated": false,
"isRequired": false
},
@ -48,7 +48,7 @@
"signature": [
"GetSavedSearchDependencies"
],
"path": "src/plugins/discover/public/services/saved_searches/get_saved_searches.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/get_saved_searches.ts",
"deprecated": false,
"isRequired": true
}
@ -66,7 +66,7 @@
"signature": [
"(id?: string | undefined) => string"
],
"path": "src/plugins/discover/common/services/saved_searches/saved_searches_url.ts",
"path": "src/plugins/saved_search/common/saved_searches_url.ts",
"deprecated": false,
"children": [
{
@ -79,7 +79,7 @@
"signature": [
"string | undefined"
],
"path": "src/plugins/discover/common/services/saved_searches/saved_searches_url.ts",
"path": "src/plugins/saved_search/common/saved_searches_url.ts",
"deprecated": false,
"isRequired": false
}
@ -97,7 +97,7 @@
"signature": [
"(id?: string | undefined) => string"
],
"path": "src/plugins/discover/common/services/saved_searches/saved_searches_url.ts",
"path": "src/plugins/saved_search/common/saved_searches_url.ts",
"deprecated": false,
"children": [
{
@ -110,7 +110,7 @@
"signature": [
"string | undefined"
],
"path": "src/plugins/discover/common/services/saved_searches/saved_searches_url.ts",
"path": "src/plugins/saved_search/common/saved_searches_url.ts",
"deprecated": false,
"isRequired": false
}
@ -128,15 +128,15 @@
"signature": [
"(savedSearch: ",
{
"pluginId": "discover",
"pluginId": "savedSearch",
"scope": "public",
"docId": "kibDiscoverPluginApi",
"docId": "kibSavedSearchPluginApi",
"section": "def-public.SavedSearch",
"text": "SavedSearch"
},
") => Promise<string>"
],
"path": "src/plugins/discover/public/services/saved_searches/saved_searches_utils.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts",
"deprecated": false,
"children": [
{
@ -148,14 +148,14 @@
"description": [],
"signature": [
{
"pluginId": "discover",
"pluginId": "savedSearch",
"scope": "public",
"docId": "kibDiscoverPluginApi",
"docId": "kibSavedSearchPluginApi",
"section": "def-public.SavedSearch",
"text": "SavedSearch"
}
],
"path": "src/plugins/discover/public/services/saved_searches/saved_searches_utils.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts",
"deprecated": false,
"isRequired": true
}
@ -191,15 +191,15 @@
"signature": [
"(savedSearch: ",
{
"pluginId": "discover",
"pluginId": "savedSearch",
"scope": "public",
"docId": "kibDiscoverPluginApi",
"docId": "kibSavedSearchPluginApi",
"section": "def-public.SavedSearch",
"text": "SavedSearch"
},
") => Promise<void>"
],
"path": "src/plugins/discover/public/services/saved_searches/saved_searches_utils.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts",
"deprecated": false,
"children": [
{
@ -211,14 +211,14 @@
"description": [],
"signature": [
{
"pluginId": "discover",
"pluginId": "savedSearch",
"scope": "public",
"docId": "kibDiscoverPluginApi",
"docId": "kibSavedSearchPluginApi",
"section": "def-public.SavedSearch",
"text": "SavedSearch"
}
],
"path": "src/plugins/discover/public/services/saved_searches/saved_searches_utils.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/saved_searches_utils.ts",
"deprecated": false,
"isRequired": true
}
@ -266,10 +266,10 @@
},
{
"parentPluginId": "discover",
"id": "def-public.DiscoverAppLocatorParams.indexPatternId",
"id": "def-public.DiscoverAppLocatorParams.dataViewId",
"type": "string",
"tags": [],
"label": "indexPatternId",
"label": "dataViewId",
"description": [
"\nOptionally set index pattern / data view ID."
],
@ -279,6 +279,73 @@
"path": "src/plugins/discover/public/locator.ts",
"deprecated": false
},
{
"parentPluginId": "discover",
"id": "def-public.DiscoverAppLocatorParams.indexPatternId",
"type": "string",
"tags": [
"deprecated"
],
"label": "indexPatternId",
"description": [
"\nDuplication of dataViewId"
],
"signature": [
"string | undefined"
],
"path": "src/plugins/discover/public/locator.ts",
"deprecated": true,
"references": [
{
"plugin": "lens",
"path": "x-pack/plugins/lens/public/app_plugin/lens_top_nav.tsx"
},
{
"plugin": "observability",
"path": "x-pack/plugins/observability/public/components/shared/exploratory_view/hooks/use_discover_link.tsx"
},
{
"plugin": "dataVisualizer",
"path": "x-pack/plugins/data_visualizer/public/application/common/components/results_links/results_links.tsx"
},
{
"plugin": "dataVisualizer",
"path": "x-pack/plugins/data_visualizer/public/application/index_data_visualizer/components/actions_panel/actions_panel.tsx"
},
{
"plugin": "fleet",
"path": "x-pack/plugins/fleet/public/applications/fleet/sections/agent_policy/create_package_policy_page/multi_page_layout/hooks/use_get_logs_discover_link.tsx"
},
{
"plugin": "cloudSecurityPosture",
"path": "x-pack/plugins/cloud_security_posture/public/pages/findings/findings_flyout/overview_tab.tsx"
},
{
"plugin": "discoverEnhanced",
"path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_context_menu_action.ts"
},
{
"plugin": "discoverEnhanced",
"path": "x-pack/plugins/discover_enhanced/public/actions/explore_data/explore_data_chart_action.ts"
},
{
"plugin": "osquery",
"path": "x-pack/plugins/osquery/public/packs/pack_queries_status_table.tsx"
},
{
"plugin": "osquery",
"path": "x-pack/plugins/osquery/public/live_queries/form/pack_queries_status_table.tsx"
},
{
"plugin": "osquery",
"path": "x-pack/plugins/osquery/public/common/hooks/use_discover_link.tsx"
},
{
"plugin": "synthetics",
"path": "x-pack/plugins/synthetics/public/legacy_uptime/components/synthetics/check_steps/stderr_logs.tsx"
}
]
},
{
"parentPluginId": "discover",
"id": "def-public.DiscoverAppLocatorParams.timeRange",
@ -454,7 +521,13 @@
"\nTable view: Documents vs Field Statistics"
],
"signature": [
"VIEW_MODE",
{
"pluginId": "discover",
"scope": "public",
"docId": "kibDiscoverPluginApi",
"section": "def-public.VIEW_MODE",
"text": "VIEW_MODE"
},
" | undefined"
],
"path": "src/plugins/discover/public/locator.ts",
@ -478,6 +551,66 @@
],
"initialIsOpen": false
},
{
"parentPluginId": "discover",
"id": "def-public.DiscoverGridSettings",
"type": "Interface",
"tags": [],
"label": "DiscoverGridSettings",
"description": [],
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false,
"children": [
{
"parentPluginId": "discover",
"id": "def-public.DiscoverGridSettings.columns",
"type": "Object",
"tags": [],
"label": "columns",
"description": [],
"signature": [
"Record<string, ",
{
"pluginId": "savedSearch",
"scope": "public",
"docId": "kibSavedSearchPluginApi",
"section": "def-public.DiscoverGridSettingsColumn",
"text": "DiscoverGridSettingsColumn"
},
"> | undefined"
],
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
}
],
"initialIsOpen": false
},
{
"parentPluginId": "discover",
"id": "def-public.DiscoverGridSettingsColumn",
"type": "Interface",
"tags": [],
"label": "DiscoverGridSettingsColumn",
"description": [],
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false,
"children": [
{
"parentPluginId": "discover",
"id": "def-public.DiscoverGridSettingsColumn.width",
"type": "number",
"tags": [],
"label": "width",
"description": [],
"signature": [
"number | undefined"
],
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
}
],
"initialIsOpen": false
},
{
"parentPluginId": "discover",
"id": "def-public.ISearchEmbeddable",
@ -526,9 +659,9 @@
"signature": [
"() => ",
{
"pluginId": "discover",
"pluginId": "savedSearch",
"scope": "public",
"docId": "kibDiscoverPluginApi",
"docId": "kibSavedSearchPluginApi",
"section": "def-public.SavedSearch",
"text": "SavedSearch"
}
@ -548,7 +681,7 @@
"tags": [],
"label": "SavedSearch",
"description": [],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false,
"children": [
{
@ -783,7 +916,7 @@
},
"; parseActiveIndexPatternFromQueryString: (queryString: string) => string[]; }"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -796,7 +929,7 @@
"signature": [
"string | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -809,7 +942,7 @@
"signature": [
"string | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -823,7 +956,7 @@
"SortOrder",
"[] | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -836,7 +969,7 @@
"signature": [
"string[] | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -849,7 +982,7 @@
"signature": [
"string | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -861,10 +994,16 @@
"description": [],
"signature": [
"{ columns?: Record<string, ",
"DiscoverGridSettingsColumn",
{
"pluginId": "savedSearch",
"scope": "public",
"docId": "kibSavedSearchPluginApi",
"section": "def-public.DiscoverGridSettingsColumn",
"text": "DiscoverGridSettingsColumn"
},
"> | undefined; } | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -877,7 +1016,7 @@
"signature": [
"boolean | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -890,7 +1029,7 @@
"signature": [
"{ outcome?: \"exactMatch\" | \"aliasMatch\" | \"conflict\" | undefined; aliasTargetId?: string | undefined; aliasPurpose?: \"savedObjectConversion\" | \"savedObjectImport\" | undefined; errorJSON?: string | undefined; } | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -901,10 +1040,16 @@
"label": "viewMode",
"description": [],
"signature": [
"VIEW_MODE",
{
"pluginId": "savedSearch",
"scope": "public",
"docId": "kibSavedSearchPluginApi",
"section": "def-public.VIEW_MODE",
"text": "VIEW_MODE"
},
" | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -917,7 +1062,7 @@
"signature": [
"boolean | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -930,7 +1075,7 @@
"signature": [
"number | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -943,7 +1088,7 @@
"signature": [
"boolean | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
},
{
@ -956,7 +1101,7 @@
"signature": [
"number | undefined"
],
"path": "src/plugins/discover/public/services/saved_searches/types.ts",
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false
}
],
@ -1100,7 +1245,19 @@
"initialIsOpen": false
}
],
"enums": [],
"enums": [
{
"parentPluginId": "discover",
"id": "def-public.VIEW_MODE",
"type": "Enum",
"tags": [],
"label": "VIEW_MODE",
"description": [],
"path": "src/plugins/saved_search/public/services/saved_searches/types.ts",
"deprecated": false,
"initialIsOpen": false
}
],
"misc": [
{
"parentPluginId": "discover",

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/discover
title: "discover"
image: https://source.unsplash.com/400x175/?github
description: API docs for the discover plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discover']
---
import discoverObj from './discover.devdocs.json';
@ -21,7 +21,7 @@ Contact [Data Discovery](https://github.com/orgs/elastic/teams/kibana-data-disco
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
| 84 | 0 | 68 | 7 |
| 90 | 0 | 73 | 5 |
## Client
@ -37,6 +37,9 @@ Contact [Data Discovery](https://github.com/orgs/elastic/teams/kibana-data-disco
### Interfaces
<DocDefinitionList data={discoverObj.client.interfaces}/>
### Enums
<DocDefinitionList data={discoverObj.client.enums}/>
### Consts, variables and types
<DocDefinitionList data={discoverObj.client.misc}/>

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/discoverEnhanced
title: "discoverEnhanced"
image: https://source.unsplash.com/400x175/?github
description: API docs for the discoverEnhanced plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discoverEnhanced']
---
import discoverEnhancedObj from './discover_enhanced.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/elastic-apm-synthtrace
title: "@elastic/apm-synthtrace"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @elastic/apm-synthtrace plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@elastic/apm-synthtrace']
---
import elasticApmSynthtraceObj from './elastic_apm_synthtrace.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/embeddable
title: "embeddable"
image: https://source.unsplash.com/400x175/?github
description: API docs for the embeddable plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddable']
---
import embeddableObj from './embeddable.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/embeddableEnhanced
title: "embeddableEnhanced"
image: https://source.unsplash.com/400x175/?github
description: API docs for the embeddableEnhanced plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddableEnhanced']
---
import embeddableEnhancedObj from './embeddable_enhanced.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/encryptedSavedObjects
title: "encryptedSavedObjects"
image: https://source.unsplash.com/400x175/?github
description: API docs for the encryptedSavedObjects plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'encryptedSavedObjects']
---
import encryptedSavedObjectsObj from './encrypted_saved_objects.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/enterpriseSearch
title: "enterpriseSearch"
image: https://source.unsplash.com/400x175/?github
description: API docs for the enterpriseSearch plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'enterpriseSearch']
---
import enterpriseSearchObj from './enterprise_search.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/esUiShared
title: "esUiShared"
image: https://source.unsplash.com/400x175/?github
description: API docs for the esUiShared plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'esUiShared']
---
import esUiSharedObj from './es_ui_shared.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/eventAnnotation
title: "eventAnnotation"
image: https://source.unsplash.com/400x175/?github
description: API docs for the eventAnnotation plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventAnnotation']
---
import eventAnnotationObj from './event_annotation.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/eventLog
title: "eventLog"
image: https://source.unsplash.com/400x175/?github
description: API docs for the eventLog plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventLog']
---
import eventLogObj from './event_log.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionError
title: "expressionError"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionError plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionError']
---
import expressionErrorObj from './expression_error.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionGauge
title: "expressionGauge"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionGauge plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionGauge']
---
import expressionGaugeObj from './expression_gauge.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionHeatmap
title: "expressionHeatmap"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionHeatmap plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionHeatmap']
---
import expressionHeatmapObj from './expression_heatmap.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionImage
title: "expressionImage"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionImage plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionImage']
---
import expressionImageObj from './expression_image.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionLegacyMetricVis
title: "expressionLegacyMetricVis"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionLegacyMetricVis plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionLegacyMetricVis']
---
import expressionLegacyMetricVisObj from './expression_legacy_metric_vis.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionMetric
title: "expressionMetric"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionMetric plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetric']
---
import expressionMetricObj from './expression_metric.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionMetricVis
title: "expressionMetricVis"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionMetricVis plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetricVis']
---
import expressionMetricVisObj from './expression_metric_vis.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionPartitionVis
title: "expressionPartitionVis"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionPartitionVis plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionPartitionVis']
---
import expressionPartitionVisObj from './expression_partition_vis.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionRepeatImage
title: "expressionRepeatImage"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionRepeatImage plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRepeatImage']
---
import expressionRepeatImageObj from './expression_repeat_image.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionRevealImage
title: "expressionRevealImage"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionRevealImage plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRevealImage']
---
import expressionRevealImageObj from './expression_reveal_image.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionShape
title: "expressionShape"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionShape plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionShape']
---
import expressionShapeObj from './expression_shape.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionTagcloud
title: "expressionTagcloud"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionTagcloud plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionTagcloud']
---
import expressionTagcloudObj from './expression_tagcloud.devdocs.json';

View file

@ -381,6 +381,19 @@
],
"path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
"deprecated": false
},
{
"parentPluginId": "expressionXY",
"id": "def-common.AxisExtentConfig.enforce",
"type": "CompoundType",
"tags": [],
"label": "enforce",
"description": [],
"signature": [
"boolean | undefined"
],
"path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
"deprecated": false
}
],
"initialIsOpen": false
@ -780,6 +793,26 @@
],
"path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
"deprecated": false
},
{
"parentPluginId": "expressionXY",
"id": "def-common.DataLayerArgs.curveType",
"type": "CompoundType",
"tags": [],
"label": "curveType",
"description": [],
"signature": [
{
"pluginId": "expressionXY",
"scope": "common",
"docId": "kibExpressionXYPluginApi",
"section": "def-common.XYCurveType",
"text": "XYCurveType"
},
" | undefined"
],
"path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
"deprecated": false
}
],
"initialIsOpen": false
@ -1384,26 +1417,6 @@
"path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
"deprecated": false
},
{
"parentPluginId": "expressionXY",
"id": "def-common.XYArgs.curveType",
"type": "CompoundType",
"tags": [],
"label": "curveType",
"description": [],
"signature": [
{
"pluginId": "expressionXY",
"scope": "common",
"docId": "kibExpressionXYPluginApi",
"section": "def-common.XYCurveType",
"text": "XYCurveType"
},
" | undefined"
],
"path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
"deprecated": false
},
{
"parentPluginId": "expressionXY",
"id": "def-common.XYArgs.fillOpacity",
@ -1923,9 +1936,29 @@
"label": "CommonXYLayerConfig",
"description": [],
"signature": [
"XYLayerConfig",
{
"pluginId": "expressionXY",
"scope": "common",
"docId": "kibExpressionXYPluginApi",
"section": "def-common.DataLayerConfig",
"text": "DataLayerConfig"
},
" | ",
"XYExtendedLayerConfig"
"ReferenceLineConfig",
" | ",
"AnnotationLayerConfig",
" | ",
"ExtendedDataLayerConfig",
" | ",
{
"pluginId": "expressionXY",
"scope": "common",
"docId": "kibExpressionXYPluginApi",
"section": "def-common.ReferenceLineLayerConfig",
"text": "ReferenceLineLayerConfig"
},
" | ",
"ExtendedAnnotationLayerConfig"
],
"path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
"deprecated": false,
@ -2102,7 +2135,7 @@
"label": "FittingFunction",
"description": [],
"signature": [
"\"None\" | \"Zero\" | \"Linear\" | \"Carry\" | \"Lookahead\""
"\"None\" | \"Zero\" | \"Nearest\" | \"Linear\" | \"Carry\" | \"Lookahead\" | \"Average\""
],
"path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
"deprecated": false,
@ -2165,7 +2198,7 @@
"label": "LineStyle",
"description": [],
"signature": [
"\"solid\" | \"dashed\" | \"dotted\""
"\"solid\" | \"dashed\" | \"dotted\" | \"dot-dashed\""
],
"path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
"deprecated": false,
@ -2350,7 +2383,7 @@
"label": "XYCurveType",
"description": [],
"signature": [
"\"LINEAR\" | \"CURVE_MONOTONE_X\""
"\"LINEAR\" | \"CURVE_MONOTONE_X\" | \"CURVE_STEP_AFTER\""
],
"path": "src/plugins/chart_expressions/expression_xy/common/types/expression_functions.ts",
"deprecated": false,
@ -2364,6 +2397,8 @@
"label": "XYExtendedLayerConfigResult",
"description": [],
"signature": [
"ReferenceLineConfigResult",
" | ",
{
"pluginId": "expressionXY",
"scope": "common",

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressionXY
title: "expressionXY"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressionXY plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionXY']
---
import expressionXYObj from './expression_x_y.devdocs.json';
@ -21,7 +21,7 @@ Contact [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors)
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
| 150 | 0 | 140 | 14 |
| 151 | 0 | 141 | 12 |
## Client

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/expressions
title: "expressions"
image: https://source.unsplash.com/400x175/?github
description: API docs for the expressions plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressions']
---
import expressionsObj from './expressions.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/features
title: "features"
image: https://source.unsplash.com/400x175/?github
description: API docs for the features plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'features']
---
import featuresObj from './features.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fieldFormats
title: "fieldFormats"
image: https://source.unsplash.com/400x175/?github
description: API docs for the fieldFormats plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fieldFormats']
---
import fieldFormatsObj from './field_formats.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fileUpload
title: "fileUpload"
image: https://source.unsplash.com/400x175/?github
description: API docs for the fileUpload plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fileUpload']
---
import fileUploadObj from './file_upload.devdocs.json';

5622
api_docs/files.devdocs.json Normal file

File diff suppressed because it is too large Load diff

55
api_docs/files.mdx Normal file
View file

@ -0,0 +1,55 @@
---
####
#### 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.
####
id: kibFilesPluginApi
slug: /kibana-dev-docs/api/files
title: "files"
image: https://source.unsplash.com/400x175/?github
description: API docs for the files plugin
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'files']
---
import filesObj from './files.devdocs.json';
File upload, download, sharing, and serving over HTTP implementation in Kibana.
Contact [@elastic/kibana-app-services](https://github.com/orgs/elastic/teams/team:AppServicesUx) for questions regarding this plugin.
**Code health stats**
| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
| 222 | 0 | 3 | 2 |
## Client
### Interfaces
<DocDefinitionList data={filesObj.client.interfaces}/>
## Server
### Setup
<DocDefinitionList data={[filesObj.server.setup]}/>
### Start
<DocDefinitionList data={[filesObj.server.start]}/>
### Functions
<DocDefinitionList data={filesObj.server.functions}/>
### Interfaces
<DocDefinitionList data={filesObj.server.interfaces}/>
### Consts, variables and types
<DocDefinitionList data={filesObj.server.misc}/>
## Common
### Interfaces
<DocDefinitionList data={filesObj.common.interfaces}/>
### Consts, variables and types
<DocDefinitionList data={filesObj.common.misc}/>

View file

@ -6689,7 +6689,7 @@
"section": "def-common.PackagePolicyPackage",
"text": "PackagePolicyPackage"
},
" | undefined; policy_id?: string | undefined; }>) => Promise<void>"
" | undefined; policy_id?: string | undefined; statusCode?: number | undefined; body?: { message: string; } | undefined; }>) => Promise<void>"
],
"path": "x-pack/plugins/fleet/server/types/extensions.ts",
"deprecated": false,
@ -6712,7 +6712,7 @@
"section": "def-common.PackagePolicyPackage",
"text": "PackagePolicyPackage"
},
" | undefined; policy_id?: string | undefined; }>"
" | undefined; policy_id?: string | undefined; statusCode?: number | undefined; body?: { message: string; } | undefined; }>"
],
"path": "x-pack/plugins/fleet/server/types/extensions.ts",
"deprecated": false
@ -9758,7 +9758,7 @@
"label": "install_source",
"description": [],
"signature": [
"\"registry\" | \"upload\" | \"bundled\""
"\"upload\" | \"registry\" | \"bundled\""
],
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
"deprecated": false
@ -9908,7 +9908,7 @@
"label": "installSource",
"description": [],
"signature": [
"\"registry\" | \"upload\" | \"bundled\""
"\"upload\" | \"registry\" | \"bundled\""
],
"path": "x-pack/plugins/fleet/common/types/rest_spec/epm.ts",
"deprecated": false
@ -12835,7 +12835,7 @@
"section": "def-common.PackagePolicyPackage",
"text": "PackagePolicyPackage"
},
" | undefined; policy_id?: string | undefined; }[]"
" | undefined; policy_id?: string | undefined; statusCode?: number | undefined; body?: { message: string; } | undefined; }[]"
],
"path": "x-pack/plugins/fleet/common/types/rest_spec/package_policy.ts",
"deprecated": false,

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/fleet
title: "fleet"
image: https://source.unsplash.com/400x175/?github
description: API docs for the fleet plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fleet']
---
import fleetObj from './fleet.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/globalSearch
title: "globalSearch"
image: https://source.unsplash.com/400x175/?github
description: API docs for the globalSearch plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'globalSearch']
---
import globalSearchObj from './global_search.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/home
title: "home"
image: https://source.unsplash.com/400x175/?github
description: API docs for the home plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'home']
---
import homeObj from './home.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/indexLifecycleManagement
title: "indexLifecycleManagement"
image: https://source.unsplash.com/400x175/?github
description: API docs for the indexLifecycleManagement plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexLifecycleManagement']
---
import indexLifecycleManagementObj from './index_lifecycle_management.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/indexManagement
title: "indexManagement"
image: https://source.unsplash.com/400x175/?github
description: API docs for the indexManagement plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'indexManagement']
---
import indexManagementObj from './index_management.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/infra
title: "infra"
image: https://source.unsplash.com/400x175/?github
description: API docs for the infra plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'infra']
---
import infraObj from './infra.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/inspector
title: "inspector"
image: https://source.unsplash.com/400x175/?github
description: API docs for the inspector plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'inspector']
---
import inspectorObj from './inspector.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/interactiveSetup
title: "interactiveSetup"
image: https://source.unsplash.com/400x175/?github
description: API docs for the interactiveSetup plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'interactiveSetup']
---
import interactiveSetupObj from './interactive_setup.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ace
title: "@kbn/ace"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ace plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ace']
---
import kbnAceObj from './kbn_ace.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-aiops-components
title: "@kbn/aiops-components"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/aiops-components plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-components']
---
import kbnAiopsComponentsObj from './kbn_aiops_components.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-aiops-utils
title: "@kbn/aiops-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/aiops-utils plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/aiops-utils']
---
import kbnAiopsUtilsObj from './kbn_aiops_utils.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-alerts
title: "@kbn/alerts"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/alerts plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/alerts']
---
import kbnAlertsObj from './kbn_alerts.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics
title: "@kbn/analytics"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics']
---
import kbnAnalyticsObj from './kbn_analytics.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-client
title: "@kbn/analytics-client"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-client plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-client']
---
import kbnAnalyticsClientObj from './kbn_analytics_client.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-browser
title: "@kbn/analytics-shippers-elastic-v3-browser"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-shippers-elastic-v3-browser plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-browser']
---
import kbnAnalyticsShippersElasticV3BrowserObj from './kbn_analytics_shippers_elastic_v3_browser.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-common
title: "@kbn/analytics-shippers-elastic-v3-common"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-shippers-elastic-v3-common plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-common']
---
import kbnAnalyticsShippersElasticV3CommonObj from './kbn_analytics_shippers_elastic_v3_common.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-elastic-v3-server
title: "@kbn/analytics-shippers-elastic-v3-server"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-shippers-elastic-v3-server plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-elastic-v3-server']
---
import kbnAnalyticsShippersElasticV3ServerObj from './kbn_analytics_shippers_elastic_v3_server.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-analytics-shippers-fullstory
title: "@kbn/analytics-shippers-fullstory"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/analytics-shippers-fullstory plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/analytics-shippers-fullstory']
---
import kbnAnalyticsShippersFullstoryObj from './kbn_analytics_shippers_fullstory.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-config-loader
title: "@kbn/apm-config-loader"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/apm-config-loader plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-config-loader']
---
import kbnApmConfigLoaderObj from './kbn_apm_config_loader.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-apm-utils
title: "@kbn/apm-utils"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/apm-utils plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/apm-utils']
---
import kbnApmUtilsObj from './kbn_apm_utils.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-axe-config
title: "@kbn/axe-config"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/axe-config plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/axe-config']
---
import kbnAxeConfigObj from './kbn_axe_config.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-bazel-packages
title: "@kbn/bazel-packages"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/bazel-packages plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/bazel-packages']
---
import kbnBazelPackagesObj from './kbn_bazel_packages.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-core
title: "@kbn/ci-stats-core"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ci-stats-core plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-core']
---
import kbnCiStatsCoreObj from './kbn_ci_stats_core.devdocs.json';

View file

@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/kbn-ci-stats-performance-metrics
title: "@kbn/ci-stats-performance-metrics"
image: https://source.unsplash.com/400x175/?github
description: API docs for the @kbn/ci-stats-performance-metrics plugin
date: 2022-08-11
date: 2022-08-13
tags: ['contributor', 'dev', 'apidocs', 'kibana', '@kbn/ci-stats-performance-metrics']
---
import kbnCiStatsPerformanceMetricsObj from './kbn_ci_stats_performance_metrics.devdocs.json';

Some files were not shown because too many files have changed in this diff Show more