mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
merge
This commit is contained in:
parent
e598378d9a
commit
0ddac70db7
2772 changed files with 62927 additions and 22709 deletions
|
@ -35,18 +35,17 @@ disabled:
|
|||
- x-pack/test/osquery_cypress/cli_config.ts
|
||||
- x-pack/test/osquery_cypress/config.ts
|
||||
- x-pack/test/osquery_cypress/visual_config.ts
|
||||
- x-pack/test/security_solution_cypress/cases_cli_config.ts
|
||||
- x-pack/test/security_solution_cypress/ccs_config.ts
|
||||
- x-pack/test/security_solution_cypress/cli_config.ts
|
||||
- x-pack/test/security_solution_cypress/cli_config_investigations_parallel.ts
|
||||
- x-pack/test/security_solution_cypress/config.firefox.ts
|
||||
- x-pack/test/security_solution_cypress/config.ts
|
||||
- x-pack/test/security_solution_cypress/response_ops_cli_config.ts
|
||||
- x-pack/test/security_solution_cypress/upgrade_config.ts
|
||||
- x-pack/test/threat_intelligence_cypress/cli_config_parallel.ts
|
||||
- x-pack/test/threat_intelligence_cypress/config.ts
|
||||
- x-pack/test/functional_enterprise_search/visual_config.ts
|
||||
- x-pack/test/functional_enterprise_search/cli_config.ts
|
||||
- x-pack/test_serverless/functional/test_suites/security/cypress/config_headless.ts
|
||||
- x-pack/test_serverless/functional/test_suites/security/cypress/config_visual.ts
|
||||
- x-pack/plugins/apm/ftr_e2e/ftr_config_open.ts
|
||||
- x-pack/plugins/apm/ftr_e2e/ftr_config_run.ts
|
||||
- x-pack/plugins/apm/ftr_e2e/ftr_config.ts
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
"key": "cypress/security_solution",
|
||||
"name": "Security Solution - Cypress"
|
||||
},
|
||||
{
|
||||
"key": "cypress/security_solution_explore",
|
||||
"name": "Security Solution Explore - Cypress"
|
||||
},
|
||||
{
|
||||
"key": "cypress/osquery_cypress",
|
||||
"name": "Osquery - Cypress"
|
||||
|
|
|
@ -177,6 +177,9 @@ for (const testSuite of testSuites) {
|
|||
// by setting chunks vars to value 1, which means all test will run in one job
|
||||
CLI_NUMBER: 1,
|
||||
CLI_COUNT: 1,
|
||||
// The security solution cypress tests don't recognize CLI_NUMBER and CLI_COUNT, they use `BUILDKITE_PARALLEL_JOB_COUNT` and `BUILDKITE_PARALLEL_JOB`, which cannot be overridden here.
|
||||
// Use `RUN_ALL_TESTS` to make Security Solution Cypress tests run all tests instead of a subset.
|
||||
RUN_ALL_TESTS: 'true',
|
||||
},
|
||||
});
|
||||
break;
|
||||
|
|
|
@ -86,6 +86,14 @@ steps:
|
|||
agents:
|
||||
queue: 'kibana-default'
|
||||
|
||||
- command: '.buildkite/scripts/steps/functional/on_merge_serverless_ftrs.sh'
|
||||
label: Trigger serverless ftr tests
|
||||
timeout_in_minutes: 10
|
||||
depends_on:
|
||||
- build
|
||||
agents:
|
||||
queue: 'kibana-default'
|
||||
|
||||
- command: .buildkite/scripts/steps/lint.sh
|
||||
label: 'Linting'
|
||||
agents:
|
||||
|
|
|
@ -77,6 +77,36 @@ steps:
|
|||
- exit_status: '*'
|
||||
limit: 1
|
||||
|
||||
- command: .buildkite/scripts/steps/functional/security_solution_explore.sh
|
||||
label: 'Explore - Security Solution Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 60
|
||||
parallelism: 2
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
|
||||
- command: .buildkite/scripts/steps/functional/defend_workflows.sh
|
||||
label: 'Defend Workflows Cypress Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 120
|
||||
parallelism: 2
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
artifact_paths:
|
||||
- "target/kibana-security-solution/**/*"
|
||||
|
||||
- command: .buildkite/scripts/steps/functional/synthetics_plugin.sh
|
||||
label: 'Synthetics @elastic/synthetics Tests'
|
||||
agents:
|
||||
|
|
|
@ -56,6 +56,58 @@ steps:
|
|||
- exit_status: '*'
|
||||
limit: 1
|
||||
|
||||
- command: SERVERLESS_ENVIRONMENT=common .buildkite/scripts/steps/functional/serverless_ftr.sh
|
||||
label: 'Serverless Common Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 40
|
||||
soft_fail:
|
||||
- exit_status: 10
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
|
||||
- command: SERVERLESS_ENVIRONMENT=observability .buildkite/scripts/steps/functional/serverless_ftr.sh
|
||||
label: 'Serverless Observability Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 40
|
||||
soft_fail:
|
||||
- exit_status: 10
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
|
||||
- command: SERVERLESS_ENVIRONMENT=search .buildkite/scripts/steps/functional/serverless_ftr.sh
|
||||
label: 'Serverless Search Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 40
|
||||
soft_fail:
|
||||
- exit_status: 10
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
|
||||
- command: SERVERLESS_ENVIRONMENT=security .buildkite/scripts/steps/functional/serverless_ftr.sh
|
||||
label: 'Serverless Security Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 40
|
||||
soft_fail:
|
||||
- exit_status: 10
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
|
||||
- command: .buildkite/scripts/steps/lint.sh
|
||||
label: 'Linting'
|
||||
agents:
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
steps:
|
||||
- command: .buildkite/scripts/steps/functional/security_solution_explore.sh
|
||||
label: 'Explore - Security Solution Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 60
|
||||
parallelism: 2
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
74
.buildkite/pipelines/serverless.yml
Normal file
74
.buildkite/pipelines/serverless.yml
Normal file
|
@ -0,0 +1,74 @@
|
|||
steps:
|
||||
- command: .buildkite/scripts/lifecycle/pre_build.sh
|
||||
label: Pre-Build
|
||||
timeout_in_minutes: 10
|
||||
agents:
|
||||
queue: kibana-default
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
|
||||
- command: .buildkite/scripts/steps/build_kibana.sh
|
||||
label: Build Kibana Distribution and Plugins
|
||||
agents:
|
||||
queue: n2-16-spot
|
||||
key: build
|
||||
if: "build.env('KIBANA_BUILD_ID') == null || build.env('KIBANA_BUILD_ID') == ''"
|
||||
timeout_in_minutes: 60
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
|
||||
- command: SERVERLESS_ENVIRONMENT=common .buildkite/scripts/steps/functional/serverless_ftr.sh
|
||||
label: 'Serverless Common Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 40
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
|
||||
- command: SERVERLESS_ENVIRONMENT=observability .buildkite/scripts/steps/functional/serverless_ftr.sh
|
||||
label: 'Serverless Observability Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 40
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
|
||||
- command: SERVERLESS_ENVIRONMENT=search .buildkite/scripts/steps/functional/serverless_ftr.sh
|
||||
label: 'Serverless Search Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 40
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
||||
|
||||
- command: SERVERLESS_ENVIRONMENT=security .buildkite/scripts/steps/functional/serverless_ftr.sh
|
||||
label: 'Serverless Security Tests'
|
||||
agents:
|
||||
queue: n2-4-spot
|
||||
depends_on: build
|
||||
timeout_in_minutes: 40
|
||||
retry:
|
||||
automatic:
|
||||
- exit_status: '-1'
|
||||
limit: 3
|
||||
- exit_status: '*'
|
||||
limit: 1
|
|
@ -24,6 +24,8 @@ if [[ "$IS_TEST_EXECUTION_STEP" == "true" ]]; then
|
|||
buildkite-agent artifact upload 'x-pack/test/**/screenshots/diff/*.png'
|
||||
buildkite-agent artifact upload 'x-pack/test/**/screenshots/failure/*.png'
|
||||
buildkite-agent artifact upload 'x-pack/test/**/screenshots/session/*.png'
|
||||
buildkite-agent artifact upload 'x-pack/test_serverless/**/screenshots/failure/*.png'
|
||||
buildkite-agent artifact upload 'x-pack/test_serverless/**/screenshots/session/*.png'
|
||||
buildkite-agent artifact upload 'x-pack/test/functional/apps/reporting/reports/session/*.pdf'
|
||||
buildkite-agent artifact upload 'x-pack/test/functional/failure_debug/html/*.html'
|
||||
buildkite-agent artifact upload '.es/**/*.hprof'
|
||||
|
|
|
@ -74,7 +74,8 @@ const uploadPipeline = (pipelineContent: string | object) => {
|
|||
) {
|
||||
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/security_solution.yml'));
|
||||
pipeline.push(
|
||||
getPipeline('.buildkite/pipelines/pull_request/security_solution_investigations.yml')
|
||||
getPipeline('.buildkite/pipelines/pull_request/security_solution_investigations.yml'),
|
||||
getPipeline('.buildkite/pipelines/pull_request/security_solution_explore.yml')
|
||||
);
|
||||
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/defend_workflows.yml'));
|
||||
}
|
||||
|
|
8
.buildkite/scripts/steps/functional/on_merge_serverless_ftrs.sh
Executable file
8
.buildkite/scripts/steps/functional/on_merge_serverless_ftrs.sh
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
if [[ "$BUILDKITE_BRANCH" == "main" ]]; then
|
||||
echo "--- Trigger serverless ftr tests"
|
||||
ts-node .buildkite/scripts/steps/trigger_pipeline.ts kibana-serverless "$BUILDKITE_BRANCH" "$BUILDKITE_COMMIT" "$BUILDKITE_BUILD_ID"
|
||||
fi
|
|
@ -0,0 +1,17 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
source .buildkite/scripts/steps/functional/common.sh
|
||||
|
||||
export JOB=kibana-security-solution-chrome
|
||||
export KIBANA_INSTALL_DIR=${KIBANA_BUILD_LOCATION}
|
||||
|
||||
|
||||
Xvfb :99 -screen 0 1600x1200x24 &
|
||||
|
||||
export DISPLAY=:99
|
||||
|
||||
echo "--- Explore Cypress Tests on Security Solution"
|
||||
|
||||
yarn --cwd x-pack/plugins/security_solution cypress:explore:run
|
49
.buildkite/scripts/steps/functional/serverless_ftr.sh
Executable file
49
.buildkite/scripts/steps/functional/serverless_ftr.sh
Executable file
|
@ -0,0 +1,49 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -euo pipefail
|
||||
|
||||
source .buildkite/scripts/steps/functional/common.sh
|
||||
|
||||
export JOB="kibana-serverless-$SERVERLESS_ENVIRONMENT"
|
||||
|
||||
if [[ "$SERVERLESS_ENVIRONMENT" == "common" ]]; then
|
||||
SERVERLESS_CONFIGS=(
|
||||
"x-pack/test_serverless/api_integration/test_suites/common/config.ts"
|
||||
"x-pack/test_serverless/functional/test_suites/common/config.ts"
|
||||
)
|
||||
elif [[ "$SERVERLESS_ENVIRONMENT" == "search" ]]; then
|
||||
SERVERLESS_CONFIGS=(
|
||||
"x-pack/test_serverless/api_integration/test_suites/search/config.ts"
|
||||
"x-pack/test_serverless/functional/test_suites/search/config.ts"
|
||||
)
|
||||
elif [[ "$SERVERLESS_ENVIRONMENT" == "observability" ]]; then
|
||||
SERVERLESS_CONFIGS=(
|
||||
"x-pack/test_serverless/api_integration/test_suites/observability/config.ts"
|
||||
"x-pack/test_serverless/functional/test_suites/observability/config.ts"
|
||||
)
|
||||
elif [[ "$SERVERLESS_ENVIRONMENT" == "security" ]]; then
|
||||
SERVERLESS_CONFIGS=(
|
||||
"x-pack/test_serverless/api_integration/test_suites/security/config.ts"
|
||||
"x-pack/test_serverless/functional/test_suites/security/config.ts"
|
||||
)
|
||||
fi
|
||||
|
||||
EXIT_CODE=0
|
||||
|
||||
for CONFIG in "${SERVERLESS_CONFIGS[@]}"
|
||||
do
|
||||
echo "--- $ node scripts/functional_tests --bail --config $CONFIG"
|
||||
set +e;
|
||||
node ./scripts/functional_tests \
|
||||
--bail \
|
||||
--kibana-install-dir "$KIBANA_BUILD_LOCATION" \
|
||||
--config="$CONFIG"
|
||||
LAST_CODE=$?
|
||||
set -e;
|
||||
|
||||
if [ $LAST_CODE -ne 0 ]; then
|
||||
EXIT_CODE=10
|
||||
fi
|
||||
done
|
||||
|
||||
exit $EXIT_CODE
|
|
@ -972,7 +972,7 @@ module.exports = {
|
|||
|
||||
/**
|
||||
* Security Solution overrides. These rules below are maintained and owned by
|
||||
* the people within the security-solution-platform team. Please see ping them
|
||||
* the people within the security-detection-engine team. Please see ping them
|
||||
* or check with them if you are encountering issues, have suggestions, or would
|
||||
* like to add, change, or remove any particular rule. Linters, Typescript, and rules
|
||||
* evolve and change over time just like coding styles, so please do not hesitate to
|
||||
|
@ -1180,7 +1180,7 @@ module.exports = {
|
|||
|
||||
/**
|
||||
* Lists overrides. These rules below are maintained and owned by
|
||||
* the people within the security-solution-platform team. Please see ping them
|
||||
* the people within the security-detection-engine team. Please see ping them
|
||||
* or check with them if you are encountering issues, have suggestions, or would
|
||||
* like to add, change, or remove any particular rule. Linters, Typescript, and rules
|
||||
* evolve and change over time just like coding styles, so please do not hesitate to
|
||||
|
|
68
.github/CODEOWNERS
vendored
68
.github/CODEOWNERS
vendored
|
@ -67,6 +67,7 @@ packages/kbn-ci-stats-reporter @elastic/kibana-operations
|
|||
packages/kbn-ci-stats-shipper-cli @elastic/kibana-operations
|
||||
packages/kbn-cli-dev-mode @elastic/kibana-operations
|
||||
x-pack/plugins/cloud_integrations/cloud_chat @elastic/kibana-core
|
||||
x-pack/plugins/cloud_integrations/cloud_chat_provider @elastic/kibana-core
|
||||
x-pack/plugins/cloud_integrations/cloud_data_migration @elastic/platform-onboarding
|
||||
x-pack/plugins/cloud_defend @elastic/sec-cloudnative-integrations
|
||||
x-pack/plugins/cloud_integrations/cloud_experiments @elastic/kibana-core
|
||||
|
@ -87,7 +88,9 @@ src/plugins/console @elastic/platform-deployment-management
|
|||
packages/content-management/content_editor @elastic/appex-sharedux
|
||||
examples/content_management_examples @elastic/appex-sharedux
|
||||
src/plugins/content_management @elastic/appex-sharedux
|
||||
packages/content-management/table_list @elastic/appex-sharedux
|
||||
packages/content-management/tabbed_table_list_view @elastic/appex-sharedux
|
||||
packages/content-management/table_list_view @elastic/appex-sharedux
|
||||
packages/content-management/table_list_view_table @elastic/appex-sharedux
|
||||
packages/kbn-content-management-utils @elastic/kibana-data-discovery
|
||||
examples/controls_example @elastic/kibana-presentation
|
||||
src/plugins/controls @elastic/kibana-presentation
|
||||
|
@ -306,12 +309,23 @@ src/plugins/data_view_management @elastic/kibana-data-discovery
|
|||
src/plugins/data_views @elastic/kibana-data-discovery
|
||||
x-pack/plugins/data_visualizer @elastic/ml-ui
|
||||
packages/kbn-datemath @elastic/kibana-data-discovery
|
||||
packages/deeplinks/analytics @elastic/kibana-data-discovery
|
||||
packages/deeplinks/devtools @elastic/platform-deployment-management
|
||||
packages/deeplinks/management @elastic/platform-deployment-management @elastic/kibana-data-discovery
|
||||
packages/deeplinks/ml @elastic/ml-ui
|
||||
packages/deeplinks/observability @elastic/apm-ui
|
||||
packages/deeplinks/search @elastic/enterprise-search-frontend
|
||||
packages/default-nav/analytics @elastic/kibana-data-discovery
|
||||
packages/default-nav/devtools @elastic/platform-deployment-management
|
||||
packages/default-nav/management @elastic/platform-deployment-management @elastic/kibana-data-discovery
|
||||
packages/default-nav/ml @elastic/ml-ui
|
||||
packages/kbn-dev-cli-errors @elastic/kibana-operations
|
||||
packages/kbn-dev-cli-runner @elastic/kibana-operations
|
||||
packages/kbn-dev-proc-runner @elastic/kibana-operations
|
||||
src/plugins/dev_tools @elastic/platform-deployment-management
|
||||
packages/kbn-dev-utils @elastic/kibana-operations
|
||||
examples/developer_examples @elastic/appex-sharedux
|
||||
examples/discover_customization_examples @elastic/kibana-data-discovery
|
||||
x-pack/plugins/discover_enhanced @elastic/kibana-data-discovery
|
||||
src/plugins/discover @elastic/kibana-data-discovery
|
||||
packages/kbn-doc-links @elastic/kibana-docs
|
||||
|
@ -446,7 +460,7 @@ x-pack/plugins/license_management @elastic/platform-deployment-management
|
|||
x-pack/plugins/licensing @elastic/kibana-core
|
||||
packages/kbn-lint-packages-cli @elastic/kibana-operations
|
||||
packages/kbn-lint-ts-projects-cli @elastic/kibana-operations
|
||||
x-pack/plugins/lists @elastic/security-solution-platform
|
||||
x-pack/plugins/lists @elastic/security-detection-engine
|
||||
examples/locator_examples @elastic/kibana-app-services
|
||||
examples/locator_explorer @elastic/kibana-app-services
|
||||
packages/kbn-logging @elastic/kibana-core
|
||||
|
@ -564,24 +578,24 @@ x-pack/plugins/security_solution @elastic/security-solution
|
|||
x-pack/packages/security-solution/side_nav @elastic/security-threat-hunting-explore
|
||||
x-pack/packages/security-solution/storybook/config @elastic/security-threat-hunting-explore
|
||||
x-pack/test/security_functional/plugins/test_endpoints @elastic/kibana-security
|
||||
packages/kbn-securitysolution-autocomplete @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-autocomplete @elastic/security-detection-engine
|
||||
x-pack/packages/security-solution/data_table @elastic/security-threat-hunting-investigations
|
||||
packages/kbn-securitysolution-ecs @elastic/security-threat-hunting-explore
|
||||
packages/kbn-securitysolution-es-utils @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-exception-list-components @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-es-utils @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-exception-list-components @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-grouping @elastic/security-threat-hunting-explore
|
||||
packages/kbn-securitysolution-hook-utils @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-io-ts-alerting-types @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-io-ts-list-types @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-io-ts-types @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-io-ts-utils @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-list-api @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-list-constants @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-list-hooks @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-list-utils @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-rules @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-t-grid @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-utils @elastic/security-solution-platform
|
||||
packages/kbn-securitysolution-hook-utils @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-io-ts-alerting-types @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-io-ts-list-types @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-io-ts-types @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-io-ts-utils @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-list-api @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-list-constants @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-list-hooks @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-list-utils @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-rules @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-t-grid @elastic/security-detection-engine
|
||||
packages/kbn-securitysolution-utils @elastic/security-detection-engine
|
||||
packages/kbn-server-http-tools @elastic/kibana-core
|
||||
packages/kbn-server-route-repository @elastic/apm-ui
|
||||
x-pack/plugins/serverless @elastic/appex-sharedux
|
||||
|
@ -647,7 +661,7 @@ packages/shared-ux/router/types @elastic/appex-sharedux
|
|||
packages/shared-ux/storybook/config @elastic/appex-sharedux
|
||||
packages/shared-ux/storybook/mock @elastic/appex-sharedux
|
||||
packages/kbn-shared-ux-utility @elastic/appex-sharedux
|
||||
packages/kbn-slo-schema @elastic/actionable-observability
|
||||
x-pack/packages/kbn-slo-schema @elastic/actionable-observability
|
||||
x-pack/plugins/snapshot_restore @elastic/platform-deployment-management
|
||||
packages/kbn-some-dev-log @elastic/kibana-operations
|
||||
packages/kbn-sort-package-json @elastic/kibana-operations
|
||||
|
@ -907,6 +921,7 @@ x-pack/test/observability_functional @elastic/actionable-observability
|
|||
/src/dev/ @elastic/kibana-operations
|
||||
/src/setup_node_env/ @elastic/kibana-operations
|
||||
/src/cli/keystore/ @elastic/kibana-operations
|
||||
/src/cli/serve/ @elastic/kibana-operations
|
||||
/.ci/es-snapshots/ @elastic/kibana-operations
|
||||
/.github/workflows/ @elastic/kibana-operations
|
||||
/vars/ @elastic/kibana-operations
|
||||
|
@ -932,10 +947,10 @@ x-pack/test/observability_functional @elastic/actionable-observability
|
|||
/packages/kbn-performance-testing-dataset-extractor @elastic/appex-qa
|
||||
|
||||
# Core
|
||||
/config/kibana.yml @elastic/kibana-core
|
||||
/config/ @elastic/kibana-core
|
||||
/typings/ @elastic/kibana-core
|
||||
/x-pack/test/saved_objects_field_count/ @elastic/kibana-core
|
||||
/test/analytics @elastic/kibana-core
|
||||
/x-pack/test/saved_objects_field_count/ @elastic/kibana-core
|
||||
#CC# /src/core/server/csp/ @elastic/kibana-core
|
||||
#CC# /src/plugins/saved_objects/ @elastic/kibana-core
|
||||
#CC# /x-pack/plugins/cloud/ @elastic/kibana-core
|
||||
|
@ -1035,15 +1050,7 @@ x-pack/plugins/cloud_integrations/cloud_full_story/server/config.ts @elastic/kib
|
|||
/x-pack/plugins/security_solution/common/search_strategy/security_solution/network @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/common/search_strategy/security_solution/user @elastic/security-threat-hunting-explore
|
||||
|
||||
/x-pack/plugins/security_solution/cypress/e2e/cases @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/e2e/dashboards @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/e2e/filters @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/e2e/host_details @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/e2e/hosts @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/e2e/network @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/e2e/overview @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/e2e/pagination @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/e2e/users @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/e2e/explore @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/screens/hosts @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/screens/network @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/tasks/hosts @elastic/security-threat-hunting-explore
|
||||
|
@ -1147,6 +1154,8 @@ x-pack/plugins/cloud_integrations/cloud_full_story/server/config.ts @elastic/kib
|
|||
/x-pack/plugins/security_solution/server/lib/detection_engine/rule_actions_legacy @elastic/security-detection-engine
|
||||
/x-pack/plugins/security_solution/server/lib/detection_engine/rule_exceptions @elastic/security-detection-engine
|
||||
/x-pack/plugins/security_solution/server/lib/sourcerer @elastic/security-detection-engine
|
||||
/x-pack/plugins/security_solution/cypress/e2e/overview @elastic/security-detection-engine
|
||||
|
||||
|
||||
## Security Threat Intelligence - Under Security Platform
|
||||
/x-pack/plugins/security_solution/public/common/components/threat_match @elastic/security-detection-engine
|
||||
|
@ -1218,7 +1227,6 @@ x-pack/test/threat_intelligence_cypress @elastic/protections-experience
|
|||
|
||||
# Security Solution onboarding tour
|
||||
/x-pack/plugins/security_solution/public/common/components/guided_onboarding @elastic/security-threat-hunting-explore
|
||||
/x-pack/plugins/security_solution/cypress/e2e/guided_onboarding @elastic/security-threat-hunting-explore
|
||||
|
||||
# Kibana design
|
||||
# scss overrides should be below this line for specificity
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
"data": "src/plugins/data",
|
||||
"observabilityAlertDetails": "x-pack/packages/observability/alert_details",
|
||||
"dataViews": "src/plugins/data_views",
|
||||
"defaultNavigation": "packages/default-nav",
|
||||
"devTools": "src/plugins/dev_tools",
|
||||
"discover": "src/plugins/discover",
|
||||
"savedSearch": "src/plugins/saved_search",
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'actions']
|
||||
---
|
||||
import actionsObj from './actions.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'advancedSettings']
|
||||
---
|
||||
import advancedSettingsObj from './advanced_settings.devdocs.json';
|
||||
|
|
|
@ -628,6 +628,62 @@
|
|||
],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "aiops",
|
||||
"id": "def-public.ExplainLogRateSpikesAnalysisResults",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "ExplainLogRateSpikesAnalysisResults",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/aiops/public/components/explain_log_rate_spikes/explain_log_rate_spikes_analysis.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "aiops",
|
||||
"id": "def-public.ExplainLogRateSpikesAnalysisResults.significantTerms",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "significantTerms",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "@kbn/ml-agg-utils",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnMlAggUtilsPluginApi",
|
||||
"section": "def-common.SignificantTerm",
|
||||
"text": "SignificantTerm"
|
||||
},
|
||||
"[]"
|
||||
],
|
||||
"path": "x-pack/plugins/aiops/public/components/explain_log_rate_spikes/explain_log_rate_spikes_analysis.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "aiops",
|
||||
"id": "def-public.ExplainLogRateSpikesAnalysisResults.significantTermsGroups",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "significantTermsGroups",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "@kbn/ml-agg-utils",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnMlAggUtilsPluginApi",
|
||||
"section": "def-common.SignificantTermGroup",
|
||||
"text": "SignificantTermGroup"
|
||||
},
|
||||
"[]"
|
||||
],
|
||||
"path": "x-pack/plugins/aiops/public/components/explain_log_rate_spikes/explain_log_rate_spikes_analysis.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "aiops",
|
||||
"id": "def-public.ExplainLogRateSpikesAppStateProps",
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'aiops']
|
||||
---
|
||||
import aiopsObj from './aiops.devdocs.json';
|
||||
|
@ -21,7 +21,7 @@ Contact [@elastic/ml-ui](https://github.com/orgs/elastic/teams/ml-ui) for questi
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 41 | 0 | 24 | 1 |
|
||||
| 44 | 0 | 27 | 1 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -2172,6 +2172,100 @@
|
|||
"returnComment": [],
|
||||
"children": []
|
||||
},
|
||||
{
|
||||
"parentPluginId": "alerting",
|
||||
"id": "def-server.PluginStartContract.getType",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "getType",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"<Params extends ",
|
||||
{
|
||||
"pluginId": "alerting",
|
||||
"scope": "common",
|
||||
"docId": "kibAlertingPluginApi",
|
||||
"section": "def-common.RuleTypeParams",
|
||||
"text": "RuleTypeParams"
|
||||
},
|
||||
" = ",
|
||||
{
|
||||
"pluginId": "alerting",
|
||||
"scope": "common",
|
||||
"docId": "kibAlertingPluginApi",
|
||||
"section": "def-common.RuleTypeParams",
|
||||
"text": "RuleTypeParams"
|
||||
},
|
||||
", ExtractedParams extends ",
|
||||
{
|
||||
"pluginId": "alerting",
|
||||
"scope": "common",
|
||||
"docId": "kibAlertingPluginApi",
|
||||
"section": "def-common.RuleTypeParams",
|
||||
"text": "RuleTypeParams"
|
||||
},
|
||||
" = ",
|
||||
{
|
||||
"pluginId": "alerting",
|
||||
"scope": "common",
|
||||
"docId": "kibAlertingPluginApi",
|
||||
"section": "def-common.RuleTypeParams",
|
||||
"text": "RuleTypeParams"
|
||||
},
|
||||
", State extends ",
|
||||
{
|
||||
"pluginId": "alerting",
|
||||
"scope": "common",
|
||||
"docId": "kibAlertingPluginApi",
|
||||
"section": "def-common.RuleTypeState",
|
||||
"text": "RuleTypeState"
|
||||
},
|
||||
" = ",
|
||||
{
|
||||
"pluginId": "alerting",
|
||||
"scope": "common",
|
||||
"docId": "kibAlertingPluginApi",
|
||||
"section": "def-common.RuleTypeState",
|
||||
"text": "RuleTypeState"
|
||||
},
|
||||
", InstanceState extends { [x: string]: unknown; } = { [x: string]: unknown; }, InstanceContext extends { [x: string]: unknown; } = { [x: string]: unknown; }, ActionGroupIds extends string = string, RecoveryActionGroupId extends string = string, AlertData extends ",
|
||||
{
|
||||
"pluginId": "alerting",
|
||||
"scope": "common",
|
||||
"docId": "kibAlertingPluginApi",
|
||||
"section": "def-common.RuleAlertData",
|
||||
"text": "RuleAlertData"
|
||||
},
|
||||
" = ",
|
||||
{
|
||||
"pluginId": "alerting",
|
||||
"scope": "common",
|
||||
"docId": "kibAlertingPluginApi",
|
||||
"section": "def-common.RuleAlertData",
|
||||
"text": "RuleAlertData"
|
||||
},
|
||||
">(id: string) => ",
|
||||
"NormalizedRuleType",
|
||||
"<Params, ExtractedParams, State, InstanceState, InstanceContext, ActionGroupIds, RecoveryActionGroupId, AlertData>"
|
||||
],
|
||||
"path": "x-pack/plugins/alerting/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"returnComment": [],
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "alerting",
|
||||
"id": "def-server.PluginStartContract.getType.$1",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "id",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/alerting/server/rule_type_registry.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
}
|
||||
]
|
||||
},
|
||||
{
|
||||
"parentPluginId": "alerting",
|
||||
"id": "def-server.PluginStartContract.getRulesClientWithRequest",
|
||||
|
@ -3576,6 +3670,20 @@
|
|||
"path": "x-pack/plugins/alerting/server/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "alerting",
|
||||
"id": "def-server.RuleType.fieldsForAAD",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "fieldsForAAD",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string[] | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/alerting/server/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
|
@ -4318,7 +4426,9 @@
|
|||
"MuteOptions",
|
||||
") => Promise<void>; runSoon: (options: { id: string; }) => Promise<any>; listRuleTypes: () => Promise<Set<",
|
||||
"RegistryAlertTypeWithAuth",
|
||||
">>; getSpaceId: () => string | undefined; getAlertFromRaw: (params: ",
|
||||
">>; getSpaceId: () => string | undefined; getTags: (params: Readonly<{ search?: string | undefined; perPage?: number | undefined; } & { page: number; }>) => Promise<",
|
||||
"GetTagsResult",
|
||||
">; getAlertFromRaw: (params: ",
|
||||
"GetAlertFromRawParams",
|
||||
") => ",
|
||||
{
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'alerting']
|
||||
---
|
||||
import alertingObj from './alerting.devdocs.json';
|
||||
|
@ -21,7 +21,7 @@ Contact [@elastic/response-ops](https://github.com/orgs/elastic/teams/response-o
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 619 | 1 | 595 | 45 |
|
||||
| 622 | 1 | 598 | 47 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'apm']
|
||||
---
|
||||
import apmObj from './apm.devdocs.json';
|
||||
|
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/assetManager
|
|||
title: "assetManager"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the assetManager plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'assetManager']
|
||||
---
|
||||
import assetManagerObj from './asset_manager.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'banners']
|
||||
---
|
||||
import bannersObj from './banners.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'bfetch']
|
||||
---
|
||||
import bfetchObj from './bfetch.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'canvas']
|
||||
---
|
||||
import canvasObj from './canvas.devdocs.json';
|
||||
|
|
|
@ -54,7 +54,7 @@
|
|||
"section": "def-common.AppDeepLink",
|
||||
"text": "AppDeepLink"
|
||||
},
|
||||
" = ",
|
||||
"<string> = ",
|
||||
{
|
||||
"pluginId": "@kbn/core-application-browser",
|
||||
"scope": "common",
|
||||
|
@ -62,7 +62,7 @@
|
|||
"section": "def-common.AppDeepLink",
|
||||
"text": "AppDeepLink"
|
||||
},
|
||||
">({ basePath, extend, }: { basePath?: string | undefined; extend?: Partial<Record<",
|
||||
"<string>>({ basePath, extend, }: { basePath?: string | undefined; extend?: Partial<Record<",
|
||||
{
|
||||
"pluginId": "cases",
|
||||
"scope": "public",
|
||||
|
@ -376,7 +376,7 @@
|
|||
"section": "def-common.CaseSeverity",
|
||||
"text": "CaseSeverity"
|
||||
},
|
||||
" | undefined; }, \"description\" | \"title\"> | undefined; }"
|
||||
" | undefined; category?: string | undefined; }, \"description\" | \"title\"> | undefined; }"
|
||||
],
|
||||
"path": "x-pack/plugins/cases/public/client/ui/get_create_case_flyout.tsx",
|
||||
"deprecated": false,
|
||||
|
@ -486,7 +486,7 @@
|
|||
"section": "def-common.CaseSeverity",
|
||||
"text": "CaseSeverity"
|
||||
},
|
||||
" | undefined; assignees?: string | string[] | undefined; reporters?: string | string[] | undefined; defaultSearchOperator?: \"AND\" | \"OR\" | undefined; from?: string | undefined; page?: number | undefined; perPage?: number | undefined; search?: string | undefined; searchFields?: \"description\" | \"title\" | \"closed_by.username\" | \"closed_by.full_name\" | \"closed_by.email\" | \"closed_by.profile_uid\" | \"created_by.username\" | \"created_by.full_name\" | \"created_by.email\" | \"created_by.profile_uid\" | \"connector.name\" | \"connector.type\" | \"external_service.pushed_by.username\" | \"external_service.pushed_by.full_name\" | \"external_service.pushed_by.email\" | \"external_service.pushed_by.profile_uid\" | \"external_service.connector_name\" | \"external_service.external_id\" | \"external_service.external_title\" | \"external_service.external_url\" | \"title.keyword\" | \"updated_by.username\" | \"updated_by.full_name\" | \"updated_by.email\" | \"updated_by.profile_uid\" | (\"description\" | \"title\" | \"closed_by.username\" | \"closed_by.full_name\" | \"closed_by.email\" | \"closed_by.profile_uid\" | \"created_by.username\" | \"created_by.full_name\" | \"created_by.email\" | \"created_by.profile_uid\" | \"connector.name\" | \"connector.type\" | \"external_service.pushed_by.username\" | \"external_service.pushed_by.full_name\" | \"external_service.pushed_by.email\" | \"external_service.pushed_by.profile_uid\" | \"external_service.connector_name\" | \"external_service.external_id\" | \"external_service.external_title\" | \"external_service.external_url\" | \"title.keyword\" | \"updated_by.username\" | \"updated_by.full_name\" | \"updated_by.email\" | \"updated_by.profile_uid\")[] | undefined; rootSearchFields?: string[] | undefined; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; to?: string | undefined; owner?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<",
|
||||
" | undefined; assignees?: string | string[] | undefined; reporters?: string | string[] | undefined; defaultSearchOperator?: \"AND\" | \"OR\" | undefined; from?: string | undefined; page?: number | undefined; perPage?: number | undefined; search?: string | undefined; searchFields?: \"description\" | \"title\" | \"closed_by.username\" | \"closed_by.full_name\" | \"closed_by.email\" | \"closed_by.profile_uid\" | \"created_by.username\" | \"created_by.full_name\" | \"created_by.email\" | \"created_by.profile_uid\" | \"connector.name\" | \"connector.type\" | \"external_service.pushed_by.username\" | \"external_service.pushed_by.full_name\" | \"external_service.pushed_by.email\" | \"external_service.pushed_by.profile_uid\" | \"external_service.connector_name\" | \"external_service.external_id\" | \"external_service.external_title\" | \"external_service.external_url\" | \"title.keyword\" | \"updated_by.username\" | \"updated_by.full_name\" | \"updated_by.email\" | \"updated_by.profile_uid\" | (\"description\" | \"title\" | \"closed_by.username\" | \"closed_by.full_name\" | \"closed_by.email\" | \"closed_by.profile_uid\" | \"created_by.username\" | \"created_by.full_name\" | \"created_by.email\" | \"created_by.profile_uid\" | \"connector.name\" | \"connector.type\" | \"external_service.pushed_by.username\" | \"external_service.pushed_by.full_name\" | \"external_service.pushed_by.email\" | \"external_service.pushed_by.profile_uid\" | \"external_service.connector_name\" | \"external_service.external_id\" | \"external_service.external_title\" | \"external_service.external_url\" | \"title.keyword\" | \"updated_by.username\" | \"updated_by.full_name\" | \"updated_by.email\" | \"updated_by.profile_uid\")[] | undefined; rootSearchFields?: string[] | undefined; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; to?: string | undefined; owner?: string | string[] | undefined; category?: string | string[] | undefined; }, signal?: AbortSignal | undefined) => Promise<",
|
||||
{
|
||||
"pluginId": "cases",
|
||||
"scope": "common",
|
||||
|
@ -566,7 +566,7 @@
|
|||
"section": "def-common.CaseSeverity",
|
||||
"text": "CaseSeverity"
|
||||
},
|
||||
"; assignees: { uid: string; }[]; } & { duration: number | null; closed_at: string | null; closed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; external_service: ({ connector_id: string; } & { connector_name: string; external_id: string; external_title: string; external_url: string; pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: ((({ comment: string; type: ",
|
||||
"; assignees: { uid: string; }[]; category: string | null; } & { duration: number | null; closed_at: string | null; closed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; external_service: ({ connector_id: string; } & { connector_name: string; external_id: string; external_title: string; external_url: string; pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: ((({ comment: string; type: ",
|
||||
{
|
||||
"pluginId": "cases",
|
||||
"scope": "common",
|
||||
|
@ -1504,7 +1504,7 @@
|
|||
"section": "def-common.CaseSeverity",
|
||||
"text": "CaseSeverity"
|
||||
},
|
||||
"; assignees: { uid: string; }[]; } & { duration: number | null; closed_at: string | null; closed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; external_service: ({ connector_id: string; } & { connector_name: string; external_id: string; external_title: string; external_url: string; pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: ((({ comment: string; type: ",
|
||||
"; assignees: { uid: string; }[]; category: string | null; } & { duration: number | null; closed_at: string | null; closed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; external_service: ({ connector_id: string; } & { connector_name: string; external_id: string; external_title: string; external_url: string; pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: ((({ comment: string; type: ",
|
||||
{
|
||||
"pluginId": "cases",
|
||||
"scope": "common",
|
||||
|
@ -1679,7 +1679,7 @@
|
|||
"section": "def-common.CaseSeverity",
|
||||
"text": "CaseSeverity"
|
||||
},
|
||||
"; assignees: { uid: string; }[]; } & { duration: number | null; closed_at: string | null; closed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; external_service: ({ connector_id: string; } & { connector_name: string; external_id: string; external_title: string; external_url: string; pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: ((({ comment: string; type: ",
|
||||
"; assignees: { uid: string; }[]; category: string | null; } & { duration: number | null; closed_at: string | null; closed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; external_service: ({ connector_id: string; } & { connector_name: string; external_id: string; external_title: string; external_url: string; pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: ((({ comment: string; type: ",
|
||||
{
|
||||
"pluginId": "cases",
|
||||
"scope": "common",
|
||||
|
@ -1871,7 +1871,7 @@
|
|||
"section": "def-common.CaseSeverity",
|
||||
"text": "CaseSeverity"
|
||||
},
|
||||
"; assignees: { uid: string; }[]; } & { duration: number | null; closed_at: string | null; closed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; external_service: ({ connector_id: string; } & { connector_name: string; external_id: string; external_title: string; external_url: string; pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: ((({ comment: string; type: ",
|
||||
"; assignees: { uid: string; }[]; category: string | null; } & { duration: number | null; closed_at: string | null; closed_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; external_service: ({ connector_id: string; } & { connector_name: string; external_id: string; external_title: string; external_url: string; pushed_at: string; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }; }) | null; updated_at: string | null; updated_by: ({ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } & { profile_uid?: string | undefined; }) | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: ((({ comment: string; type: ",
|
||||
{
|
||||
"pluginId": "cases",
|
||||
"scope": "common",
|
||||
|
@ -2046,7 +2046,7 @@
|
|||
"section": "def-common.CaseSeverity",
|
||||
"text": "CaseSeverity"
|
||||
},
|
||||
"; assignees: { uid: string; }[]; duration: number | null; closedAt: string | null; closedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; } | null; createdAt: string; createdBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; }; externalService: { connectorId: string; connectorName: string; externalId: string; externalTitle: string; externalUrl: string; pushedAt: string; pushedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; }; } | null; updatedAt: string | null; updatedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; } | null; id: string; totalComment: number; totalAlerts: number; version: string; comments?: ({ comment: string; type: ",
|
||||
"; assignees: { uid: string; }[]; category: string | null; duration: number | null; closedAt: string | null; closedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; } | null; createdAt: string; createdBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; }; externalService: { connectorId: string; connectorName: string; externalId: string; externalTitle: string; externalUrl: string; pushedAt: string; pushedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; }; } | null; updatedAt: string | null; updatedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; } | null; id: string; totalComment: number; totalAlerts: number; version: string; comments?: ({ comment: string; type: ",
|
||||
{
|
||||
"pluginId": "cases",
|
||||
"scope": "common",
|
||||
|
@ -2227,7 +2227,7 @@
|
|||
"section": "def-common.CaseSeverity",
|
||||
"text": "CaseSeverity"
|
||||
},
|
||||
"; assignees: { uid: string; }[]; duration: number | null; closedAt: string | null; closedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; } | null; createdAt: string; createdBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; }; externalService: { connectorId: string; connectorName: string; externalId: string; externalTitle: string; externalUrl: string; pushedAt: string; pushedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; }; } | null; updatedAt: string | null; updatedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; } | null; id: string; totalComment: number; totalAlerts: number; version: string; comments?: ({ comment: string; type: ",
|
||||
"; assignees: { uid: string; }[]; category: string | null; duration: number | null; closedAt: string | null; closedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; } | null; createdAt: string; createdBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; }; externalService: { connectorId: string; connectorName: string; externalId: string; externalTitle: string; externalUrl: string; pushedAt: string; pushedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; }; } | null; updatedAt: string | null; updatedBy: { email: string | null | undefined; fullName: string | null | undefined; username: string | null | undefined; profileUid?: string | undefined; } | null; id: string; totalComment: number; totalAlerts: number; version: string; comments?: ({ comment: string; type: ",
|
||||
{
|
||||
"pluginId": "cases",
|
||||
"scope": "common",
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cases']
|
||||
---
|
||||
import casesObj from './cases.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'charts']
|
||||
---
|
||||
import chartsObj from './charts.devdocs.json';
|
||||
|
|
|
@ -137,7 +137,7 @@
|
|||
"tags": [],
|
||||
"label": "CloudStart",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
|
@ -153,7 +153,7 @@
|
|||
"signature": [
|
||||
"React.FunctionComponent<{}>"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"returnComment": [],
|
||||
|
@ -197,7 +197,7 @@
|
|||
"description": [
|
||||
"\n`true` when Kibana is running on Elastic Cloud."
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -213,7 +213,7 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -229,7 +229,7 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -245,7 +245,7 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -261,7 +261,39 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-public.CloudStart.elasticsearchUrl",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "elasticsearchUrl",
|
||||
"description": [
|
||||
"\nThe full URL to the elasticsearch cluster."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-public.CloudStart.kibanaUrl",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "kibanaUrl",
|
||||
"description": [
|
||||
"\nThe full URL to the Kibana deployment."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
}
|
||||
|
@ -279,7 +311,7 @@
|
|||
"tags": [],
|
||||
"label": "CloudSetup",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
|
@ -295,7 +327,23 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-public.CloudSetup.deploymentId",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "deploymentId",
|
||||
"description": [
|
||||
"\nThe deployment's ID. Only available when running on Elastic Cloud."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -311,7 +359,7 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -327,7 +375,7 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -343,7 +391,7 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -359,7 +407,7 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -375,7 +423,7 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -391,7 +439,71 @@
|
|||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-public.CloudSetup.elasticsearchUrl",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "elasticsearchUrl",
|
||||
"description": [
|
||||
"\nThe full URL to the elasticsearch cluster."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-public.CloudSetup.kibanaUrl",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "kibanaUrl",
|
||||
"description": [
|
||||
"\nThe full URL to the Kibana deployment."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-public.CloudSetup.cloudHost",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "cloudHost",
|
||||
"description": [
|
||||
"\n{host} from the deployment url https://<deploymentId>.<application>.<host><?:port>"
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-public.CloudSetup.cloudDefaultPort",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "cloudDefaultPort",
|
||||
"description": [
|
||||
"\n{port} from the deployment url https://<deploymentId>.<application>.<host><?:port>"
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -404,7 +516,7 @@
|
|||
"description": [
|
||||
"\n`true` when Kibana is running on Elastic Cloud."
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -420,7 +532,7 @@
|
|||
"signature": [
|
||||
"Date | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -436,7 +548,7 @@
|
|||
"signature": [
|
||||
"boolean | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
|
@ -452,7 +564,7 @@
|
|||
"signature": [
|
||||
"(contextProvider: React.FC<{}>) => void"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
|
@ -468,7 +580,7 @@
|
|||
"signature": [
|
||||
"React.FC<{}>"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/public/plugin.tsx",
|
||||
"path": "x-pack/plugins/cloud/public/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
|
@ -533,6 +645,70 @@
|
|||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-server.CloudSetup.elasticsearchUrl",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "elasticsearchUrl",
|
||||
"description": [
|
||||
"\nThe full URL to the elasticsearch cluster."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-server.CloudSetup.kibanaUrl",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "kibanaUrl",
|
||||
"description": [
|
||||
"\nThe full URL to the Kibana deployment."
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-server.CloudSetup.cloudHost",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "cloudHost",
|
||||
"description": [
|
||||
"\n{host} from the deployment url https://<deploymentId>.<application>.<host><?:port>"
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-server.CloudSetup.cloudDefaultPort",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "cloudDefaultPort",
|
||||
"description": [
|
||||
"\n{port} from the deployment url https://<deploymentId>.<application>.<host><?:port>"
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud/server/plugin.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloud",
|
||||
"id": "def-server.CloudSetup.isCloudEnabled",
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloud']
|
||||
---
|
||||
import cloudObj from './cloud.devdocs.json';
|
||||
|
@ -21,7 +21,7 @@ Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 41 | 0 | 11 | 0 |
|
||||
| 52 | 0 | 11 | 0 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -26,7 +26,36 @@
|
|||
"interfaces": [],
|
||||
"enums": [],
|
||||
"misc": [],
|
||||
"objects": []
|
||||
"objects": [],
|
||||
"start": {
|
||||
"parentPluginId": "cloudChat",
|
||||
"id": "def-public.CloudChatPluginStart",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CloudChatPluginStart",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/cloud_integrations/cloud_chat/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "cloudChat",
|
||||
"id": "def-public.CloudChatPluginStart.Chat",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "Chat",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"React.ComponentClass<{}, any> | React.FunctionComponent<{}>"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_integrations/cloud_chat/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
}
|
||||
],
|
||||
"lifecycle": "start",
|
||||
"initialIsOpen": true
|
||||
}
|
||||
},
|
||||
"server": {
|
||||
"classes": [],
|
||||
|
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudChat
|
|||
title: "cloudChat"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the cloudChat plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudChat']
|
||||
---
|
||||
import cloudChatObj from './cloud_chat.devdocs.json';
|
||||
|
@ -21,10 +21,13 @@ Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 1 | 0 | 0 | 0 |
|
||||
| 3 | 0 | 2 | 0 |
|
||||
|
||||
## Client
|
||||
|
||||
### Start
|
||||
<DocDefinitionList data={[cloudChatObj.client.start]}/>
|
||||
|
||||
### Functions
|
||||
<DocDefinitionList data={cloudChatObj.client.functions}/>
|
||||
|
||||
|
|
103
api_docs/cloud_chat_provider.devdocs.json
Normal file
103
api_docs/cloud_chat_provider.devdocs.json
Normal file
|
@ -0,0 +1,103 @@
|
|||
{
|
||||
"id": "cloudChatProvider",
|
||||
"client": {
|
||||
"classes": [],
|
||||
"functions": [],
|
||||
"interfaces": [],
|
||||
"enums": [],
|
||||
"misc": [],
|
||||
"objects": [],
|
||||
"setup": {
|
||||
"parentPluginId": "cloudChatProvider",
|
||||
"id": "def-public.CloudChatProviderPluginSetup",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CloudChatProviderPluginSetup",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/cloud_integrations/cloud_chat_provider/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "cloudChatProvider",
|
||||
"id": "def-public.CloudChatProviderPluginSetup.registerChatProvider",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "registerChatProvider",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(getChat: () => React.ComponentType<{}> | undefined) => void"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_integrations/cloud_chat_provider/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "cloudChatProvider",
|
||||
"id": "def-public.CloudChatProviderPluginSetup.registerChatProvider.$1",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "getChat",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"() => React.ComponentType<{}> | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_integrations/cloud_chat_provider/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": []
|
||||
}
|
||||
],
|
||||
"lifecycle": "setup",
|
||||
"initialIsOpen": true
|
||||
},
|
||||
"start": {
|
||||
"parentPluginId": "cloudChatProvider",
|
||||
"id": "def-public.CloudChatProviderPluginStart",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CloudChatProviderPluginStart",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/cloud_integrations/cloud_chat_provider/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "cloudChatProvider",
|
||||
"id": "def-public.CloudChatProviderPluginStart.Chat",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "Chat",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"React.ComponentType<{}> | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_integrations/cloud_chat_provider/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
}
|
||||
],
|
||||
"lifecycle": "start",
|
||||
"initialIsOpen": true
|
||||
}
|
||||
},
|
||||
"server": {
|
||||
"classes": [],
|
||||
"functions": [],
|
||||
"interfaces": [],
|
||||
"enums": [],
|
||||
"misc": [],
|
||||
"objects": []
|
||||
},
|
||||
"common": {
|
||||
"classes": [],
|
||||
"functions": [],
|
||||
"interfaces": [],
|
||||
"enums": [],
|
||||
"misc": [],
|
||||
"objects": []
|
||||
}
|
||||
}
|
33
api_docs/cloud_chat_provider.mdx
Normal file
33
api_docs/cloud_chat_provider.mdx
Normal file
|
@ -0,0 +1,33 @@
|
|||
---
|
||||
####
|
||||
#### 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: kibCloudChatProviderPluginApi
|
||||
slug: /kibana-dev-docs/api/cloudChatProvider
|
||||
title: "cloudChatProvider"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the cloudChatProvider plugin
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudChatProvider']
|
||||
---
|
||||
import cloudChatProviderObj from './cloud_chat_provider.devdocs.json';
|
||||
|
||||
This plugin exists as a workaround for using `cloudChat` plugin in plugins which can't have a direct dependency on security plugin.
|
||||
|
||||
Contact [@elastic/kibana-core](https://github.com/orgs/elastic/teams/kibana-core) for questions regarding this plugin.
|
||||
|
||||
**Code health stats**
|
||||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 5 | 0 | 5 | 0 |
|
||||
|
||||
## Client
|
||||
|
||||
### Setup
|
||||
<DocDefinitionList data={[cloudChatProviderObj.client.setup]}/>
|
||||
|
||||
### Start
|
||||
<DocDefinitionList data={[cloudChatProviderObj.client.start]}/>
|
||||
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudDataMigration
|
|||
title: "cloudDataMigration"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the cloudDataMigration plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDataMigration']
|
||||
---
|
||||
import cloudDataMigrationObj from './cloud_data_migration.devdocs.json';
|
||||
|
|
|
@ -240,9 +240,252 @@
|
|||
"common": {
|
||||
"classes": [],
|
||||
"functions": [],
|
||||
"interfaces": [],
|
||||
"interfaces": [
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.CloudDefendPolicy",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "CloudDefendPolicy",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/cloud_defend/common/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.CloudDefendPolicy.package_policy",
|
||||
"type": "Object",
|
||||
"tags": [],
|
||||
"label": "package_policy",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "fleet",
|
||||
"scope": "common",
|
||||
"docId": "kibFleetPluginApi",
|
||||
"section": "def-common.PackagePolicy",
|
||||
"text": "PackagePolicy"
|
||||
}
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_defend/common/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.CloudDefendPolicy.agent_policy",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "agent_policy",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"Pick<",
|
||||
{
|
||||
"pluginId": "fleet",
|
||||
"scope": "common",
|
||||
"docId": "kibFleetPluginApi",
|
||||
"section": "def-common.AgentPolicy",
|
||||
"text": "AgentPolicy"
|
||||
},
|
||||
", \"id\" | \"name\"> & { agents: number; }"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_defend/common/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.IndexDetails",
|
||||
"type": "Interface",
|
||||
"tags": [],
|
||||
"label": "IndexDetails",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/cloud_defend/common/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.IndexDetails.index",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "index",
|
||||
"description": [],
|
||||
"path": "x-pack/plugins/cloud_defend/common/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.IndexDetails.status",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "status",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"empty\" | \"not-empty\" | \"unprivileged\""
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_defend/common/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
}
|
||||
],
|
||||
"enums": [],
|
||||
"misc": [],
|
||||
"objects": []
|
||||
"misc": [
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.AgentPolicyStatus",
|
||||
"type": "Type",
|
||||
"tags": [],
|
||||
"label": "AgentPolicyStatus",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"Pick<",
|
||||
{
|
||||
"pluginId": "fleet",
|
||||
"scope": "common",
|
||||
"docId": "kibFleetPluginApi",
|
||||
"section": "def-common.AgentPolicy",
|
||||
"text": "AgentPolicy"
|
||||
},
|
||||
", \"id\" | \"name\"> & { agents: number; }"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_defend/common/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.CloudDefendSetupStatus",
|
||||
"type": "Type",
|
||||
"tags": [],
|
||||
"label": "CloudDefendSetupStatus",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"CloudDefendSetupInstalledStatus | CloudDefendSetupNotInstalledStatus"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_defend/common/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.CloudDefendStatusCode",
|
||||
"type": "Type",
|
||||
"tags": [],
|
||||
"label": "CloudDefendStatusCode",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"unprivileged\" | \"indexed\" | \"indexing\" | \"index-timeout\" | \"not-deployed\" | \"not-installed\""
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_defend/common/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.IndexStatus",
|
||||
"type": "Type",
|
||||
"tags": [],
|
||||
"label": "IndexStatus",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"empty\" | \"not-empty\" | \"unprivileged\""
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_defend/common/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.PoliciesQueryParams",
|
||||
"type": "Type",
|
||||
"tags": [],
|
||||
"label": "PoliciesQueryParams",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ readonly policy_name?: string | undefined; readonly per_page: number; readonly page: number; readonly sort_field: \"package_policy.id\" | \"package_policy.name\" | \"package_policy.policy_id\" | \"package_policy.namespace\" | \"package_policy.updated_at\" | \"package_policy.updated_by\" | \"package_policy.created_at\" | \"package_policy.created_by\" | \"package_policy.package.name\" | \"package_policy.package.title\"; readonly sort_order: \"asc\" | \"desc\"; }"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_defend/common/schemas/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"initialIsOpen": false
|
||||
}
|
||||
],
|
||||
"objects": [
|
||||
{
|
||||
"parentPluginId": "cloudDefend",
|
||||
"id": "def-common.policiesQueryParamsSchema",
|
||||
"type": "Object",
|
||||
"tags": [],
|
||||
"label": "policiesQueryParamsSchema",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "@kbn/config-schema",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnConfigSchemaPluginApi",
|
||||
"section": "def-common.ObjectType",
|
||||
"text": "ObjectType"
|
||||
},
|
||||
"<{ page: ",
|
||||
{
|
||||
"pluginId": "@kbn/config-schema",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnConfigSchemaPluginApi",
|
||||
"section": "def-common.Type",
|
||||
"text": "Type"
|
||||
},
|
||||
"<number>; per_page: ",
|
||||
{
|
||||
"pluginId": "@kbn/config-schema",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnConfigSchemaPluginApi",
|
||||
"section": "def-common.Type",
|
||||
"text": "Type"
|
||||
},
|
||||
"<number>; sort_field: ",
|
||||
{
|
||||
"pluginId": "@kbn/config-schema",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnConfigSchemaPluginApi",
|
||||
"section": "def-common.Type",
|
||||
"text": "Type"
|
||||
},
|
||||
"<\"package_policy.id\" | \"package_policy.name\" | \"package_policy.policy_id\" | \"package_policy.namespace\" | \"package_policy.updated_at\" | \"package_policy.updated_by\" | \"package_policy.created_at\" | \"package_policy.created_by\" | \"package_policy.package.name\" | \"package_policy.package.title\">; sort_order: ",
|
||||
{
|
||||
"pluginId": "@kbn/config-schema",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnConfigSchemaPluginApi",
|
||||
"section": "def-common.Type",
|
||||
"text": "Type"
|
||||
},
|
||||
"<\"asc\" | \"desc\">; policy_name: ",
|
||||
{
|
||||
"pluginId": "@kbn/config-schema",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnConfigSchemaPluginApi",
|
||||
"section": "def-common.Type",
|
||||
"text": "Type"
|
||||
},
|
||||
"<string | undefined>; }>"
|
||||
],
|
||||
"path": "x-pack/plugins/cloud_defend/common/schemas/v1.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"initialIsOpen": false
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudDefend
|
|||
title: "cloudDefend"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the cloudDefend plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudDefend']
|
||||
---
|
||||
import cloudDefendObj from './cloud_defend.devdocs.json';
|
||||
|
@ -21,7 +21,7 @@ Contact [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 12 | 0 | 4 | 2 |
|
||||
| 24 | 0 | 16 | 2 |
|
||||
|
||||
## Client
|
||||
|
||||
|
@ -48,3 +48,14 @@ Contact [@elastic/sec-cloudnative-integrations](https://github.com/orgs/elastic/
|
|||
### Start
|
||||
<DocDefinitionList data={[cloudDefendObj.server.start]}/>
|
||||
|
||||
## Common
|
||||
|
||||
### Objects
|
||||
<DocDefinitionList data={cloudDefendObj.common.objects}/>
|
||||
|
||||
### Interfaces
|
||||
<DocDefinitionList data={cloudDefendObj.common.interfaces}/>
|
||||
|
||||
### Consts, variables and types
|
||||
<DocDefinitionList data={cloudDefendObj.common.misc}/>
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/cloudExperiments
|
|||
title: "cloudExperiments"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the cloudExperiments plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudExperiments']
|
||||
---
|
||||
import cloudExperimentsObj from './cloud_experiments.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'cloudSecurityPosture']
|
||||
---
|
||||
import cloudSecurityPostureObj from './cloud_security_posture.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'console']
|
||||
---
|
||||
import consoleObj from './console.devdocs.json';
|
||||
|
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/contentManagement
|
|||
title: "contentManagement"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the contentManagement plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'contentManagement']
|
||||
---
|
||||
import contentManagementObj from './content_management.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'controls']
|
||||
---
|
||||
import controlsObj from './controls.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'customIntegrations']
|
||||
---
|
||||
import customIntegrationsObj from './custom_integrations.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboard']
|
||||
---
|
||||
import dashboardObj from './dashboard.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dashboardEnhanced']
|
||||
---
|
||||
import dashboardEnhancedObj from './dashboard_enhanced.devdocs.json';
|
||||
|
|
|
@ -13329,12 +13329,12 @@
|
|||
"path": "x-pack/plugins/lists/public/exceptions/components/builder/helpers.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "threatIntelligence",
|
||||
"path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/flyout/left/hooks/use_threat_intelligence_details.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/flyout/left/components/hooks/use_threat_intelligence_details.test.ts"
|
||||
"plugin": "threatIntelligence",
|
||||
"path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
|
@ -13500,6 +13500,14 @@
|
|||
"plugin": "unifiedFieldList",
|
||||
"path": "src/plugins/unified_field_list/public/hooks/use_existing_fields.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "eventAnnotation",
|
||||
"path": "src/plugins/event_annotation/public/components/group_editor_controls/group_editor_controls.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "eventAnnotation",
|
||||
"path": "src/plugins/event_annotation/public/components/table_list.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "lens",
|
||||
"path": "x-pack/plugins/lens/public/data_views_service/loader.ts"
|
||||
|
@ -13518,11 +13526,11 @@
|
|||
},
|
||||
{
|
||||
"plugin": "dataViews",
|
||||
"path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts"
|
||||
"path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "dataViews",
|
||||
"path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts"
|
||||
"path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "ml",
|
||||
|
@ -20951,12 +20959,12 @@
|
|||
"path": "x-pack/plugins/lists/public/exceptions/components/builder/helpers.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "threatIntelligence",
|
||||
"path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/flyout/left/hooks/use_threat_intelligence_details.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/flyout/left/components/hooks/use_threat_intelligence_details.test.ts"
|
||||
"plugin": "threatIntelligence",
|
||||
"path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
|
@ -21122,6 +21130,14 @@
|
|||
"plugin": "unifiedFieldList",
|
||||
"path": "src/plugins/unified_field_list/public/hooks/use_existing_fields.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "eventAnnotation",
|
||||
"path": "src/plugins/event_annotation/public/components/group_editor_controls/group_editor_controls.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "eventAnnotation",
|
||||
"path": "src/plugins/event_annotation/public/components/table_list.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "lens",
|
||||
"path": "x-pack/plugins/lens/public/data_views_service/loader.ts"
|
||||
|
@ -21140,11 +21156,11 @@
|
|||
},
|
||||
{
|
||||
"plugin": "dataViews",
|
||||
"path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts"
|
||||
"path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "dataViews",
|
||||
"path": "src/plugins/data_views/server/rest_api_routes/update_data_view.ts"
|
||||
"path": "src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "ml",
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data']
|
||||
---
|
||||
import dataObj from './data.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.query']
|
||||
---
|
||||
import dataQueryObj from './data_query.devdocs.json';
|
||||
|
|
|
@ -3209,7 +3209,7 @@
|
|||
"signature": [
|
||||
"{ search?: string | undefined; page?: number | undefined; filter?: any; aggs?: Record<string, ",
|
||||
"AggregationsAggregationContainer",
|
||||
"> | undefined; namespaces?: string[] | undefined; fields?: string[] | undefined; sortField?: string | undefined; preference?: string | undefined; pit?: ",
|
||||
"> | undefined; namespaces?: string[] | undefined; perPage?: number | undefined; fields?: string[] | undefined; sortField?: string | undefined; preference?: string | undefined; pit?: ",
|
||||
{
|
||||
"pluginId": "@kbn/core-saved-objects-api-server",
|
||||
"scope": "common",
|
||||
|
@ -3217,7 +3217,7 @@
|
|||
"section": "def-common.SavedObjectsPitParams",
|
||||
"text": "SavedObjectsPitParams"
|
||||
},
|
||||
" | undefined; perPage?: number | undefined; defaultSearchOperator?: \"AND\" | \"OR\" | undefined; searchFields?: string[] | undefined; rootSearchFields?: string[] | undefined; sortOrder?: ",
|
||||
" | undefined; defaultSearchOperator?: \"AND\" | \"OR\" | undefined; searchFields?: string[] | undefined; rootSearchFields?: string[] | undefined; sortOrder?: ",
|
||||
"SortOrder",
|
||||
" | undefined; searchAfter?: ",
|
||||
"SortResults",
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'data.search']
|
||||
---
|
||||
import dataSearchObj from './data_search.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewEditor']
|
||||
---
|
||||
import dataViewEditorObj from './data_view_editor.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewFieldEditor']
|
||||
---
|
||||
import dataViewFieldEditorObj from './data_view_field_editor.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViewManagement']
|
||||
---
|
||||
import dataViewManagementObj from './data_view_management.devdocs.json';
|
||||
|
|
|
@ -152,12 +152,12 @@
|
|||
"path": "x-pack/plugins/lists/public/exceptions/components/builder/helpers.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "threatIntelligence",
|
||||
"path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/flyout/left/hooks/use_threat_intelligence_details.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/flyout/left/components/hooks/use_threat_intelligence_details.test.ts"
|
||||
"plugin": "threatIntelligence",
|
||||
"path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
|
@ -339,6 +339,14 @@
|
|||
"plugin": "unifiedFieldList",
|
||||
"path": "src/plugins/unified_field_list/public/hooks/use_existing_fields.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "eventAnnotation",
|
||||
"path": "src/plugins/event_annotation/public/components/group_editor_controls/group_editor_controls.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "eventAnnotation",
|
||||
"path": "src/plugins/event_annotation/public/components/table_list.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "lens",
|
||||
"path": "x-pack/plugins/lens/public/data_views_service/loader.ts"
|
||||
|
@ -8420,12 +8428,12 @@
|
|||
"path": "x-pack/plugins/lists/public/exceptions/components/builder/helpers.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "threatIntelligence",
|
||||
"path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/flyout/left/hooks/use_threat_intelligence_details.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/flyout/left/components/hooks/use_threat_intelligence_details.test.ts"
|
||||
"plugin": "threatIntelligence",
|
||||
"path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
|
@ -8607,6 +8615,14 @@
|
|||
"plugin": "unifiedFieldList",
|
||||
"path": "src/plugins/unified_field_list/public/hooks/use_existing_fields.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "eventAnnotation",
|
||||
"path": "src/plugins/event_annotation/public/components/group_editor_controls/group_editor_controls.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "eventAnnotation",
|
||||
"path": "src/plugins/event_annotation/public/components/table_list.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "lens",
|
||||
"path": "x-pack/plugins/lens/public/data_views_service/loader.ts"
|
||||
|
@ -15745,12 +15761,12 @@
|
|||
"path": "x-pack/plugins/lists/public/exceptions/components/builder/helpers.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "threatIntelligence",
|
||||
"path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/flyout/left/hooks/use_threat_intelligence_details.test.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
"path": "x-pack/plugins/security_solution/public/flyout/left/components/hooks/use_threat_intelligence_details.test.ts"
|
||||
"plugin": "threatIntelligence",
|
||||
"path": "x-pack/plugins/threat_intelligence/public/mocks/mock_security_context.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "securitySolution",
|
||||
|
@ -15932,6 +15948,14 @@
|
|||
"plugin": "unifiedFieldList",
|
||||
"path": "src/plugins/unified_field_list/public/hooks/use_existing_fields.ts"
|
||||
},
|
||||
{
|
||||
"plugin": "eventAnnotation",
|
||||
"path": "src/plugins/event_annotation/public/components/group_editor_controls/group_editor_controls.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "eventAnnotation",
|
||||
"path": "src/plugins/event_annotation/public/components/table_list.tsx"
|
||||
},
|
||||
{
|
||||
"plugin": "lens",
|
||||
"path": "x-pack/plugins/lens/public/data_views_service/loader.ts"
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataViews']
|
||||
---
|
||||
import dataViewsObj from './data_views.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'dataVisualizer']
|
||||
---
|
||||
import dataVisualizerObj from './data_visualizer.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
||||
---
|
||||
|
||||
|
@ -18,17 +18,17 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
|||
| ---------------|-----------|-----------|
|
||||
| <DocLink id="kibAlertingPluginApi" section="def-public.PluginSetupContract.registerNavigation" text="registerNavigation"/> | ml, stackAlerts | - |
|
||||
| <DocLink id="kibAlertingPluginApi" section="def-server.RuleExecutorServices.alertFactory" text="alertFactory"/> | ruleRegistry, observability, ml, infra, securitySolution, monitoring, stackAlerts, synthetics, transform | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.DataView.title" text="title"/> | @kbn/es-query, visualizationUiComponents, securitySolution, timelines, lists, threatIntelligence, dataViews, savedObjectsManagement, unifiedSearch, controls, unifiedFieldList, lens, aiops, ml, infra, visTypeTimeseries, apm, triggersActionsUi, exploratoryView, dataVisualizer, fleet, canvas, enterpriseSearch, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, data | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.DataView.title" text="title"/> | @kbn/es-query, visualizationUiComponents, securitySolution, timelines, lists, threatIntelligence, dataViews, savedObjectsManagement, unifiedSearch, controls, unifiedFieldList, lens, aiops, ml, infra, visTypeTimeseries, apm, triggersActionsUi, exploratoryView, dataVisualizer, fleet, canvas, enterpriseSearch, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, data | - |
|
||||
| <DocLink id="kibDataViewsPluginApi" section="def-public.DataView.title" text="title"/> | @kbn/es-query, visualizationUiComponents, securitySolution, timelines, lists, threatIntelligence, data, savedObjectsManagement, unifiedSearch, controls, unifiedFieldList, lens, aiops, ml, infra, visTypeTimeseries, apm, triggersActionsUi, exploratoryView, dataVisualizer, fleet, canvas, enterpriseSearch, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.DataView.title" text="title"/> | @kbn/es-query, visualizationUiComponents, securitySolution, timelines, lists, threatIntelligence, dataViews, savedObjectsManagement, unifiedSearch, controls, unifiedFieldList, eventAnnotation, lens, aiops, ml, infra, visTypeTimeseries, apm, triggersActionsUi, exploratoryView, dataVisualizer, fleet, canvas, enterpriseSearch, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, data | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.DataView.title" text="title"/> | @kbn/es-query, visualizationUiComponents, securitySolution, timelines, lists, threatIntelligence, dataViews, savedObjectsManagement, unifiedSearch, controls, unifiedFieldList, eventAnnotation, lens, aiops, ml, infra, visTypeTimeseries, apm, triggersActionsUi, exploratoryView, dataVisualizer, fleet, canvas, enterpriseSearch, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega, data | - |
|
||||
| <DocLink id="kibDataViewsPluginApi" section="def-public.DataView.title" text="title"/> | @kbn/es-query, visualizationUiComponents, securitySolution, timelines, lists, threatIntelligence, data, savedObjectsManagement, unifiedSearch, controls, unifiedFieldList, eventAnnotation, lens, aiops, ml, infra, visTypeTimeseries, apm, triggersActionsUi, exploratoryView, dataVisualizer, fleet, canvas, enterpriseSearch, graph, stackAlerts, synthetics, transform, upgradeAssistant, ux, maps, dataViewManagement, inputControlVis, visDefaultEditor, presentationUtil, visTypeTimelion, visTypeVega | - |
|
||||
| <DocLink id="kibKibanaReactPluginApi" section="def-public.RedirectAppLinks" text="RedirectAppLinks"/> | home, data, esUiShared, savedObjectsManagement, exploratoryView, fleet, observability, ml, apm, indexLifecycleManagement, observabilityOnboarding, synthetics, upgradeAssistant, ux, kibanaOverview | - |
|
||||
| <DocLink id="kibSecurityPluginApi" section="def-server.SecurityPluginSetup.authc" text="authc"/> | encryptedSavedObjects, actions, data, ml, securitySolution, logstash, cloudChat | - |
|
||||
| <DocLink id="kibSecurityPluginApi" section="def-server.SecurityPluginSetup.authz" text="authz"/> | actions, ml, savedObjectsTagging, enterpriseSearch | - |
|
||||
| <DocLink id="kibKbnCoreLifecycleBrowserPluginApi" section="def-common.CoreStart.savedObjects" text="savedObjects"/> | @kbn/core-plugins-browser-internal, @kbn/core-root-browser-internal, dataViews, home, data, savedObjects, unifiedSearch, presentationUtil, visualizations, dashboard, eventAnnotation, lens, fileUpload, ml, canvas, dashboardEnhanced, monitoring, synthetics, transform, discover, dataVisualizer | - |
|
||||
| <DocLink id="kibKbnCoreLifecycleBrowserPluginApi" section="def-common.CoreStart.savedObjects" text="savedObjects"/> | @kbn/core-plugins-browser-internal, @kbn/core-root-browser-internal, dataViews, home, data, savedObjects, unifiedSearch, presentationUtil, visualizations, dashboard, eventAnnotation, lens, fileUpload, ml, canvas, dashboardEnhanced, monitoring, transform, discover, dataVisualizer | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract" text="SavedObjectsClientContract"/> | @kbn/core-saved-objects-browser, @kbn/core-saved-objects-browser-internal, @kbn/core, dataViews, home, savedObjects, visualizations, eventAnnotation, ml, canvas, lens, visTypeTimeseries, @kbn/core-saved-objects-browser-mocks | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.find" text="find"/> | @kbn/core-saved-objects-browser-mocks, savedObjects, presentationUtil, dashboard, eventAnnotation, ml, dashboardEnhanced, @kbn/core-saved-objects-browser-internal | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.get" text="get"/> | @kbn/core-saved-objects-browser-mocks, dataViews, savedObjects, dashboard, eventAnnotation, ml, dashboardEnhanced, monitoring, @kbn/core-saved-objects-browser-internal | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SimpleSavedObject" text="SimpleSavedObject"/> | @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjects, embeddable, presentationUtil, visualizations, aiops, ml, dataVisualizer, dashboardEnhanced, graph, synthetics, lens, securitySolution, eventAnnotation, @kbn/core-saved-objects-browser-mocks | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SimpleSavedObject" text="SimpleSavedObject"/> | @kbn/core-saved-objects-browser-internal, @kbn/core, savedObjects, embeddable, presentationUtil, visualizations, eventAnnotation, aiops, ml, dataVisualizer, dashboardEnhanced, graph, synthetics, lens, securitySolution, @kbn/core-saved-objects-browser-mocks | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsBrowserMocksPluginApi" section="def-common.savedObjectsServiceMock" text="savedObjectsServiceMock"/> | @kbn/core-lifecycle-browser-mocks, @kbn/core, ml, dataViews, @kbn/core-plugins-browser-internal | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObjectAttributes" text="SavedObjectAttributes"/> | @kbn/core, savedObjects, embeddable, visualizations, canvas, graph, ml, @kbn/core-saved-objects-common, @kbn/core-saved-objects-server, actions, alerting, savedSearch, enterpriseSearch, securitySolution, taskManager, @kbn/core-saved-objects-server-internal, @kbn/core-saved-objects-api-server | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.SearchSource.fetch" text="fetch"/> | stackAlerts, alerting, securitySolution, inputControlVis | - |
|
||||
|
@ -36,7 +36,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
|||
| <DocLink id="kibDataPluginApi" section="def-public.DataPublicPluginStart.fieldFormats" text="fieldFormats"/> | dashboard, dataVisualizer, stackAlerts, expressionPartitionVis | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.SearchSource.fetch" text="fetch"/> | stackAlerts, alerting, securitySolution, inputControlVis | - |
|
||||
| <DocLink id="kibTimelinesPluginApi" section="def-common.DeprecatedCellValueElementProps" text="DeprecatedCellValueElementProps"/> | observability, @kbn/securitysolution-data-table, securitySolution | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObjectReference" text="SavedObjectReference"/> | @kbn/core-saved-objects-api-browser, @kbn/core, savedObjects, savedObjectsManagement, visualizations, eventAnnotation, savedObjectsTagging, lens, graph, dashboard, savedObjectsTaggingOss, kibanaUtils, expressions, dataViews, data, embeddable, controls, uiActionsEnhanced, cases, maps, canvas, dashboardEnhanced, globalSearchProviders, infra | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObjectReference" text="SavedObjectReference"/> | @kbn/core-saved-objects-api-browser, @kbn/core, savedObjects, savedObjectsManagement, visualizations, savedObjectsTagging, eventAnnotation, lens, graph, dashboard, savedObjectsTaggingOss, kibanaUtils, expressions, dataViews, data, embeddable, controls, uiActionsEnhanced, cases, maps, canvas, dashboardEnhanced, globalSearchProviders, infra | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.SearchSource.create" text="create"/> | alerting, discover, securitySolution | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-public.SavedObject.migrationVersion" text="migrationVersion"/> | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-api-server-internal, @kbn/core-saved-objects-import-export-server-internal, @kbn/core-saved-objects-server-internal, home, fleet, securitySolution, graph, lists, alerting | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.SavedObject.migrationVersion" text="migrationVersion"/> | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-api-server-internal, @kbn/core-saved-objects-import-export-server-internal, @kbn/core-saved-objects-server-internal, home, fleet, securitySolution, graph, lists, alerting | - |
|
||||
|
@ -48,7 +48,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
|||
| <DocLink id="kibTimelinesPluginApi" section="def-common.BrowserFields" text="BrowserFields"/> | securitySolution, @kbn/securitysolution-data-table | - |
|
||||
| <DocLink id="kibTimelinesPluginApi" section="def-common.IndexFieldsStrategyRequest" text="IndexFieldsStrategyRequest"/> | securitySolution | - |
|
||||
| <DocLink id="kibTimelinesPluginApi" section="def-common.IndexFieldsStrategyResponse" text="IndexFieldsStrategyResponse"/> | securitySolution | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObject" text="SavedObject"/> | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-api-server, @kbn/core, home, data, savedObjectsTagging, canvas, savedObjects, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-import-export-server-internal, savedObjectsTaggingOss, securitySolution, lists, synthetics, upgradeAssistant, savedObjectsManagement, @kbn/core-ui-settings-server-internal | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObject" text="SavedObject"/> | @kbn/core-saved-objects-api-browser, @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-api-server, @kbn/core, home, data, savedObjectsTagging, canvas, savedObjects, @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-import-export-server-internal, savedObjectsTaggingOss, securitySolution, lists, upgradeAssistant, savedObjectsManagement, synthetics, @kbn/core-ui-settings-server-internal | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsServerPluginApi" section="def-common.SavedObjectsType.convertToMultiNamespaceTypeVersion" text="convertToMultiNamespaceTypeVersion"/> | @kbn/core-saved-objects-migration-server-internal, actions, dataViews, data, alerting, lens, cases, savedObjectsTagging, visualizations, savedSearch, canvas, lists, securitySolution, graph, maps, dashboard, @kbn/core-test-helpers-so-type-serializer | - |
|
||||
| <DocLink id="kibKbnSecuritysolutionListConstantsPluginApi" section="def-common.ENDPOINT_TRUSTED_APPS_LIST_ID" text="ENDPOINT_TRUSTED_APPS_LIST_ID"/> | securitySolution, lists, @kbn/securitysolution-io-ts-list-types | - |
|
||||
| <DocLink id="kibKbnSecuritysolutionListConstantsPluginApi" section="def-common.ENDPOINT_TRUSTED_APPS_LIST_NAME" text="ENDPOINT_TRUSTED_APPS_LIST_NAME"/> | securitySolution, lists, @kbn/securitysolution-io-ts-list-types | - |
|
||||
|
@ -73,7 +73,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
|||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.create" text="create"/> | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, savedObjects, dashboard, eventAnnotation | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.bulkCreate" text="bulkCreate"/> | @kbn/core-saved-objects-browser-mocks, home, eventAnnotation, @kbn/core-saved-objects-browser-internal | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.delete" text="delete"/> | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, savedObjects, visualizations | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.bulkDelete" text="bulkDelete"/> | @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-browser-internal | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.bulkDelete" text="bulkDelete"/> | @kbn/core-saved-objects-browser-mocks, eventAnnotation, @kbn/core-saved-objects-browser-internal | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.bulkGet" text="bulkGet"/> | @kbn/core-saved-objects-browser-mocks, savedObjects, @kbn/core-saved-objects-browser-internal | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.bulkResolve" text="bulkResolve"/> | @kbn/core-saved-objects-browser-mocks, @kbn/core-saved-objects-browser-internal | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.update" text="update"/> | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-browser-mocks, eventAnnotation, savedObjects | - |
|
||||
|
@ -85,11 +85,11 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
|||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsCreateOptions.migrationVersion" text="migrationVersion"/> | @kbn/core-saved-objects-browser-internal, @kbn/core-saved-objects-api-server-internal, canvas | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsDeleteOptions" text="SavedObjectsDeleteOptions"/> | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsBatchResponse" text="SavedObjectsBatchResponse"/> | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsFindOptions" text="SavedObjectsFindOptions"/> | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsFindOptions" text="SavedObjectsFindOptions"/> | @kbn/core-saved-objects-browser-internal, @kbn/core, eventAnnotation | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsUpdateOptions" text="SavedObjectsUpdateOptions"/> | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.ResolvedSimpleSavedObject" text="ResolvedSimpleSavedObject"/> | @kbn/core-saved-objects-browser-internal, @kbn/core, spaces, savedSearch, visualizations, lens, cases, maps, canvas, graph | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsBulkUpdateObject" text="SavedObjectsBulkUpdateObject"/> | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsFindResponse" text="SavedObjectsFindResponse"/> | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsFindResponse" text="SavedObjectsFindResponse"/> | @kbn/core-saved-objects-browser-internal, @kbn/core, eventAnnotation | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsBulkCreateOptions" text="SavedObjectsBulkCreateOptions"/> | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsBulkCreateObject" text="SavedObjectsBulkCreateObject"/> | @kbn/core-saved-objects-browser-internal, @kbn/core | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsBulkDeleteResponse" text="SavedObjectsBulkDeleteResponse"/> | @kbn/core-saved-objects-browser-internal | - |
|
||||
|
@ -130,6 +130,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
|||
| <DocLink id="kibExpressionPartitionVisPluginApi" section="def-common.LabelsParams.truncate" text="truncate"/> | visTypePie | - |
|
||||
| <DocLink id="kibExpressionPartitionVisPluginApi" section="def-common.LabelsParams.last_level" text="last_level"/> | visTypePie | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsServerPluginApi" section="def-common.SavedObjectMigrationContext.convertToMultiNamespaceTypeVersion" text="convertToMultiNamespaceTypeVersion"/> | encryptedSavedObjects | - |
|
||||
| <DocLink id="kibKbnContentManagementTableListViewTablePluginApi" section="def-common.TableListViewTableProps.withoutPageTemplateWrapper" text="withoutPageTemplateWrapper"/> | @kbn/content-management-table-list-view, filesManagement | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsBulkUpdateOptions" text="SavedObjectsBulkUpdateOptions"/> | @kbn/core | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsBulkResolveResponse" text="SavedObjectsBulkResolveResponse"/> | @kbn/core | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObjectAttributeSingle" text="SavedObjectAttributeSingle"/> | @kbn/core | - |
|
||||
|
|
|
@ -7,11 +7,19 @@ 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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
||||
---
|
||||
|
||||
|
||||
## @kbn/content-management-table-list-view
|
||||
|
||||
| Deprecated API | Reference location(s) | Remove By |
|
||||
| ---------------|-----------|-----------|
|
||||
| <DocLink id="kibKbnContentManagementTableListViewTablePluginApi" section="def-common.TableListViewTableProps.withoutPageTemplateWrapper" text="withoutPageTemplateWrapper"/> | [table_list_view.tsx](https://github.com/elastic/kibana/tree/main/packages/content-management/table_list_view/src/table_list_view.tsx#:~:text=withoutPageTemplateWrapper), [table_list_view.tsx](https://github.com/elastic/kibana/tree/main/packages/content-management/table_list_view/src/table_list_view.tsx#:~:text=withoutPageTemplateWrapper) | - |
|
||||
|
||||
|
||||
|
||||
## @kbn/core
|
||||
|
||||
| Deprecated API | Reference location(s) | Remove By |
|
||||
|
@ -535,12 +543,12 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
|||
|
||||
| Deprecated API | Reference location(s) | Remove By |
|
||||
| ---------------|-----------|-----------|
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.DataView.title" text="title"/> | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [update_data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/server/rest_api_routes/update_data_view.ts#:~:text=title), [update_data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/server/rest_api_routes/update_data_view.ts#:~:text=title), [data_views.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_views.ts#:~:text=title) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.DataView.title" text="title"/> | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [update_data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts#:~:text=title), [update_data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts#:~:text=title), [data_views.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_views.ts#:~:text=title) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.DataView.flattenHit" text="flattenHit"/> | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=flattenHit) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.DataView.removeScriptedField" text="removeScriptedField"/> | [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=removeScriptedField) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.DataView.getNonScriptedFields" text="getNonScriptedFields"/> | [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getNonScriptedFields) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.DataView.getScriptedFields" text="getScriptedFields"/> | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=getScriptedFields), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=getScriptedFields), [data_views.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_views.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields), [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getScriptedFields) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.DataView.title" text="title"/> | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [update_data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/server/rest_api_routes/update_data_view.ts#:~:text=title), [update_data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/server/rest_api_routes/update_data_view.ts#:~:text=title), [data_views.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_views.ts#:~:text=title) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.DataView.title" text="title"/> | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=title), [update_data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts#:~:text=title), [update_data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/server/rest_api_routes/public/update_data_view.ts#:~:text=title), [data_views.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_views.ts#:~:text=title) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.DataView.flattenHit" text="flattenHit"/> | [data_view.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.ts#:~:text=flattenHit) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.DataView.removeScriptedField" text="removeScriptedField"/> | [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=removeScriptedField) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.DataView.getNonScriptedFields" text="getNonScriptedFields"/> | [data_view.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/data_views/common/data_views/data_view.test.ts#:~:text=getNonScriptedFields) | - |
|
||||
|
@ -638,15 +646,21 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
|||
|
||||
| Deprecated API | Reference location(s) | Remove By |
|
||||
| ---------------|-----------|-----------|
|
||||
| <DocLink id="kibKbnCoreLifecycleBrowserPluginApi" section="def-common.CoreStart.savedObjects" text="savedObjects"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-common.DataView.title" text="title"/> | [group_editor_controls.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/components/group_editor_controls/group_editor_controls.tsx#:~:text=title), [table_list.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/components/table_list.tsx#:~:text=title), [group_editor_controls.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/components/group_editor_controls/group_editor_controls.tsx#:~:text=title), [table_list.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/components/table_list.tsx#:~:text=title) | - |
|
||||
| <DocLink id="kibDataPluginApi" section="def-server.DataView.title" text="title"/> | [group_editor_controls.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/components/group_editor_controls/group_editor_controls.tsx#:~:text=title), [table_list.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/components/table_list.tsx#:~:text=title), [group_editor_controls.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/components/group_editor_controls/group_editor_controls.tsx#:~:text=title), [table_list.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/components/table_list.tsx#:~:text=title) | - |
|
||||
| <DocLink id="kibDataViewsPluginApi" section="def-public.DataView.title" text="title"/> | [group_editor_controls.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/components/group_editor_controls/group_editor_controls.tsx#:~:text=title), [table_list.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/components/table_list.tsx#:~:text=title) | - |
|
||||
| <DocLink id="kibKbnCoreLifecycleBrowserPluginApi" section="def-common.CoreStart.savedObjects" text="savedObjects"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=savedObjects) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract" text="SavedObjectsClientContract"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SavedObjectsClientContract), [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SavedObjectsClientContract) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.create" text="create"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=create), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=create), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=create) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.bulkCreate" text="bulkCreate"/> | [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=bulkCreate) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.find" text="find"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=find) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.bulkDelete" text="bulkDelete"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=bulkDelete), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=bulkDelete) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.find" text="find"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=find), [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=find), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=find), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=find) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.get" text="get"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=get), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=get) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsClientContract.update" text="update"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=update), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=update) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SimpleSavedObject" text="SimpleSavedObject"/> | [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=SimpleSavedObject), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=SimpleSavedObject) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObjectReference" text="SavedObjectReference"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SavedObjectReference), [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SavedObjectReference) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SimpleSavedObject" text="SimpleSavedObject"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SimpleSavedObject), [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SimpleSavedObject), [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SimpleSavedObject), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=SimpleSavedObject), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=SimpleSavedObject) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsFindOptions" text="SavedObjectsFindOptions"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SavedObjectsFindOptions), [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SavedObjectsFindOptions) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SavedObjectsFindResponse" text="SavedObjectsFindResponse"/> | [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=SavedObjectsFindResponse), [service.test.ts](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.test.ts#:~:text=SavedObjectsFindResponse) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObjectReference" text="SavedObjectReference"/> | [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SavedObjectReference), [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SavedObjectReference), [service.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/event_annotation/public/event_annotation_service/service.tsx#:~:text=SavedObjectReference) | - |
|
||||
|
||||
|
||||
|
||||
|
@ -687,6 +701,14 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
|||
|
||||
|
||||
|
||||
## filesManagement
|
||||
|
||||
| Deprecated API | Reference location(s) | Remove By |
|
||||
| ---------------|-----------|-----------|
|
||||
| <DocLink id="kibKbnContentManagementTableListViewTablePluginApi" section="def-common.TableListViewTableProps.withoutPageTemplateWrapper" text="withoutPageTemplateWrapper"/> | [app.tsx](https://github.com/elastic/kibana/tree/main/src/plugins/files_management/public/app.tsx#:~:text=withoutPageTemplateWrapper) | - |
|
||||
|
||||
|
||||
|
||||
## fleet
|
||||
|
||||
| Deprecated API | Reference location(s) | Remove By |
|
||||
|
@ -823,7 +845,7 @@ tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
|||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SimpleSavedObject" text="SimpleSavedObject"/> | [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=SimpleSavedObject), [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=SimpleSavedObject) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.ResolvedSimpleSavedObject" text="ResolvedSimpleSavedObject"/> | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/types.ts#:~:text=ResolvedSimpleSavedObject) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsBrowserMocksPluginApi" section="def-common.simpleSavedObjectMock" text="simpleSavedObjectMock"/> | [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=simpleSavedObjectMock), [find_object_by_title.test.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_objects_utils/find_object_by_title.test.ts#:~:text=simpleSavedObjectMock) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObjectReference" text="SavedObjectReference"/> | [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference)+ 48 more | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObjectReference" text="SavedObjectReference"/> | [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [saved_object_store.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/persistence/saved_object_store.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [selectors.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/state_management/selectors.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference), [state_helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/public/editor_frame_service/editor_frame/state_helpers.ts#:~:text=SavedObjectReference)+ 48 more | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsServerPluginApi" section="def-common.SavedObjectsType.convertToMultiNamespaceTypeVersion" text="convertToMultiNamespaceTypeVersion"/> | [saved_objects.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/lens/server/saved_objects.ts#:~:text=convertToMultiNamespaceTypeVersion) | - |
|
||||
|
||||
|
||||
|
@ -1137,7 +1159,7 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/
|
|||
| <DocLink id="kibTimelinesPluginApi" section="def-common.DeprecatedRowRenderer" text="DeprecatedRowRenderer"/> | [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/events_viewer/index.tsx#:~:text=DeprecatedRowRenderer), [index.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/events_viewer/index.tsx#:~:text=DeprecatedRowRenderer) | - |
|
||||
| <DocLink id="kibTimelinesPluginApi" section="def-common.BeatFields" text="BeatFields"/> | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=BeatFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=BeatFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=BeatFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=BeatFields) | - |
|
||||
| <DocLink id="kibTimelinesPluginApi" section="def-common.BrowserField" text="BrowserField"/> | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=BrowserField), [helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/drag_and_drop/helpers.ts#:~:text=BrowserField), [helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/drag_and_drop/helpers.ts#:~:text=BrowserField), [helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/drag_and_drop/helpers.ts#:~:text=BrowserField), [helpers.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/drag_and_drop/helpers.ts#:~:text=BrowserField), [columns.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/event_details/columns.tsx#:~:text=BrowserField), [columns.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/event_details/columns.tsx#:~:text=BrowserField), [enrichment_summary.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/event_details/cti_details/enrichment_summary.tsx#:~:text=BrowserField), [enrichment_summary.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/components/event_details/cti_details/enrichment_summary.tsx#:~:text=BrowserField), [use_data_view.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/containers/source/use_data_view.tsx#:~:text=BrowserField)+ 31 more | - |
|
||||
| <DocLink id="kibTimelinesPluginApi" section="def-common.BrowserFields" text="BrowserFields"/> | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/timeline/cells/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/timeline/cells/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields)+ 102 more | - |
|
||||
| <DocLink id="kibTimelinesPluginApi" section="def-common.BrowserFields" text="BrowserFields"/> | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/timeline/cells/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/timeline/cells/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/types/header_actions/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/lib/kuery/index.ts#:~:text=BrowserFields)+ 104 more | - |
|
||||
| <DocLink id="kibTimelinesPluginApi" section="def-common.IndexFieldsStrategyRequest" text="IndexFieldsStrategyRequest"/> | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyRequest), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyRequest), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyRequest) | - |
|
||||
| <DocLink id="kibTimelinesPluginApi" section="def-common.IndexFieldsStrategyResponse" text="IndexFieldsStrategyResponse"/> | [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/common/search_strategy/index_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/server/search_strategy/endpoint_fields/index.ts#:~:text=IndexFieldsStrategyResponse), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyResponse), [middleware.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts#:~:text=IndexFieldsStrategyResponse) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SimpleSavedObject" text="SimpleSavedObject"/> | [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/hooks/types.ts#:~:text=SimpleSavedObject), [types.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/security_solution/public/common/hooks/types.ts#:~:text=SimpleSavedObject) | - |
|
||||
|
@ -1204,9 +1226,8 @@ migrates to using the Kibana Privilege model: https://github.com/elastic/kibana/
|
|||
| <DocLink id="kibDataViewsPluginApi" section="def-public.DataView.title" text="title"/> | [filter_group.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/components/overview/filter_group/filter_group.tsx#:~:text=title), [filters_expression_select.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/components/overview/alerts/monitor_expressions/filters_expression_select.tsx#:~:text=title) | - |
|
||||
| <DocLink id="kibDiscoverPluginApi" section="def-common.DiscoverAppLocatorParams.indexPatternId" text="indexPatternId"/> | [stderr_logs.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/common/components/stderr_logs.tsx#:~:text=indexPatternId) | - |
|
||||
| <DocLink id="kibKibanaReactPluginApi" section="def-public.RedirectAppLinks" text="RedirectAppLinks"/> | [alert_messages.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [alert_messages.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [alert_messages.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/lib/alert_types/alert_messages.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [uptime_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/legacy_uptime/app/uptime_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks), [synthetics_app.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/synthetics_app.tsx#:~:text=RedirectAppLinks) | - |
|
||||
| <DocLink id="kibKbnCoreLifecycleBrowserPluginApi" section="def-common.CoreStart.savedObjects" text="savedObjects"/> | [delete_param.tsx](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/components/settings/global_params/delete_param.tsx#:~:text=savedObjects), [plugin.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/plugin.ts#:~:text=savedObjects) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsApiBrowserPluginApi" section="def-common.SimpleSavedObject" text="SimpleSavedObject"/> | [synthetics_monitor.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/common/types/synthetics_monitor.ts#:~:text=SimpleSavedObject), [synthetics_monitor.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/common/types/synthetics_monitor.ts#:~:text=SimpleSavedObject) | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObject" text="SavedObject"/> | [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/monitor_details/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/monitor_details/api.ts#:~:text=SavedObject), [actions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/actions.ts#:~:text=SavedObject), [actions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/actions.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/api.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/index.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/index.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/monitor_list/api.ts#:~:text=SavedObject)+ 6 more | - |
|
||||
| <DocLink id="kibKbnCoreSavedObjectsCommonPluginApi" section="def-common.SavedObject" text="SavedObject"/> | [actions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/actions.ts#:~:text=SavedObject), [actions.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/actions.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/api.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/index.ts#:~:text=SavedObject), [index.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/global_params/index.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/monitor_list/api.ts#:~:text=SavedObject), [api.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/monitor_list/api.ts#:~:text=SavedObject), [effects.ts](https://github.com/elastic/kibana/tree/main/x-pack/plugins/synthetics/public/apps/synthetics/state/monitor_list/effects.ts#:~:text=SavedObject)+ 1 more | - |
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana']
|
||||
---
|
||||
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'devTools']
|
||||
---
|
||||
import devToolsObj from './dev_tools.devdocs.json';
|
||||
|
|
|
@ -370,6 +370,55 @@
|
|||
"path": "src/plugins/discover/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "discover",
|
||||
"id": "def-public.DiscoverStart.customize",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "customize",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(profileName: string, callback: ",
|
||||
"CustomizationCallback",
|
||||
") => void"
|
||||
],
|
||||
"path": "src/plugins/discover/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "discover",
|
||||
"id": "def-public.DiscoverStart.customize.$1",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "profileName",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string"
|
||||
],
|
||||
"path": "src/plugins/discover/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
},
|
||||
{
|
||||
"parentPluginId": "discover",
|
||||
"id": "def-public.DiscoverStart.customize.$2",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "callback",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"CustomizationCallback"
|
||||
],
|
||||
"path": "src/plugins/discover/public/plugin.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": []
|
||||
}
|
||||
],
|
||||
"lifecycle": "start",
|
||||
|
@ -1233,6 +1282,22 @@
|
|||
"path": "src/plugins/discover/common/locator.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "discover",
|
||||
"id": "def-common.DiscoverAppLocatorParams.profile",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "profile",
|
||||
"description": [
|
||||
"\nThe Discover profile to use"
|
||||
],
|
||||
"signature": [
|
||||
"string | undefined"
|
||||
],
|
||||
"path": "src/plugins/discover/common/locator.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discover']
|
||||
---
|
||||
import discoverObj from './discover.devdocs.json';
|
||||
|
@ -21,7 +21,7 @@ Contact [@elastic/kibana-data-discovery](https://github.com/orgs/elastic/teams/k
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 83 | 0 | 64 | 7 |
|
||||
| 87 | 0 | 67 | 8 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'discoverEnhanced']
|
||||
---
|
||||
import discoverEnhancedObj from './discover_enhanced.devdocs.json';
|
||||
|
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/ecsDataQualityDashboard
|
|||
title: "ecsDataQualityDashboard"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the ecsDataQualityDashboard plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'ecsDataQualityDashboard']
|
||||
---
|
||||
import ecsDataQualityDashboardObj from './ecs_data_quality_dashboard.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddable']
|
||||
---
|
||||
import embeddableObj from './embeddable.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'embeddableEnhanced']
|
||||
---
|
||||
import embeddableEnhancedObj from './embeddable_enhanced.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'encryptedSavedObjects']
|
||||
---
|
||||
import encryptedSavedObjectsObj from './encrypted_saved_objects.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'enterpriseSearch']
|
||||
---
|
||||
import enterpriseSearchObj from './enterprise_search.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'esUiShared']
|
||||
---
|
||||
import esUiSharedObj from './es_ui_shared.devdocs.json';
|
||||
|
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/essSecurity
|
|||
title: "essSecurity"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the essSecurity plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'essSecurity']
|
||||
---
|
||||
import essSecurityObj from './ess_security.devdocs.json';
|
||||
|
|
|
@ -3,6 +3,95 @@
|
|||
"client": {
|
||||
"classes": [],
|
||||
"functions": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.AnnotationEditorControls",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "AnnotationEditorControls",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(props: ",
|
||||
"Props",
|
||||
") => JSX.Element"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/components/annotation_editor_controls/index.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.AnnotationEditorControls.$1",
|
||||
"type": "Object",
|
||||
"tags": [],
|
||||
"label": "props",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"Props"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/components/annotation_editor_controls/index.tsx",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": [],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.getAnnotationAccessor",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "getAnnotationAccessor",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(annotation: ",
|
||||
{
|
||||
"pluginId": "eventAnnotation",
|
||||
"scope": "common",
|
||||
"docId": "kibEventAnnotationPluginApi",
|
||||
"section": "def-common.EventAnnotationConfig",
|
||||
"text": "EventAnnotationConfig"
|
||||
},
|
||||
") => ",
|
||||
{
|
||||
"pluginId": "visualizationUiComponents",
|
||||
"scope": "public",
|
||||
"docId": "kibVisualizationUiComponentsPluginApi",
|
||||
"section": "def-public.AccessorConfig",
|
||||
"text": "AccessorConfig"
|
||||
}
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/components/get_annotation_accessor.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.getAnnotationAccessor.$1",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "annotation",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "eventAnnotation",
|
||||
"scope": "common",
|
||||
"docId": "kibEventAnnotationPluginApi",
|
||||
"section": "def-common.EventAnnotationConfig",
|
||||
"text": "EventAnnotationConfig"
|
||||
}
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/components/get_annotation_accessor.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": [],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.isManualPointAnnotationConfig",
|
||||
|
@ -221,6 +310,147 @@
|
|||
],
|
||||
"returnComment": []
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.EventAnnotationServiceType.findAnnotationGroupContent",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "findAnnotationGroupContent",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(searchTerm: string, pageSize: number, references?: ",
|
||||
{
|
||||
"pluginId": "@kbn/core-saved-objects-api-server",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
|
||||
"section": "def-common.SavedObjectsFindOptionsReference",
|
||||
"text": "SavedObjectsFindOptionsReference"
|
||||
},
|
||||
"[] | undefined, referencesToExclude?: ",
|
||||
{
|
||||
"pluginId": "@kbn/core-saved-objects-api-server",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
|
||||
"section": "def-common.SavedObjectsFindOptionsReference",
|
||||
"text": "SavedObjectsFindOptionsReference"
|
||||
},
|
||||
"[] | undefined) => Promise<{ total: number; hits: ",
|
||||
"EventAnnotationGroupContent",
|
||||
"[]; }>"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/event_annotation_service/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.EventAnnotationServiceType.findAnnotationGroupContent.$1",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "searchTerm",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/event_annotation_service/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.EventAnnotationServiceType.findAnnotationGroupContent.$2",
|
||||
"type": "number",
|
||||
"tags": [],
|
||||
"label": "pageSize",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"number"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/event_annotation_service/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.EventAnnotationServiceType.findAnnotationGroupContent.$3",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "references",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "@kbn/core-saved-objects-api-server",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
|
||||
"section": "def-common.SavedObjectsFindOptionsReference",
|
||||
"text": "SavedObjectsFindOptionsReference"
|
||||
},
|
||||
"[] | undefined"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/event_annotation_service/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.EventAnnotationServiceType.findAnnotationGroupContent.$4",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "referencesToExclude",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "@kbn/core-saved-objects-api-server",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnCoreSavedObjectsApiServerPluginApi",
|
||||
"section": "def-common.SavedObjectsFindOptionsReference",
|
||||
"text": "SavedObjectsFindOptionsReference"
|
||||
},
|
||||
"[] | undefined"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/event_annotation_service/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": false
|
||||
}
|
||||
],
|
||||
"returnComment": []
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.EventAnnotationServiceType.deleteAnnotationGroups",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "deleteAnnotationGroups",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(ids: string[]) => Promise<void>"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/event_annotation_service/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.EventAnnotationServiceType.deleteAnnotationGroups.$1",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "ids",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string[]"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/event_annotation_service/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": []
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.EventAnnotationServiceType.createAnnotationGroup",
|
||||
|
@ -628,6 +858,29 @@
|
|||
],
|
||||
"enums": [],
|
||||
"misc": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.annotationsIconSet",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "annotationsIconSet",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ value: ",
|
||||
{
|
||||
"pluginId": "eventAnnotation",
|
||||
"scope": "common",
|
||||
"docId": "kibEventAnnotationPluginApi",
|
||||
"section": "def-common.AvailableAnnotationIcon",
|
||||
"text": "AvailableAnnotationIcon"
|
||||
},
|
||||
"; label: string; icon?: string | React.ComponentClass<{}, any> | React.FunctionComponent<{}> | undefined; shouldRotate?: boolean | undefined; canFill?: boolean | undefined; }[]"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/public/components/annotation_editor_controls/icon_set.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-public.defaultAnnotationColor",
|
||||
|
@ -783,6 +1036,91 @@
|
|||
"common": {
|
||||
"classes": [],
|
||||
"functions": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.createCopiedAnnotation",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "createCopiedAnnotation",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(newId: string, timestamp: string, source?: ",
|
||||
{
|
||||
"pluginId": "eventAnnotation",
|
||||
"scope": "common",
|
||||
"docId": "kibEventAnnotationPluginApi",
|
||||
"section": "def-common.EventAnnotationConfig",
|
||||
"text": "EventAnnotationConfig"
|
||||
},
|
||||
" | undefined) => ",
|
||||
{
|
||||
"pluginId": "eventAnnotation",
|
||||
"scope": "common",
|
||||
"docId": "kibEventAnnotationPluginApi",
|
||||
"section": "def-common.EventAnnotationConfig",
|
||||
"text": "EventAnnotationConfig"
|
||||
}
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/create_copied_annotation.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.createCopiedAnnotation.$1",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "newId",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/create_copied_annotation.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.createCopiedAnnotation.$2",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "timestamp",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/create_copied_annotation.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.createCopiedAnnotation.$3",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "source",
|
||||
"description": [],
|
||||
"signature": [
|
||||
{
|
||||
"pluginId": "eventAnnotation",
|
||||
"scope": "common",
|
||||
"docId": "kibEventAnnotationPluginApi",
|
||||
"section": "def-common.EventAnnotationConfig",
|
||||
"text": "EventAnnotationConfig"
|
||||
},
|
||||
" | undefined"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/create_copied_annotation.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": false
|
||||
}
|
||||
],
|
||||
"returnComment": [],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.eventAnnotationGroup",
|
||||
|
@ -841,6 +1179,131 @@
|
|||
"children": [],
|
||||
"returnComment": [],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.getDefaultManualAnnotation",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "getDefaultManualAnnotation",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(id: string, timestamp: string) => ",
|
||||
{
|
||||
"pluginId": "eventAnnotation",
|
||||
"scope": "common",
|
||||
"docId": "kibEventAnnotationPluginApi",
|
||||
"section": "def-common.EventAnnotationConfig",
|
||||
"text": "EventAnnotationConfig"
|
||||
}
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.getDefaultManualAnnotation.$1",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "id",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.getDefaultManualAnnotation.$2",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "timestamp",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/manual_event_annotation/index.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": [],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.getDefaultQueryAnnotation",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "getDefaultQueryAnnotation",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(id: string, fieldName: string, timeField: string) => ",
|
||||
{
|
||||
"pluginId": "eventAnnotation",
|
||||
"scope": "common",
|
||||
"docId": "kibEventAnnotationPluginApi",
|
||||
"section": "def-common.EventAnnotationConfig",
|
||||
"text": "EventAnnotationConfig"
|
||||
}
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.getDefaultQueryAnnotation.$1",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "id",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.getDefaultQueryAnnotation.$2",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "fieldName",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.getDefaultQueryAnnotation.$3",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "timeField",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/query_point_event_annotation/index.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": [],
|
||||
"initialIsOpen": false
|
||||
}
|
||||
],
|
||||
"interfaces": [
|
||||
|
@ -943,20 +1406,6 @@
|
|||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.EventAnnotationGroupAttributes.tags",
|
||||
"type": "Array",
|
||||
"tags": [],
|
||||
"label": "tags",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string[]"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/types.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.EventAnnotationGroupAttributes.ignoreGlobalFilters",
|
||||
|
@ -992,7 +1441,7 @@
|
|||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.EventAnnotationGroupAttributes.dataViewSpec",
|
||||
"type": "Object",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "dataViewSpec",
|
||||
"description": [],
|
||||
|
@ -1004,7 +1453,7 @@
|
|||
"section": "def-common.DataViewSpec",
|
||||
"text": "DataViewSpec"
|
||||
},
|
||||
" | undefined"
|
||||
" | null | undefined"
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -1170,6 +1619,21 @@
|
|||
],
|
||||
"enums": [],
|
||||
"misc": [
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.ANNOTATIONS_LISTING_VIEW_ID",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "ANNOTATIONS_LISTING_VIEW_ID",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"\"annotations\""
|
||||
],
|
||||
"path": "src/plugins/event_annotation/common/constants.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "eventAnnotation",
|
||||
"id": "def-common.AvailableAnnotationIcon",
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventAnnotation']
|
||||
---
|
||||
import eventAnnotationObj from './event_annotation.devdocs.json';
|
||||
|
@ -21,7 +21,7 @@ Contact [@elastic/kibana-visualizations](https://github.com/orgs/elastic/teams/k
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 204 | 30 | 204 | 3 |
|
||||
| 227 | 30 | 227 | 4 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'eventLog']
|
||||
---
|
||||
import eventLogObj from './event_log.devdocs.json';
|
||||
|
|
|
@ -1237,7 +1237,17 @@
|
|||
"signature": [
|
||||
"{ navigation: { PageTemplate: (pageTemplateProps: ",
|
||||
"WrappedPageTemplateProps",
|
||||
") => JSX.Element; }; updateGlobalNavigation: ({ capabilities, deepLinks, updater$, }: { capabilities: Readonly<{ [x: string]: Readonly<{ [x: string]: boolean | Readonly<{ [x: string]: boolean; }>; }>; navLinks: Readonly<{ [x: string]: boolean; }>; management: Readonly<{ [x: string]: Readonly<{ [x: string]: boolean; }>; }>; catalogue: Readonly<{ [x: string]: boolean; }>; }>; deepLinks: ",
|
||||
") => JSX.Element; registerSections: (sections$: ",
|
||||
"Observable",
|
||||
"<",
|
||||
{
|
||||
"pluginId": "observabilityShared",
|
||||
"scope": "public",
|
||||
"docId": "kibObservabilitySharedPluginApi",
|
||||
"section": "def-public.NavigationSection",
|
||||
"text": "NavigationSection"
|
||||
},
|
||||
"[]>) => void; }; updateGlobalNavigation: ({ capabilities, deepLinks, updater$, }: { capabilities: Readonly<{ [x: string]: Readonly<{ [x: string]: boolean | Readonly<{ [x: string]: boolean; }>; }>; navLinks: Readonly<{ [x: string]: boolean; }>; management: Readonly<{ [x: string]: Readonly<{ [x: string]: boolean; }>; }>; catalogue: Readonly<{ [x: string]: boolean; }>; }>; deepLinks: ",
|
||||
{
|
||||
"pluginId": "@kbn/core-application-browser",
|
||||
"scope": "common",
|
||||
|
@ -1245,7 +1255,7 @@
|
|||
"section": "def-common.AppDeepLink",
|
||||
"text": "AppDeepLink"
|
||||
},
|
||||
"[]; updater$: ",
|
||||
"<string>[]; updater$: ",
|
||||
"Subject",
|
||||
"<",
|
||||
{
|
||||
|
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/exploratoryView
|
|||
title: "exploratoryView"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the exploratoryView plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'exploratoryView']
|
||||
---
|
||||
import exploratoryViewObj from './exploratory_view.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionError']
|
||||
---
|
||||
import expressionErrorObj from './expression_error.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionGauge']
|
||||
---
|
||||
import expressionGaugeObj from './expression_gauge.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionHeatmap']
|
||||
---
|
||||
import expressionHeatmapObj from './expression_heatmap.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionImage']
|
||||
---
|
||||
import expressionImageObj from './expression_image.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionLegacyMetricVis']
|
||||
---
|
||||
import expressionLegacyMetricVisObj from './expression_legacy_metric_vis.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetric']
|
||||
---
|
||||
import expressionMetricObj from './expression_metric.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionMetricVis']
|
||||
---
|
||||
import expressionMetricVisObj from './expression_metric_vis.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionPartitionVis']
|
||||
---
|
||||
import expressionPartitionVisObj from './expression_partition_vis.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRepeatImage']
|
||||
---
|
||||
import expressionRepeatImageObj from './expression_repeat_image.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionRevealImage']
|
||||
---
|
||||
import expressionRevealImageObj from './expression_reveal_image.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionShape']
|
||||
---
|
||||
import expressionShapeObj from './expression_shape.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionTagcloud']
|
||||
---
|
||||
import expressionTagcloudObj from './expression_tagcloud.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressionXY']
|
||||
---
|
||||
import expressionXYObj from './expression_x_y.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'expressions']
|
||||
---
|
||||
import expressionsObj from './expressions.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'features']
|
||||
---
|
||||
import featuresObj from './features.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fieldFormats']
|
||||
---
|
||||
import fieldFormatsObj from './field_formats.devdocs.json';
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fileUpload']
|
||||
---
|
||||
import fileUploadObj from './file_upload.devdocs.json';
|
||||
|
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/files
|
|||
title: "files"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the files plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'files']
|
||||
---
|
||||
import filesObj from './files.devdocs.json';
|
||||
|
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/filesManagement
|
|||
title: "filesManagement"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the filesManagement plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'filesManagement']
|
||||
---
|
||||
import filesManagementObj from './files_management.devdocs.json';
|
||||
|
|
|
@ -4652,7 +4652,7 @@
|
|||
"\nList agents"
|
||||
],
|
||||
"signature": [
|
||||
"(options: Readonly<{ page?: number | undefined; kuery?: any; sortField?: string | undefined; perPage?: number | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; showUpgradeable?: boolean | undefined; } & {}> & { showInactive: boolean; }) => Promise<{ agents: ",
|
||||
"(options: Readonly<{ page?: number | undefined; perPage?: number | undefined; kuery?: any; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; showUpgradeable?: boolean | undefined; } & {}> & { showInactive: boolean; }) => Promise<{ agents: ",
|
||||
{
|
||||
"pluginId": "fleet",
|
||||
"scope": "common",
|
||||
|
@ -4674,7 +4674,7 @@
|
|||
"label": "options",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"Readonly<{ page?: number | undefined; kuery?: any; sortField?: string | undefined; perPage?: number | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; showUpgradeable?: boolean | undefined; } & {}> & { showInactive: boolean; }"
|
||||
"Readonly<{ page?: number | undefined; perPage?: number | undefined; kuery?: any; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; showUpgradeable?: boolean | undefined; } & {}> & { showInactive: boolean; }"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/server/services/agents/agent_service.ts",
|
||||
"deprecated": false,
|
||||
|
@ -4791,7 +4791,15 @@
|
|||
"section": "def-common.SavedObjectsClientContract",
|
||||
"text": "SavedObjectsClientContract"
|
||||
},
|
||||
", options: Readonly<{ page?: number | undefined; kuery?: any; sortField?: string | undefined; perPage?: number | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; showUpgradeable?: boolean | undefined; } & {}> & { withPackagePolicies?: boolean | undefined; fields?: string[] | undefined; }) => Promise<{ items: ",
|
||||
", options: Readonly<{ page?: number | undefined; perPage?: number | undefined; kuery?: any; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; showUpgradeable?: boolean | undefined; } & {}> & { withPackagePolicies?: boolean | undefined; fields?: string[] | undefined; esClient?: ",
|
||||
{
|
||||
"pluginId": "@kbn/core-elasticsearch-server",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnCoreElasticsearchServerPluginApi",
|
||||
"section": "def-common.ElasticsearchClient",
|
||||
"text": "ElasticsearchClient"
|
||||
},
|
||||
" | undefined; withAgentCount?: boolean | undefined; }) => Promise<{ items: ",
|
||||
{
|
||||
"pluginId": "fleet",
|
||||
"scope": "common",
|
||||
|
@ -4834,7 +4842,15 @@
|
|||
"label": "options",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"Readonly<{ page?: number | undefined; kuery?: any; sortField?: string | undefined; perPage?: number | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; showUpgradeable?: boolean | undefined; } & {}> & { withPackagePolicies?: boolean | undefined; fields?: string[] | undefined; }"
|
||||
"Readonly<{ page?: number | undefined; perPage?: number | undefined; kuery?: any; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; showUpgradeable?: boolean | undefined; } & {}> & { withPackagePolicies?: boolean | undefined; fields?: string[] | undefined; esClient?: ",
|
||||
{
|
||||
"pluginId": "@kbn/core-elasticsearch-server",
|
||||
"scope": "common",
|
||||
"docId": "kibKbnCoreElasticsearchServerPluginApi",
|
||||
"section": "def-common.ElasticsearchClient",
|
||||
"text": "ElasticsearchClient"
|
||||
},
|
||||
" | undefined; withAgentCount?: boolean | undefined; }"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/server/services/agent_policy.ts",
|
||||
"deprecated": false,
|
||||
|
@ -9807,7 +9823,7 @@
|
|||
"label": "ListArtifactsProps",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"Pick<Readonly<{ page?: number | undefined; kuery?: any; sortField?: string | undefined; perPage?: number | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; showUpgradeable?: boolean | undefined; } & {}>, \"page\" | \"kuery\" | \"perPage\" | \"sortOrder\"> & { sortField?: string | undefined; }"
|
||||
"Pick<Readonly<{ page?: number | undefined; perPage?: number | undefined; kuery?: any; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; showUpgradeable?: boolean | undefined; } & {}>, \"page\" | \"perPage\" | \"kuery\" | \"sortOrder\"> & { sortField?: string | undefined; }"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/server/services/artifacts/types.ts",
|
||||
"deprecated": false,
|
||||
|
@ -17016,39 +17032,6 @@
|
|||
"common": {
|
||||
"classes": [],
|
||||
"functions": [
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.decodeCloudId",
|
||||
"type": "Function",
|
||||
"tags": [],
|
||||
"label": "decodeCloudId",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"(cid: string) => { host: string; defaultPort: string; elasticsearchUrl: string; kibanaUrl: string; } | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/services/decode_cloud_id.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"children": [
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.decodeCloudId.$1",
|
||||
"type": "string",
|
||||
"tags": [],
|
||||
"label": "cid",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"string"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/services/decode_cloud_id.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false,
|
||||
"isRequired": true
|
||||
}
|
||||
],
|
||||
"returnComment": [],
|
||||
"initialIsOpen": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.getFileDataIndexName",
|
||||
|
@ -20247,9 +20230,8 @@
|
|||
"label": "experimental_data_stream_features",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ data_stream: string; features: Partial<Record<",
|
||||
"ExperimentalIndexingFeature",
|
||||
", boolean>>; }[] | undefined"
|
||||
"ExperimentalDataStreamFeature",
|
||||
"[] | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
"deprecated": false,
|
||||
|
@ -20867,6 +20849,20 @@
|
|||
"path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
},
|
||||
{
|
||||
"parentPluginId": "fleet",
|
||||
"id": "def-common.NewAgentPolicy.overrides",
|
||||
"type": "CompoundType",
|
||||
"tags": [],
|
||||
"label": "overrides",
|
||||
"description": [],
|
||||
"signature": [
|
||||
"{ [key: string]: any; } | null | undefined"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/agent_policy.ts",
|
||||
"deprecated": false,
|
||||
"trackAdoption": false
|
||||
}
|
||||
],
|
||||
"initialIsOpen": false
|
||||
|
@ -24514,6 +24510,8 @@
|
|||
"signature": [
|
||||
"T & { status: \"installed\"; savedObject?: ",
|
||||
"InstallableSavedObject",
|
||||
" | undefined; installationInfo?: ",
|
||||
"InstallationInfo",
|
||||
" | undefined; }"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
|
@ -24546,6 +24544,8 @@
|
|||
"signature": [
|
||||
"T & { status: \"installing\"; savedObject?: ",
|
||||
"InstallableSavedObject",
|
||||
" | undefined; installationInfo?: ",
|
||||
"InstallationInfo",
|
||||
" | undefined; }"
|
||||
],
|
||||
"path": "x-pack/plugins/fleet/common/types/models/epm.ts",
|
||||
|
@ -24925,7 +24925,9 @@
|
|||
"section": "def-common.RegistrySearchResult",
|
||||
"text": "RegistrySearchResult"
|
||||
},
|
||||
"> & { id: string; integration?: string | undefined; savedObject?: ",
|
||||
"> & { id: string; integration?: string | undefined; installationInfo?: ",
|
||||
"InstallationInfo",
|
||||
" | undefined; savedObject?: ",
|
||||
"InstallableSavedObject",
|
||||
" | undefined; }"
|
||||
],
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'fleet']
|
||||
---
|
||||
import fleetObj from './fleet.devdocs.json';
|
||||
|
@ -21,7 +21,7 @@ Contact [@elastic/fleet](https://github.com/orgs/elastic/teams/fleet) for questi
|
|||
|
||||
| Public API count | Any count | Items lacking comments | Missing exports |
|
||||
|-------------------|-----------|------------------------|-----------------|
|
||||
| 1184 | 3 | 1068 | 33 |
|
||||
| 1183 | 3 | 1067 | 33 |
|
||||
|
||||
## Client
|
||||
|
||||
|
|
|
@ -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: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'globalSearch']
|
||||
---
|
||||
import globalSearchObj from './global_search.devdocs.json';
|
||||
|
|
|
@ -8,7 +8,7 @@ slug: /kibana-dev-docs/api/guidedOnboarding
|
|||
title: "guidedOnboarding"
|
||||
image: https://source.unsplash.com/400x175/?github
|
||||
description: API docs for the guidedOnboarding plugin
|
||||
date: 2023-06-11
|
||||
date: 2023-06-15
|
||||
tags: ['contributor', 'dev', 'apidocs', 'kibana', 'guidedOnboarding']
|
||||
---
|
||||
import guidedOnboardingObj from './guided_onboarding.devdocs.json';
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue