diff --git a/.buildkite/pipelines/flaky_tests/groups.json b/.buildkite/pipelines/flaky_tests/groups.json
new file mode 100644
index 0000000000000..b47ccf16a0184
--- /dev/null
+++ b/.buildkite/pipelines/flaky_tests/groups.json
@@ -0,0 +1,34 @@
+{
+ "groups": [
+ {
+ "key": "oss/cigroup",
+ "name": "OSS CI Group",
+ "ciGroups": 12
+ },
+ {
+ "key": "oss/firefox",
+ "name": "OSS Firefox"
+ },
+ {
+ "key": "oss/accessibility",
+ "name": "OSS Accessibility"
+ },
+ {
+ "key": "xpack/cigroup",
+ "name": "Default CI Group",
+ "ciGroups": 27
+ },
+ {
+ "key": "xpack/cigroup/Docker",
+ "name": "Default CI Group Docker"
+ },
+ {
+ "key": "xpack/firefox",
+ "name": "Default Firefox"
+ },
+ {
+ "key": "xpack/accessibility",
+ "name": "Default Accessibility"
+ }
+ ]
+}
diff --git a/.buildkite/pipelines/flaky_tests/pipeline.js b/.buildkite/pipelines/flaky_tests/pipeline.js
index bf4abb9ff4c89..cb5c37bf58348 100644
--- a/.buildkite/pipelines/flaky_tests/pipeline.js
+++ b/.buildkite/pipelines/flaky_tests/pipeline.js
@@ -1,3 +1,15 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+const groups = /** @type {Array<{key: string, name: string, ciGroups: number }>} */ (
+ require('./groups.json').groups
+);
+
const stepInput = (key, nameOfSuite) => {
return {
key: `ftsr-suite/${key}`,
@@ -7,38 +19,31 @@ const stepInput = (key, nameOfSuite) => {
};
};
-const OSS_CI_GROUPS = 12;
-const XPACK_CI_GROUPS = 27;
-
const inputs = [
{
key: 'ftsr-override-count',
text: 'Override for all suites',
- default: 0,
+ default: '0',
required: true,
},
];
-for (let i = 1; i <= OSS_CI_GROUPS; i++) {
- inputs.push(stepInput(`oss/cigroup/${i}`, `OSS CI Group ${i}`));
+for (const group of groups) {
+ if (!group.ciGroups) {
+ inputs.push(stepInput(group.key, group.name));
+ } else {
+ for (let i = 1; i <= group.ciGroups; i++) {
+ inputs.push(stepInput(`${group.key}/${i}`, `${group.name} ${i}`));
+ }
+ }
}
-inputs.push(stepInput(`oss/firefox`, 'OSS Firefox'));
-inputs.push(stepInput(`oss/accessibility`, 'OSS Accessibility'));
-
-for (let i = 1; i <= XPACK_CI_GROUPS; i++) {
- inputs.push(stepInput(`xpack/cigroup/${i}`, `Default CI Group ${i}`));
-}
-
-inputs.push(stepInput(`xpack/cigroup/Docker`, 'Default CI Group Docker'));
-inputs.push(stepInput(`xpack/firefox`, 'Default Firefox'));
-inputs.push(stepInput(`xpack/accessibility`, 'Default Accessibility'));
-
const pipeline = {
steps: [
{
input: 'Number of Runs - Click Me',
fields: inputs,
+ if: `build.env('KIBANA_FLAKY_TEST_RUNNER_CONFIG') == null`,
},
{
wait: '~',
diff --git a/.buildkite/pipelines/flaky_tests/runner.js b/.buildkite/pipelines/flaky_tests/runner.js
index 0c2db5c724f7b..8529181644fd7 100644
--- a/.buildkite/pipelines/flaky_tests/runner.js
+++ b/.buildkite/pipelines/flaky_tests/runner.js
@@ -1,37 +1,93 @@
-const { execSync } = require('child_process');
-
-const keys = execSync('buildkite-agent meta-data keys')
- .toString()
- .split('\n')
- .filter((k) => k.startsWith('ftsr-suite/'));
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
-const overrideCount = parseInt(
- execSync(`buildkite-agent meta-data get 'ftsr-override-count'`).toString().trim()
-);
+const { execSync } = require('child_process');
const concurrency = 25;
+const defaultCount = concurrency * 2;
const initialJobs = 3;
-let totalJobs = initialJobs;
+function getTestSuitesFromMetadata() {
+ const keys = execSync('buildkite-agent meta-data keys')
+ .toString()
+ .split('\n')
+ .filter((k) => k.startsWith('ftsr-suite/'));
+
+ const overrideCount = execSync(`buildkite-agent meta-data get 'ftsr-override-count'`)
+ .toString()
+ .trim();
+
+ const testSuites = [];
+ for (const key of keys) {
+ if (!key) {
+ continue;
+ }
+
+ const value =
+ overrideCount || execSync(`buildkite-agent meta-data get '${key}'`).toString().trim();
+
+ const count = value === '' ? defaultCount : parseInt(value);
+ testSuites.push({
+ key: key.replace('ftsr-suite/', ''),
+ count: count,
+ });
+ }
-const testSuites = [];
-for (const key of keys) {
- if (!key) {
- continue;
+ return testSuites;
+}
+
+function getTestSuitesFromJson(json) {
+ const fail = (errorMsg) => {
+ console.error('+++ Invalid test config provided');
+ console.error(`${errorMsg}: ${json}`);
+ process.exit(1);
+ };
+
+ let parsed;
+ try {
+ parsed = JSON.parse(json);
+ } catch (error) {
+ fail(`JSON test config did not parse correctly`);
}
- const value =
- overrideCount || execSync(`buildkite-agent meta-data get '${key}'`).toString().trim();
+ if (!Array.isArray(parsed)) {
+ fail(`JSON test config must be an array`);
+ }
- const count = value === '' ? defaultCount : parseInt(value);
- totalJobs += count;
+ /** @type {Array<{ key: string, count: number }>} */
+ const testSuites = [];
+ for (const item of parsed) {
+ if (typeof item !== 'object' || item === null) {
+ fail(`testSuites must be objects`);
+ }
+ const key = item.key;
+ if (typeof key !== 'string') {
+ fail(`testSuite.key must be a string`);
+ }
+ const count = item.count;
+ if (typeof count !== 'number') {
+ fail(`testSuite.count must be a number`);
+ }
+ testSuites.push({
+ key,
+ count,
+ });
+ }
- testSuites.push({
- key: key.replace('ftsr-suite/', ''),
- count: count,
- });
+ return testSuites;
}
+const testSuites = process.env.KIBANA_FLAKY_TEST_RUNNER_CONFIG
+ ? getTestSuitesFromJson(process.env.KIBANA_FLAKY_TEST_RUNNER_CONFIG)
+ : getTestSuitesFromMetadata();
+
+const totalJobs = testSuites.reduce((acc, t) => acc + t.count, initialJobs);
+
if (totalJobs > 500) {
console.error('+++ Too many tests');
console.error(
diff --git a/.buildkite/scripts/lifecycle/annotate_test_failures.js b/.buildkite/scripts/lifecycle/annotate_test_failures.js
index caf1e08c2bb4d..068ca4b8329f1 100644
--- a/.buildkite/scripts/lifecycle/annotate_test_failures.js
+++ b/.buildkite/scripts/lifecycle/annotate_test_failures.js
@@ -1,3 +1,12 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+// eslint-disable-next-line import/no-unresolved
const { TestFailures } = require('kibana-buildkite-library');
(async () => {
diff --git a/.buildkite/scripts/lifecycle/build_status.js b/.buildkite/scripts/lifecycle/build_status.js
index f2a5024c96013..6658cc4647864 100644
--- a/.buildkite/scripts/lifecycle/build_status.js
+++ b/.buildkite/scripts/lifecycle/build_status.js
@@ -1,3 +1,12 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+// eslint-disable-next-line import/no-unresolved
const { BuildkiteClient } = require('kibana-buildkite-library');
(async () => {
diff --git a/.buildkite/scripts/lifecycle/ci_stats_complete.js b/.buildkite/scripts/lifecycle/ci_stats_complete.js
index d9411178799ab..b8347fa606ebe 100644
--- a/.buildkite/scripts/lifecycle/ci_stats_complete.js
+++ b/.buildkite/scripts/lifecycle/ci_stats_complete.js
@@ -1,3 +1,12 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+// eslint-disable-next-line import/no-unresolved
const { CiStats } = require('kibana-buildkite-library');
(async () => {
diff --git a/.buildkite/scripts/lifecycle/ci_stats_start.js b/.buildkite/scripts/lifecycle/ci_stats_start.js
index ec0e4c713499e..ea23b2bc7ad32 100644
--- a/.buildkite/scripts/lifecycle/ci_stats_start.js
+++ b/.buildkite/scripts/lifecycle/ci_stats_start.js
@@ -1,3 +1,12 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+// eslint-disable-next-line import/no-unresolved
const { CiStats } = require('kibana-buildkite-library');
(async () => {
diff --git a/.buildkite/scripts/lifecycle/print_agent_links.js b/.buildkite/scripts/lifecycle/print_agent_links.js
index 59613946c1db4..f1cbff29398d9 100644
--- a/.buildkite/scripts/lifecycle/print_agent_links.js
+++ b/.buildkite/scripts/lifecycle/print_agent_links.js
@@ -1,3 +1,12 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
+// eslint-disable-next-line import/no-unresolved
const { BuildkiteClient } = require('kibana-buildkite-library');
(async () => {
diff --git a/.buildkite/scripts/pipelines/pull_request/pipeline.js b/.buildkite/scripts/pipelines/pull_request/pipeline.js
index ab125d4f73377..1df3b5f64b1df 100644
--- a/.buildkite/scripts/pipelines/pull_request/pipeline.js
+++ b/.buildkite/scripts/pipelines/pull_request/pipeline.js
@@ -1,5 +1,14 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
const execSync = require('child_process').execSync;
const fs = require('fs');
+// eslint-disable-next-line import/no-unresolved
const { areChangesSkippable, doAnyChangesMatch } = require('kibana-buildkite-library');
const SKIPPABLE_PATHS = [
@@ -77,20 +86,14 @@ const uploadPipeline = (pipelineContent) => {
}
if (
- (await doAnyChangesMatch([
- /^x-pack\/plugins\/fleet/,
- /^x-pack\/test\/fleet_cypress/,
- ])) ||
+ (await doAnyChangesMatch([/^x-pack\/plugins\/fleet/, /^x-pack\/test\/fleet_cypress/])) ||
process.env.GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
) {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/fleet_cypress.yml'));
}
if (
- (await doAnyChangesMatch([
- /^x-pack\/plugins\/osquery/,
- /^x-pack\/test\/osquery_cypress/,
- ])) ||
+ (await doAnyChangesMatch([/^x-pack\/plugins\/osquery/, /^x-pack\/test\/osquery_cypress/])) ||
process.env.GITHUB_PR_LABELS.includes('ci:all-cypress-suites')
) {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/osquery_cypress.yml'));
diff --git a/.buildkite/scripts/steps/es_snapshots/bucket_config.js b/.buildkite/scripts/steps/es_snapshots/bucket_config.js
index a18d1182c4a89..6bbe80b60e764 100644
--- a/.buildkite/scripts/steps/es_snapshots/bucket_config.js
+++ b/.buildkite/scripts/steps/es_snapshots/bucket_config.js
@@ -1,3 +1,11 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
module.exports = {
BASE_BUCKET_DAILY: 'kibana-ci-es-snapshots-daily',
BASE_BUCKET_PERMANENT: 'kibana-ci-es-snapshots-permanent',
diff --git a/.buildkite/scripts/steps/es_snapshots/create_manifest.js b/.buildkite/scripts/steps/es_snapshots/create_manifest.js
index 3173737e984e8..cb4ea29a9c534 100644
--- a/.buildkite/scripts/steps/es_snapshots/create_manifest.js
+++ b/.buildkite/scripts/steps/es_snapshots/create_manifest.js
@@ -1,3 +1,11 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
const fs = require('fs');
const { execSync } = require('child_process');
const { BASE_BUCKET_DAILY } = require('./bucket_config.js');
@@ -47,7 +55,7 @@ const { BASE_BUCKET_DAILY } = require('./bucket_config.js');
version: parts[1],
platform: parts[3],
architecture: parts[4].split('.')[0],
- license: parts[0] == 'oss' ? 'oss' : 'default',
+ license: parts[0] === 'oss' ? 'oss' : 'default',
};
});
diff --git a/.buildkite/scripts/steps/es_snapshots/promote_manifest.js b/.buildkite/scripts/steps/es_snapshots/promote_manifest.js
index ce14935dd1b84..d7ff670755712 100644
--- a/.buildkite/scripts/steps/es_snapshots/promote_manifest.js
+++ b/.buildkite/scripts/steps/es_snapshots/promote_manifest.js
@@ -1,3 +1,11 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
const fs = require('fs');
const { execSync } = require('child_process');
const { BASE_BUCKET_DAILY, BASE_BUCKET_PERMANENT } = require('./bucket_config.js');
diff --git a/.buildkite/scripts/steps/storybooks/build_and_upload.js b/.buildkite/scripts/steps/storybooks/build_and_upload.js
index 89958fe08d6cc..86bfb4eeebf94 100644
--- a/.buildkite/scripts/steps/storybooks/build_and_upload.js
+++ b/.buildkite/scripts/steps/storybooks/build_and_upload.js
@@ -1,3 +1,11 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License
+ * 2.0 and the Server Side Public License, v 1; you may not use this file except
+ * in compliance with, at your election, the Elastic License 2.0 or the Server
+ * Side Public License, v 1.
+ */
+
const execSync = require('child_process').execSync;
const fs = require('fs');
const path = require('path');
@@ -73,7 +81,7 @@ const upload = () => {
.trim()
.split('\n')
.map((path) => path.replace('/', ''))
- .filter((path) => path != 'composite');
+ .filter((path) => path !== 'composite');
const listHtml = storybooks
.map((storybook) => `
${storybook}`)
diff --git a/.buildkite/yarn.lock b/.buildkite/yarn.lock
index 0b92d21c87e26..2c3ce924b22ea 100644
--- a/.buildkite/yarn.lock
+++ b/.buildkite/yarn.lock
@@ -23,9 +23,9 @@
universal-user-agent "^6.0.0"
"@octokit/endpoint@^6.0.1":
- version "6.0.6"
- resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.6.tgz#4f09f2b468976b444742a1d5069f6fa45826d999"
- integrity sha512-7Cc8olaCoL/mtquB7j/HTbPM+sY6Ebr4k2X2y4JoXpVKQ7r5xB4iGQE0IoO58wIPsUk4AzoT65AMEpymSbWTgQ==
+ version "6.0.9"
+ resolved "https://registry.yarnpkg.com/@octokit/endpoint/-/endpoint-6.0.9.tgz#c6a772e024202b1bd19ab69f90e0536a2598b13e"
+ integrity sha512-3VPLbcCuqji4IFTclNUtGdp9v7g+nspWdiCUbK3+iPMjJCZ6LEhn1ts626bWLOn0GiDb6j+uqGvPpqLnY7pBgw==
dependencies:
"@octokit/types" "^5.0.0"
is-plain-object "^5.0.0"
@@ -71,9 +71,9 @@
deprecation "^2.3.1"
"@octokit/request-error@^2.0.0":
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.0.2.tgz#0e76b83f5d8fdda1db99027ea5f617c2e6ba9ed0"
- integrity sha512-2BrmnvVSV1MXQvEkrb9zwzP0wXFNbPJij922kYBTLIlIafukrGOb+ABBT2+c6wZiuyWDH1K1zmjGQ0toN/wMWw==
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/@octokit/request-error/-/request-error-2.0.3.tgz#b51b200052bf483f6fa56c9e7e3aa51ead36ecd8"
+ integrity sha512-GgD5z8Btm301i2zfvJLk/mkhvGCdjQ7wT8xF9ov5noQY8WbKZDH9cOBqXzoeKd1mLr1xH2FwbtGso135zGBgTA==
dependencies:
"@octokit/types" "^5.0.1"
deprecation "^2.0.0"
@@ -169,9 +169,9 @@ deprecation@^2.0.0, deprecation@^2.3.1:
integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==
follow-redirects@^1.14.0:
- version "1.14.4"
- resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.4.tgz#838fdf48a8bbdd79e52ee51fb1c94e3ed98b9379"
- integrity sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g==
+ version "1.14.3"
+ resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.3.tgz#6ada78118d8d24caee595595accdc0ac6abd022e"
+ integrity sha512-3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw==
is-plain-object@^5.0.0:
version "5.0.0"
@@ -180,15 +180,17 @@ is-plain-object@^5.0.0:
kibana-buildkite-library@elastic/kibana-buildkite-library:
version "1.0.0"
- resolved "https://codeload.github.com/elastic/kibana-buildkite-library/tar.gz/ee34f75c00712b639124cbef60f68132fa662643"
+ resolved "https://codeload.github.com/elastic/kibana-buildkite-library/tar.gz/f67122968ea54ba14036b55c9f99906d96a3733d"
dependencies:
"@octokit/rest" "^18.10.0"
axios "^0.21.4"
node-fetch@^2.6.1:
- version "2.6.1"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052"
- integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==
+ version "2.6.5"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.5.tgz#42735537d7f080a7e5f78b6c549b7146be1742fd"
+ integrity sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==
+ dependencies:
+ whatwg-url "^5.0.0"
once@^1.4.0:
version "1.4.0"
@@ -197,11 +199,29 @@ once@^1.4.0:
dependencies:
wrappy "1"
+tr46@~0.0.3:
+ version "0.0.3"
+ resolved "https://registry.yarnpkg.com/tr46/-/tr46-0.0.3.tgz#8184fd347dac9cdc185992f3a6622e14b9d9ab6a"
+ integrity sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=
+
universal-user-agent@^6.0.0:
version "6.0.0"
resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee"
integrity sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==
+webidl-conversions@^3.0.0:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-3.0.1.tgz#24534275e2a7bc6be7bc86611cc16ae0a5654871"
+ integrity sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=
+
+whatwg-url@^5.0.0:
+ version "5.0.0"
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"
+ integrity sha1-lmRU6HZUYuN2RNNib2dCzotwll0=
+ dependencies:
+ tr46 "~0.0.3"
+ webidl-conversions "^3.0.0"
+
wrappy@1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
diff --git a/.eslintignore b/.eslintignore
index 040662604358f..5ae3fe7b0967d 100644
--- a/.eslintignore
+++ b/.eslintignore
@@ -17,6 +17,7 @@ snapshots.js
!/.ci
!/.eslintrc.js
!.storybook
+!.buildkite
# plugin overrides
/src/core/lib/kbn_internal_native_observable
diff --git a/api_docs/actions.json b/api_docs/actions.json
index 6240b1f06e9b6..85471025a306d 100644
--- a/api_docs/actions.json
+++ b/api_docs/actions.json
@@ -66,9 +66,9 @@
"label": "asSavedObjectExecutionSource",
"description": [],
"signature": [
- "(source: Pick<",
+ "(source: Omit<",
"SavedObjectReference",
- ", \"type\" | \"id\">) => ",
+ ", \"name\">) => ",
"SavedObjectExecutionSource"
],
"path": "x-pack/plugins/actions/server/lib/action_execution_source.ts",
@@ -82,9 +82,9 @@
"label": "source",
"description": [],
"signature": [
- "Pick<",
+ "Omit<",
"SavedObjectReference",
- ", \"type\" | \"id\">"
+ ", \"name\">"
],
"path": "x-pack/plugins/actions/server/lib/action_execution_source.ts",
"deprecated": false,
@@ -667,7 +667,7 @@
"label": "ActionParamsType",
"description": [],
"signature": [
- "{ readonly to: string[]; readonly message: string; readonly subject: string; readonly cc: string[]; readonly bcc: string[]; readonly kibanaFooterLink: Readonly<{} & { path: string; text: string; }>; }"
+ "{ readonly message: string; readonly to: string[]; readonly subject: string; readonly cc: string[]; readonly bcc: string[]; readonly kibanaFooterLink: Readonly<{} & { path: string; text: string; }>; }"
],
"path": "x-pack/plugins/actions/server/builtin_action_types/email.ts",
"deprecated": false,
@@ -695,7 +695,7 @@
"label": "ActionParamsType",
"description": [],
"signature": [
- "{ readonly source?: string | undefined; readonly group?: string | undefined; readonly summary?: string | undefined; readonly timestamp?: string | undefined; readonly eventAction?: \"resolve\" | \"trigger\" | \"acknowledge\" | undefined; readonly dedupKey?: string | undefined; readonly severity?: \"info\" | \"error\" | \"warning\" | \"critical\" | undefined; readonly component?: string | undefined; readonly class?: string | undefined; }"
+ "{ readonly source?: string | undefined; readonly group?: string | undefined; readonly summary?: string | undefined; readonly timestamp?: string | undefined; readonly eventAction?: \"resolve\" | \"trigger\" | \"acknowledge\" | undefined; readonly dedupKey?: string | undefined; readonly severity?: \"error\" | \"info\" | \"warning\" | \"critical\" | undefined; readonly component?: string | undefined; readonly class?: string | undefined; }"
],
"path": "x-pack/plugins/actions/server/builtin_action_types/pagerduty.ts",
"deprecated": false,
@@ -709,7 +709,7 @@
"label": "ActionParamsType",
"description": [],
"signature": [
- "{ readonly message: string; readonly level: \"info\" | \"error\" | \"trace\" | \"debug\" | \"warn\" | \"fatal\"; }"
+ "{ readonly message: string; readonly level: \"error\" | \"info\" | \"trace\" | \"debug\" | \"warn\" | \"fatal\"; }"
],
"path": "x-pack/plugins/actions/server/builtin_action_types/server_log.ts",
"deprecated": false,
@@ -779,7 +779,7 @@
"label": "ActionParamsType",
"description": [],
"signature": [
- "Readonly<{} & { subAction: \"getFields\"; subActionParams: Readonly<{} & {}>; }> | Readonly<{} & { subAction: \"getIncident\"; subActionParams: Readonly<{} & { externalId: string; }>; }> | Readonly<{} & { subAction: \"handshake\"; subActionParams: Readonly<{} & {}>; }> | Readonly<{} & { subAction: \"pushToService\"; subActionParams: Readonly<{} & { incident: Readonly<{} & { name: string; description: string | null; externalId: string | null; incidentTypes: number[] | null; severityCode: number | null; }>; comments: Readonly<{} & { comment: string; commentId: string; }>[] | null; }>; }> | Readonly<{} & { subAction: \"incidentTypes\"; subActionParams: Readonly<{} & {}>; }> | Readonly<{} & { subAction: \"severity\"; subActionParams: Readonly<{} & {}>; }>"
+ "Readonly<{} & { subAction: \"getFields\"; subActionParams: Readonly<{} & {}>; }> | Readonly<{} & { subAction: \"getIncident\"; subActionParams: Readonly<{} & { externalId: string; }>; }> | Readonly<{} & { subAction: \"handshake\"; subActionParams: Readonly<{} & {}>; }> | Readonly<{} & { subAction: \"pushToService\"; subActionParams: Readonly<{} & { incident: Readonly<{} & { description: string | null; name: string; externalId: string | null; incidentTypes: number[] | null; severityCode: number | null; }>; comments: Readonly<{} & { comment: string; commentId: string; }>[] | null; }>; }> | Readonly<{} & { subAction: \"incidentTypes\"; subActionParams: Readonly<{} & {}>; }> | Readonly<{} & { subAction: \"severity\"; subActionParams: Readonly<{} & {}>; }>"
],
"path": "x-pack/plugins/actions/server/builtin_action_types/resilient/index.ts",
"deprecated": false,
@@ -831,7 +831,9 @@
"section": "def-server.ActionResult",
"text": "ActionResult"
},
- ">>; delete: ({ id }: { id: string; }) => Promise<{}>; get: ({ id }: { id: string; }) => Promise<",
+ "<",
+ "ActionTypeConfig",
+ ">>; delete: ({ id }: { id: string; }) => Promise<{}>; get: ({ id }: { id: string; }) => Promise<",
{
"pluginId": "actions",
"scope": "server",
@@ -839,7 +841,9 @@
"section": "def-server.ActionResult",
"text": "ActionResult"
},
- ">>; update: ({ id, action }: ",
+ "<",
+ "ActionTypeConfig",
+ ">>; update: ({ id, action }: ",
"UpdateOptions",
") => Promise<",
{
@@ -849,9 +853,11 @@
"section": "def-server.ActionResult",
"text": "ActionResult"
},
- ">>; execute: ({ actionId, params, source, relatedSavedObjects, }: Pick<",
+ "<",
+ "ActionTypeConfig",
+ ">>; execute: ({ actionId, params, source, relatedSavedObjects, }: Omit<",
"ExecuteOptions",
- ", \"source\" | \"params\" | \"actionId\" | \"isEphemeral\" | \"taskInfo\" | \"relatedSavedObjects\">) => Promise<",
+ ", \"request\">) => Promise<",
{
"pluginId": "actions",
"scope": "common",
@@ -869,7 +875,9 @@
"section": "def-server.ActionResult",
"text": "ActionResult"
},
- ">[]>; enqueueExecution: (options: ",
+ "<",
+ "ActionTypeConfig",
+ ">[]>; enqueueExecution: (options: ",
"ExecuteOptions",
") => Promise; ephemeralEnqueuedExecution: (options: ",
"ExecuteOptions",
@@ -1069,7 +1077,19 @@
"label": "registerType",
"description": [],
"signature": [
- " = Record, Secrets extends Record = Record, Params extends Record = Record, ExecutorResultData = void>(actionType: ",
+ "(actionType: ",
{
"pluginId": "actions",
"scope": "server",
@@ -1284,7 +1304,15 @@
"section": "def-server.KibanaRequest",
"text": "KibanaRequest"
},
- ") => Promise) => Promise<",
+ {
+ "pluginId": "@kbn/utility-types",
+ "scope": "server",
+ "docId": "kibKbnUtilityTypesPluginApi",
+ "section": "def-server.PublicMethodsOf",
+ "text": "PublicMethodsOf"
+ },
+ "<",
{
"pluginId": "actions",
"scope": "server",
@@ -1292,7 +1320,7 @@
"section": "def-server.ActionsClient",
"text": "ActionsClient"
},
- ", \"create\" | \"delete\" | \"get\" | \"update\" | \"execute\" | \"getAll\" | \"getBulk\" | \"enqueueExecution\" | \"ephemeralEnqueuedExecution\" | \"listTypes\" | \"isActionTypeEnabled\" | \"isPreconfigured\">>"
+ ">>"
],
"path": "x-pack/plugins/actions/server/plugin.ts",
"deprecated": false,
@@ -1337,7 +1365,15 @@
"section": "def-server.KibanaRequest",
"text": "KibanaRequest"
},
- ") => Pick<",
+ ") => ",
+ {
+ "pluginId": "@kbn/utility-types",
+ "scope": "server",
+ "docId": "kibKbnUtilityTypesPluginApi",
+ "section": "def-server.PublicMethodsOf",
+ "text": "PublicMethodsOf"
+ },
+ "<",
{
"pluginId": "actions",
"scope": "server",
@@ -1345,7 +1381,7 @@
"section": "def-server.ActionsAuthorization",
"text": "ActionsAuthorization"
},
- ", \"ensureAuthorized\">"
+ ">"
],
"path": "x-pack/plugins/actions/server/plugin.ts",
"deprecated": false,
@@ -1389,7 +1425,11 @@
"section": "def-server.PreConfiguredAction",
"text": "PreConfiguredAction"
},
- ", Record>[]"
+ "<",
+ "ActionTypeConfig",
+ ", ",
+ "ActionTypeSecrets",
+ ">[]"
],
"path": "x-pack/plugins/actions/server/plugin.ts",
"deprecated": false
@@ -1402,7 +1442,11 @@
"label": "renderActionParameterTemplates",
"description": [],
"signature": [
- " = Record>(actionTypeId: string, actionId: string, params: Params, variables: Record) => Params"
+ "(actionTypeId: string, actionId: string, params: Params, variables: Record) => Params"
],
"path": "x-pack/plugins/actions/server/plugin.ts",
"deprecated": false,
@@ -1482,7 +1526,7 @@
"label": "buildAlertHistoryDocument",
"description": [],
"signature": [
- "(variables: Record) => { event: { kind: string; }; kibana?: { alert: { actionGroupName?: string; actionGroup?: string; context?: { [x: string]: Record; }; id?: string; }; }; rule?: { type?: string; space?: string; params?: { [x: string]: Record; }; name?: string; id?: string; }; message?: unknown; tags?: string[]; '@timestamp': string; } | null"
+ "(variables: Record) => { event: { kind: string; }; kibana?: { alert: { actionGroupName?: string | undefined; actionGroup?: string | undefined; context?: { [x: string]: Record; } | undefined; id?: string | undefined; }; } | undefined; rule?: { type?: string | undefined; space?: string | undefined; params?: { [x: string]: Record; } | undefined; name?: string | undefined; id?: string | undefined; } | undefined; message?: unknown; tags?: string[] | undefined; '@timestamp': string; } | null"
],
"path": "x-pack/plugins/actions/common/alert_history_schema.ts",
"deprecated": false,
@@ -1840,7 +1884,7 @@
"label": "AlertHistoryDocumentTemplate",
"description": [],
"signature": [
- "Readonly<{ event: { kind: string; }; kibana?: { alert: { actionGroupName?: string; actionGroup?: string; context?: { [x: string]: Record; }; id?: string; }; }; rule?: { type?: string; space?: string; params?: { [x: string]: Record; }; name?: string; id?: string; }; message?: unknown; tags?: string[]; '@timestamp': string; }> | null"
+ "Readonly<{ event: { kind: string; }; kibana?: { alert: { actionGroupName?: string | undefined; actionGroup?: string | undefined; context?: { [x: string]: Record; } | undefined; id?: string | undefined; }; } | undefined; rule?: { type?: string | undefined; space?: string | undefined; params?: { [x: string]: Record; } | undefined; name?: string | undefined; id?: string | undefined; } | undefined; message?: unknown; tags?: string[] | undefined; '@timestamp': string; }> | null"
],
"path": "x-pack/plugins/actions/common/alert_history_schema.ts",
"deprecated": false,
diff --git a/api_docs/actions.mdx b/api_docs/actions.mdx
index 4d74f2838d3f9..dc7d971d016d4 100644
--- a/api_docs/actions.mdx
+++ b/api_docs/actions.mdx
@@ -16,9 +16,9 @@ Contact [Kibana Alerting](https://github.com/orgs/elastic/teams/kibana-alerting-
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 125 | 0 | 125 | 8 |
+| 125 | 0 | 125 | 11 |
## Server
diff --git a/api_docs/advanced_settings.json b/api_docs/advanced_settings.json
index 882c6f2dba988..c37abfdb271bb 100644
--- a/api_docs/advanced_settings.json
+++ b/api_docs/advanced_settings.json
@@ -126,7 +126,7 @@
"/**\n * Attempts to register the provided component, with the ability to optionally allow\n * the component to override an existing one.\n *\n * If the intent is to override, then `allowOverride` must be set to true, otherwise an exception is thrown.\n *\n * @param id the id of the component to register\n * @param component the component\n * @param allowOverride (default: false) - optional flag to allow this component to override a previously registered component\n */"
],
"signature": [
- "(id: Id, component: React.ComponentType | undefined>, allowOverride?: boolean) => void"
+ "(id: Id, component: RegistryComponent, allowOverride?: boolean) => void"
],
"path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts",
"deprecated": false,
@@ -153,7 +153,7 @@
"label": "component",
"description": [],
"signature": [
- "React.ComponentType | undefined>"
+ "RegistryComponent"
],
"path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts",
"deprecated": false,
@@ -211,7 +211,7 @@
"/**\n * Retrieve a registered component by its ID.\n * If the component does not exist, then an exception is thrown.\n *\n * @param id the ID of the component to retrieve\n */"
],
"signature": [
- "(id: Id) => React.ComponentType | undefined>"
+ "(id: Id) => RegistryComponent"
],
"path": "src/plugins/advanced_settings/public/component_registry/component_registry.ts",
"deprecated": false,
@@ -299,7 +299,7 @@
"label": "component",
"description": [],
"signature": [
- "{ componentType: { [key: string]: Id; }; register: (id: Id, component: React.ComponentType | undefined>, allowOverride?: boolean) => void; }"
+ "{ componentType: { [key: string]: Id; }; register: (id: Id, component: RegistryComponent, allowOverride?: boolean) => void; }"
],
"path": "src/plugins/advanced_settings/public/types.ts",
"deprecated": false
@@ -326,7 +326,7 @@
"label": "component",
"description": [],
"signature": [
- "{ componentType: { [key: string]: Id; }; get: (id: Id) => React.ComponentType | undefined>; }"
+ "{ componentType: { [key: string]: Id; }; get: (id: Id) => RegistryComponent; }"
],
"path": "src/plugins/advanced_settings/public/types.ts",
"deprecated": false
diff --git a/api_docs/advanced_settings.mdx b/api_docs/advanced_settings.mdx
index 8dfbd0a7306fd..ac09a1ba91fa2 100644
--- a/api_docs/advanced_settings.mdx
+++ b/api_docs/advanced_settings.mdx
@@ -16,7 +16,7 @@ Contact [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors)
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
| 23 | 0 | 20 | 1 |
diff --git a/api_docs/alerting.json b/api_docs/alerting.json
index 7677f39658074..ff7962fd64dd9 100644
--- a/api_docs/alerting.json
+++ b/api_docs/alerting.json
@@ -16,15 +16,15 @@
"\nReturns information that can be used to navigate to a specific page to view the given rule.\n"
],
"signature": [
- "(alert: Pick<",
+ "(alert: ",
{
"pluginId": "alerting",
"scope": "common",
"docId": "kibAlertingPluginApi",
- "section": "def-common.Alert",
- "text": "Alert"
+ "section": "def-common.SanitizedAlert",
+ "text": "SanitizedAlert"
},
- ", \"name\" | \"tags\" | \"id\" | \"enabled\" | \"params\" | \"actions\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\">) => string | ",
+ ") => string | ",
{
"pluginId": "@kbn/utility-types",
"scope": "server",
@@ -36,7 +36,7 @@
"path": "x-pack/plugins/alerting/public/alert_navigation_registry/types.ts",
"deprecated": false,
"returnComment": [
- "A URL that is meant to be relative to your application id, or a state object that your application uses to render\nthe rule. This information is intended to be used with cores NavigateToApp function, along with the application id that was\noriginally registered to {@link PluginSetupContract.registerNavigation}."
+ "A URL that is meant to be relative to your application id, or a state object that your application uses to render\nthe rule. This information is intended to be used with cores NavigateToApp function, along with the application id that was\noriginally registered to {@link PluginSetupContract.registerNavigation }."
],
"children": [
{
@@ -47,7 +47,7 @@
"label": "alert",
"description": [],
"signature": [
- "{ name: string; tags: string[]; id: string; enabled: boolean; params: never; actions: ",
+ "{ id: string; name: string; tags: string[]; enabled: boolean; params: never; actions: ",
{
"pluginId": "alerting",
"scope": "common",
@@ -264,16 +264,8 @@
"pluginId": "alerting",
"scope": "common",
"docId": "kibAlertingPluginApi",
- "section": "def-common.AlertUrlNavigation",
- "text": "AlertUrlNavigation"
- },
- " | ",
- {
- "pluginId": "alerting",
- "scope": "common",
- "docId": "kibAlertingPluginApi",
- "section": "def-common.AlertStateNavigation",
- "text": "AlertStateNavigation"
+ "section": "def-common.AlertNavigation",
+ "text": "AlertNavigation"
},
" | undefined>"
],
@@ -516,13 +508,7 @@
", filterOpts: ",
"AlertingAuthorizationFilterOpts",
") => Promise<{ filter?: ",
- {
- "pluginId": "@kbn/es-query",
- "scope": "common",
- "docId": "kibKbnEsQueryPluginApi",
- "section": "def-common.KueryNode",
- "text": "KueryNode"
- },
+ "KueryNode",
" | ",
{
"pluginId": "@kbn/utility-types",
@@ -608,13 +594,7 @@
"text": "WriteOperations"
},
") => Promise<{ filter?: ",
- {
- "pluginId": "@kbn/es-query",
- "scope": "common",
- "docId": "kibKbnEsQueryPluginApi",
- "section": "def-common.KueryNode",
- "text": "KueryNode"
- },
+ "KueryNode",
" | ",
{
"pluginId": "@kbn/utility-types",
@@ -891,7 +871,7 @@
},
""
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false,
"children": [
{
@@ -904,7 +884,7 @@
"signature": [
"ActionGroupIds"
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
@@ -914,7 +894,7 @@
"tags": [],
"label": "name",
"description": [],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
}
],
@@ -1030,15 +1010,15 @@
"label": "rule",
"description": [],
"signature": [
- "Pick, \"name\" | \"tags\" | \"id\" | \"enabled\" | \"params\" | \"actions\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\">, \"name\" | \"tags\" | \"enabled\" | \"actions\" | \"consumer\" | \"schedule\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"throttle\" | \"notifyWhen\"> & { producer: string; ruleTypeId: string; ruleTypeName: string; }"
+ ", \"name\" | \"tags\" | \"enabled\" | \"actions\" | \"consumer\" | \"schedule\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"throttle\" | \"notifyWhen\"> & { producer: string; ruleTypeId: string; ruleTypeName: string; }"
],
"path": "x-pack/plugins/alerting/server/types.ts",
"deprecated": false
@@ -1288,9 +1268,15 @@
"label": "alertInstanceFactory",
"description": [],
"signature": [
- "(id: string) => Pick<",
- "AlertInstance",
- ", \"getState\" | \"replaceState\" | \"scheduleActions\" | \"scheduleActionsWithSubGroup\">"
+ "(id: string) => ",
+ {
+ "pluginId": "alerting",
+ "scope": "server",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-server.PublicAlertInstance",
+ "text": "PublicAlertInstance"
+ },
+ ""
],
"path": "x-pack/plugins/alerting/server/types.ts",
"deprecated": false,
@@ -1311,417 +1297,326 @@
}
],
"returnComment": []
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.AlertServices.shouldWriteAlerts",
+ "type": "Function",
+ "tags": [],
+ "label": "shouldWriteAlerts",
+ "description": [],
+ "signature": [
+ "() => boolean"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false,
+ "children": [],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.AlertServices.shouldStopExecution",
+ "type": "Function",
+ "tags": [],
+ "label": "shouldStopExecution",
+ "description": [],
+ "signature": [
+ "() => boolean"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false,
+ "children": [],
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.AlertServices.search",
+ "type": "Object",
+ "tags": [],
+ "label": "search",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "alerting",
+ "scope": "server",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-server.IAbortableClusterClient",
+ "text": "IAbortableClusterClient"
+ }
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
}
],
"initialIsOpen": false
},
{
"parentPluginId": "alerting",
- "id": "def-server.AlertType",
+ "id": "def-server.FindResult",
"type": "Interface",
"tags": [],
- "label": "AlertType",
+ "label": "FindResult",
"description": [],
"signature": [
{
"pluginId": "alerting",
"scope": "server",
"docId": "kibAlertingPluginApi",
- "section": "def-server.AlertType",
- "text": "AlertType"
+ "section": "def-server.FindResult",
+ "text": "FindResult"
},
- ""
+ ""
],
- "path": "x-pack/plugins/alerting/server/types.ts",
+ "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts",
"deprecated": false,
"children": [
{
"parentPluginId": "alerting",
- "id": "def-server.AlertType.id",
- "type": "string",
+ "id": "def-server.FindResult.page",
+ "type": "number",
"tags": [],
- "label": "id",
+ "label": "page",
"description": [],
- "path": "x-pack/plugins/alerting/server/types.ts",
+ "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-server.AlertType.name",
- "type": "string",
+ "id": "def-server.FindResult.perPage",
+ "type": "number",
"tags": [],
- "label": "name",
+ "label": "perPage",
"description": [],
- "path": "x-pack/plugins/alerting/server/types.ts",
+ "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-server.AlertType.validate",
- "type": "Object",
+ "id": "def-server.FindResult.total",
+ "type": "number",
"tags": [],
- "label": "validate",
+ "label": "total",
"description": [],
- "signature": [
- "{ params?: ",
- "AlertTypeParamsValidator",
- " | undefined; } | undefined"
- ],
- "path": "x-pack/plugins/alerting/server/types.ts",
+ "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-server.AlertType.actionGroups",
+ "id": "def-server.FindResult.data",
"type": "Array",
"tags": [],
- "label": "actionGroups",
+ "label": "data",
"description": [],
"signature": [
{
"pluginId": "alerting",
"scope": "common",
"docId": "kibAlertingPluginApi",
- "section": "def-common.ActionGroup",
- "text": "ActionGroup"
+ "section": "def-common.SanitizedAlert",
+ "text": "SanitizedAlert"
},
- "[]"
+ "[]"
],
- "path": "x-pack/plugins/alerting/server/types.ts",
+ "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts",
"deprecated": false
- },
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.IAbortableClusterClient",
+ "type": "Interface",
+ "tags": [],
+ "label": "IAbortableClusterClient",
+ "description": [],
+ "path": "x-pack/plugins/alerting/server/lib/create_abortable_es_client_factory.ts",
+ "deprecated": false,
+ "children": [
{
"parentPluginId": "alerting",
- "id": "def-server.AlertType.defaultActionGroupId",
- "type": "Uncategorized",
+ "id": "def-server.IAbortableClusterClient.asInternalUser",
+ "type": "Object",
"tags": [],
- "label": "defaultActionGroupId",
+ "label": "asInternalUser",
"description": [],
"signature": [
- "ActionGroupIds"
+ {
+ "pluginId": "alerting",
+ "scope": "server",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-server.IAbortableEsClient",
+ "text": "IAbortableEsClient"
+ }
],
- "path": "x-pack/plugins/alerting/server/types.ts",
+ "path": "x-pack/plugins/alerting/server/lib/create_abortable_es_client_factory.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-server.AlertType.recoveryActionGroup",
+ "id": "def-server.IAbortableClusterClient.asCurrentUser",
"type": "Object",
"tags": [],
- "label": "recoveryActionGroup",
+ "label": "asCurrentUser",
"description": [],
"signature": [
{
"pluginId": "alerting",
- "scope": "common",
+ "scope": "server",
"docId": "kibAlertingPluginApi",
- "section": "def-common.ActionGroup",
- "text": "ActionGroup"
- },
- " | undefined"
+ "section": "def-server.IAbortableEsClient",
+ "text": "IAbortableEsClient"
+ }
],
- "path": "x-pack/plugins/alerting/server/types.ts",
+ "path": "x-pack/plugins/alerting/server/lib/create_abortable_es_client_factory.ts",
"deprecated": false
- },
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.IAbortableEsClient",
+ "type": "Interface",
+ "tags": [],
+ "label": "IAbortableEsClient",
+ "description": [],
+ "path": "x-pack/plugins/alerting/server/lib/create_abortable_es_client_factory.ts",
+ "deprecated": false,
+ "children": [
{
"parentPluginId": "alerting",
- "id": "def-server.AlertType.executor",
+ "id": "def-server.IAbortableEsClient.search",
"type": "Function",
"tags": [],
- "label": "executor",
+ "label": "search",
"description": [],
"signature": [
- "(options: ",
- {
- "pluginId": "alerting",
- "scope": "server",
- "docId": "kibAlertingPluginApi",
- "section": "def-server.AlertExecutorOptions",
- "text": "AlertExecutorOptions"
- },
- ">) => Promise"
+ "(query: ",
+ "SearchRequest",
+ " | ",
+ "SearchRequest",
+ ", options?: ",
+ "TransportRequestOptions",
+ " | undefined) => Promise<",
+ "TransportResult",
+ "<",
+ "SearchResponse",
+ ", TContext>>"
],
- "path": "x-pack/plugins/alerting/server/types.ts",
+ "path": "x-pack/plugins/alerting/server/lib/create_abortable_es_client_factory.ts",
"deprecated": false,
- "returnComment": [],
"children": [
{
"parentPluginId": "alerting",
- "id": "def-server.AlertType.executor.$1",
+ "id": "def-server.IAbortableEsClient.search.$1",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "query",
+ "description": [],
+ "signature": [
+ "SearchRequest",
+ " | ",
+ "SearchRequest"
+ ],
+ "path": "x-pack/plugins/alerting/server/lib/create_abortable_es_client_factory.ts",
+ "deprecated": false,
+ "isRequired": true
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.IAbortableEsClient.search.$2",
"type": "Object",
"tags": [],
"label": "options",
"description": [],
"signature": [
- {
- "pluginId": "alerting",
- "scope": "server",
- "docId": "kibAlertingPluginApi",
- "section": "def-server.AlertExecutorOptions",
- "text": "AlertExecutorOptions"
- },
- ""
+ "TransportRequestOptions",
+ " | undefined"
],
- "path": "x-pack/plugins/alerting/server/types.ts",
- "deprecated": false
+ "path": "x-pack/plugins/alerting/server/lib/create_abortable_es_client_factory.ts",
+ "deprecated": false,
+ "isRequired": false
}
- ]
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.AlertType.producer",
- "type": "string",
- "tags": [],
- "label": "producer",
- "description": [],
- "path": "x-pack/plugins/alerting/server/types.ts",
- "deprecated": false
- },
+ ],
+ "returnComment": []
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.PluginSetupContract",
+ "type": "Interface",
+ "tags": [],
+ "label": "PluginSetupContract",
+ "description": [],
+ "path": "x-pack/plugins/alerting/server/plugin.ts",
+ "deprecated": false,
+ "children": [
{
"parentPluginId": "alerting",
- "id": "def-server.AlertType.actionVariables",
- "type": "Object",
+ "id": "def-server.PluginSetupContract.registerType",
+ "type": "Function",
"tags": [],
- "label": "actionVariables",
+ "label": "registerType",
"description": [],
"signature": [
- "{ context?: ",
+ " ",
+ " = ",
{
"pluginId": "alerting",
- "scope": "server",
+ "scope": "common",
"docId": "kibAlertingPluginApi",
- "section": "def-server.RuleParamsAndRefs",
- "text": "RuleParamsAndRefs"
+ "section": "def-common.AlertTypeParams",
+ "text": "AlertTypeParams"
},
- "; injectReferences: (params: ExtractedParams, references: ",
- "SavedObjectReference",
- "[]) => Params; } | undefined"
- ],
- "path": "x-pack/plugins/alerting/server/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.AlertType.isExportable",
- "type": "boolean",
- "tags": [],
- "label": "isExportable",
- "description": [],
- "path": "x-pack/plugins/alerting/server/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.AlertType.defaultScheduleInterval",
- "type": "string",
- "tags": [],
- "label": "defaultScheduleInterval",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "x-pack/plugins/alerting/server/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.AlertType.minimumScheduleInterval",
- "type": "string",
- "tags": [],
- "label": "minimumScheduleInterval",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "x-pack/plugins/alerting/server/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.AlertType.ruleTaskTimeout",
- "type": "string",
- "tags": [],
- "label": "ruleTaskTimeout",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "x-pack/plugins/alerting/server/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.AlertType.cancelAlertsOnRuleTimeout",
- "type": "CompoundType",
- "tags": [],
- "label": "cancelAlertsOnRuleTimeout",
- "description": [],
- "signature": [
- "boolean | undefined"
- ],
- "path": "x-pack/plugins/alerting/server/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.FindResult",
- "type": "Interface",
- "tags": [],
- "label": "FindResult",
- "description": [],
- "signature": [
- {
- "pluginId": "alerting",
- "scope": "server",
- "docId": "kibAlertingPluginApi",
- "section": "def-server.FindResult",
- "text": "FindResult"
- },
- ""
- ],
- "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "alerting",
- "id": "def-server.FindResult.page",
- "type": "number",
- "tags": [],
- "label": "page",
- "description": [],
- "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.FindResult.perPage",
- "type": "number",
- "tags": [],
- "label": "perPage",
- "description": [],
- "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.FindResult.total",
- "type": "number",
- "tags": [],
- "label": "total",
- "description": [],
- "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.FindResult.data",
- "type": "Array",
- "tags": [],
- "label": "data",
- "description": [],
- "signature": [
- "Pick<",
+ ", State extends ",
{
"pluginId": "alerting",
"scope": "common",
"docId": "kibAlertingPluginApi",
- "section": "def-common.Alert",
- "text": "Alert"
+ "section": "def-common.AlertTypeState",
+ "text": "AlertTypeState"
},
- ", \"name\" | \"tags\" | \"id\" | \"enabled\" | \"params\" | \"actions\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\">[]"
- ],
- "path": "x-pack/plugins/alerting/server/rules_client/rules_client.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.PluginSetupContract",
- "type": "Interface",
- "tags": [],
- "label": "PluginSetupContract",
- "description": [],
- "path": "x-pack/plugins/alerting/server/plugin.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "alerting",
- "id": "def-server.PluginSetupContract.registerType",
- "type": "Function",
- "tags": [],
- "label": "registerType",
- "description": [],
- "signature": [
- " = Record, ExtractedParams extends Record = Record, State extends Record = Record, InstanceState extends { [x: string]: unknown; } = { [x: string]: unknown; }, InstanceContext extends { [x: string]: unknown; } = { [x: string]: unknown; }, ActionGroupIds extends string = never, RecoveryActionGroupId extends string = never>(alertType: ",
+ " = ",
+ {
+ "pluginId": "alerting",
+ "scope": "common",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-common.AlertTypeState",
+ "text": "AlertTypeState"
+ },
+ ", InstanceState extends { [x: string]: unknown; } = { [x: string]: unknown; }, InstanceContext extends { [x: string]: unknown; } = { [x: string]: unknown; }, ActionGroupIds extends string = never, RecoveryActionGroupId extends string = never>(ruleType: ",
{
"pluginId": "alerting",
"scope": "server",
"docId": "kibAlertingPluginApi",
- "section": "def-server.AlertType",
- "text": "AlertType"
+ "section": "def-server.RuleType",
+ "text": "RuleType"
},
") => void"
],
@@ -1733,15 +1628,15 @@
"id": "def-server.PluginSetupContract.registerType.$1",
"type": "Object",
"tags": [],
- "label": "alertType",
+ "label": "ruleType",
"description": [],
"signature": [
{
"pluginId": "alerting",
"scope": "server",
"docId": "kibAlertingPluginApi",
- "section": "def-server.AlertType",
- "text": "AlertType"
+ "section": "def-server.RuleType",
+ "text": "RuleType"
},
""
],
@@ -1815,7 +1710,15 @@
"section": "def-server.KibanaRequest",
"text": "KibanaRequest"
},
- ") => Pick<",
+ ") => ",
+ {
+ "pluginId": "@kbn/utility-types",
+ "scope": "server",
+ "docId": "kibKbnUtilityTypesPluginApi",
+ "section": "def-server.PublicMethodsOf",
+ "text": "PublicMethodsOf"
+ },
+ "<",
{
"pluginId": "alerting",
"scope": "server",
@@ -1823,7 +1726,7 @@
"section": "def-server.RulesClient",
"text": "RulesClient"
},
- ", \"create\" | \"delete\" | \"find\" | \"get\" | \"resolve\" | \"update\" | \"aggregate\" | \"enable\" | \"disable\" | \"muteAll\" | \"getAlertState\" | \"getAlertSummary\" | \"updateApiKey\" | \"unmuteAll\" | \"muteInstance\" | \"unmuteInstance\" | \"listAlertTypes\" | \"getSpaceId\">"
+ ">"
],
"path": "x-pack/plugins/alerting/server/plugin.ts",
"deprecated": false,
@@ -1868,7 +1771,15 @@
"section": "def-server.KibanaRequest",
"text": "KibanaRequest"
},
- ") => Pick<",
+ ") => ",
+ {
+ "pluginId": "@kbn/utility-types",
+ "scope": "server",
+ "docId": "kibKbnUtilityTypesPluginApi",
+ "section": "def-server.PublicMethodsOf",
+ "text": "PublicMethodsOf"
+ },
+ "<",
{
"pluginId": "alerting",
"scope": "server",
@@ -1876,7 +1787,7 @@
"section": "def-server.AlertingAuthorization",
"text": "AlertingAuthorization"
},
- ", \"ensureAuthorized\" | \"getSpaceId\" | \"getAugmentedRuleTypesWithAuthorization\" | \"getFindAuthorizationFilter\" | \"getAuthorizationFilter\" | \"filterByRuleTypeAuthorization\">"
+ ">"
],
"path": "x-pack/plugins/alerting/server/plugin.ts",
"deprecated": false,
@@ -1903,77 +1814,385 @@
"isRequired": true
}
],
- "returnComment": []
+ "returnComment": []
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.PluginStartContract.getFrameworkHealth",
+ "type": "Function",
+ "tags": [],
+ "label": "getFrameworkHealth",
+ "description": [],
+ "signature": [
+ "() => Promise<",
+ {
+ "pluginId": "alerting",
+ "scope": "common",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-common.AlertsHealth",
+ "text": "AlertsHealth"
+ },
+ ">"
+ ],
+ "path": "x-pack/plugins/alerting/server/plugin.ts",
+ "deprecated": false,
+ "children": [],
+ "returnComment": []
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleParamsAndRefs",
+ "type": "Interface",
+ "tags": [],
+ "label": "RuleParamsAndRefs",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "alerting",
+ "scope": "server",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-server.RuleParamsAndRefs",
+ "text": "RuleParamsAndRefs"
+ },
+ ""
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false,
+ "children": [
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleParamsAndRefs.references",
+ "type": "Array",
+ "tags": [],
+ "label": "references",
+ "description": [],
+ "signature": [
+ "SavedObjectReference",
+ "[]"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleParamsAndRefs.params",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "params",
+ "description": [],
+ "signature": [
+ "Params"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType",
+ "type": "Interface",
+ "tags": [],
+ "label": "RuleType",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "alerting",
+ "scope": "server",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-server.RuleType",
+ "text": "RuleType"
+ },
+ ""
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false,
+ "children": [
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.id",
+ "type": "string",
+ "tags": [],
+ "label": "id",
+ "description": [],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.name",
+ "type": "string",
+ "tags": [],
+ "label": "name",
+ "description": [],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.validate",
+ "type": "Object",
+ "tags": [],
+ "label": "validate",
+ "description": [],
+ "signature": [
+ "{ params?: ",
+ "AlertTypeParamsValidator",
+ " | undefined; } | undefined"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.actionGroups",
+ "type": "Array",
+ "tags": [],
+ "label": "actionGroups",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "alerting",
+ "scope": "common",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-common.ActionGroup",
+ "text": "ActionGroup"
+ },
+ "[]"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.defaultActionGroupId",
+ "type": "Uncategorized",
+ "tags": [],
+ "label": "defaultActionGroupId",
+ "description": [],
+ "signature": [
+ "ActionGroupIds"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.recoveryActionGroup",
+ "type": "Object",
+ "tags": [],
+ "label": "recoveryActionGroup",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "alerting",
+ "scope": "common",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-common.ActionGroup",
+ "text": "ActionGroup"
+ },
+ " | undefined"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.executor",
+ "type": "Function",
+ "tags": [],
+ "label": "executor",
+ "description": [],
+ "signature": [
+ "(options: ",
+ {
+ "pluginId": "alerting",
+ "scope": "server",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-server.AlertExecutorOptions",
+ "text": "AlertExecutorOptions"
+ },
+ ">) => Promise"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false,
+ "returnComment": [],
+ "children": [
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.executor.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "options",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "alerting",
+ "scope": "server",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-server.AlertExecutorOptions",
+ "text": "AlertExecutorOptions"
+ },
+ ""
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ }
+ ]
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.producer",
+ "type": "string",
+ "tags": [],
+ "label": "producer",
+ "description": [],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.actionVariables",
+ "type": "Object",
+ "tags": [],
+ "label": "actionVariables",
+ "description": [],
+ "signature": [
+ "{ context?: ",
+ {
+ "pluginId": "alerting",
+ "scope": "common",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-common.ActionVariable",
+ "text": "ActionVariable"
+ },
+ "[] | undefined; state?: ",
+ {
+ "pluginId": "alerting",
+ "scope": "common",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-common.ActionVariable",
+ "text": "ActionVariable"
+ },
+ "[] | undefined; params?: ",
+ {
+ "pluginId": "alerting",
+ "scope": "common",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-common.ActionVariable",
+ "text": "ActionVariable"
+ },
+ "[] | undefined; } | undefined"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.minimumLicenseRequired",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "minimumLicenseRequired",
+ "description": [],
+ "signature": [
+ "\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\""
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-server.PluginStartContract.getFrameworkHealth",
- "type": "Function",
+ "id": "def-server.RuleType.useSavedObjectReferences",
+ "type": "Object",
"tags": [],
- "label": "getFrameworkHealth",
+ "label": "useSavedObjectReferences",
"description": [],
"signature": [
- "() => Promise<",
+ "{ extractReferences: (params: Params) => ",
{
"pluginId": "alerting",
- "scope": "common",
+ "scope": "server",
"docId": "kibAlertingPluginApi",
- "section": "def-common.AlertsHealth",
- "text": "AlertsHealth"
+ "section": "def-server.RuleParamsAndRefs",
+ "text": "RuleParamsAndRefs"
},
- ">"
+ "; injectReferences: (params: ExtractedParams, references: ",
+ "SavedObjectReference",
+ "[]) => Params; } | undefined"
],
- "path": "x-pack/plugins/alerting/server/plugin.ts",
- "deprecated": false,
- "children": [],
- "returnComment": []
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-server.RuleParamsAndRefs",
- "type": "Interface",
- "tags": [],
- "label": "RuleParamsAndRefs",
- "description": [],
- "signature": [
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
{
- "pluginId": "alerting",
- "scope": "server",
- "docId": "kibAlertingPluginApi",
- "section": "def-server.RuleParamsAndRefs",
- "text": "RuleParamsAndRefs"
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.isExportable",
+ "type": "boolean",
+ "tags": [],
+ "label": "isExportable",
+ "description": [],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
},
- ""
- ],
- "path": "x-pack/plugins/alerting/server/types.ts",
- "deprecated": false,
- "children": [
{
"parentPluginId": "alerting",
- "id": "def-server.RuleParamsAndRefs.references",
- "type": "Array",
+ "id": "def-server.RuleType.defaultScheduleInterval",
+ "type": "string",
"tags": [],
- "label": "references",
+ "label": "defaultScheduleInterval",
"description": [],
"signature": [
- "SavedObjectReference",
- "[]"
+ "string | undefined"
],
"path": "x-pack/plugins/alerting/server/types.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-server.RuleParamsAndRefs.params",
- "type": "Uncategorized",
+ "id": "def-server.RuleType.minimumScheduleInterval",
+ "type": "string",
"tags": [],
- "label": "params",
+ "label": "minimumScheduleInterval",
"description": [],
"signature": [
- "Params"
+ "string | undefined"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.ruleTaskTimeout",
+ "type": "string",
+ "tags": [],
+ "label": "ruleTaskTimeout",
+ "description": [],
+ "signature": [
+ "string | undefined"
+ ],
+ "path": "x-pack/plugins/alerting/server/types.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-server.RuleType.cancelAlertsOnRuleTimeout",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "cancelAlertsOnRuleTimeout",
+ "description": [],
+ "signature": [
+ "boolean | undefined"
],
"path": "x-pack/plugins/alerting/server/types.ts",
"deprecated": false
@@ -2055,7 +2274,7 @@
},
"> ? groups : never"
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false,
"initialIsOpen": false
},
@@ -2159,7 +2378,7 @@
"section": "def-common.Alert",
"text": "Alert"
},
- ", \"id\"> & Partial, \"id\"> & Partial, \"name\" | \"tags\" | \"enabled\" | \"params\" | \"actions\" | \"apiKey\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\">>"
+ ", \"id\">>"
],
"path": "x-pack/plugins/alerting/server/types.ts",
"deprecated": false,
@@ -2201,17 +2420,37 @@
"label": "RulesClient",
"description": [],
"signature": [
- "{ create: = never>({ data, options, }: ",
+ "{ aggregate: ({ options: { fields, filter, ...options }, }?: { options?: ",
+ "AggregateOptions",
+ " | undefined; }) => Promise<",
+ "AggregateResult",
+ ">; create: ({ data, options, }: ",
"CreateOptions",
- ") => Promise) => Promise<",
{
"pluginId": "alerting",
"scope": "common",
"docId": "kibAlertingPluginApi",
- "section": "def-common.Alert",
- "text": "Alert"
+ "section": "def-common.SanitizedAlert",
+ "text": "SanitizedAlert"
+ },
+ ">; delete: ({ id }: { id: string; }) => Promise<{}>; find: , \"name\" | \"tags\" | \"id\" | \"enabled\" | \"params\" | \"actions\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\">>; delete: ({ id }: { id: string; }) => Promise<{}>; find: = never>({ options: { fields, ...options }, }?: { options?: ",
+ " = never>({ options: { fields, ...options }, }?: { options?: ",
"FindOptions",
" | undefined; }) => Promise<",
{
@@ -2221,17 +2460,33 @@
"section": "def-server.FindResult",
"text": "FindResult"
},
- ">; get: = never>({ id, includeLegacyId, }: { id: string; includeLegacyId?: boolean | undefined; }) => Promise>; get: ({ id, includeLegacyId, }: { id: string; includeLegacyId?: boolean | undefined; }) => Promise<",
+ {
+ "pluginId": "alerting",
+ "scope": "common",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-common.SanitizedAlert",
+ "text": "SanitizedAlert"
+ },
+ " | ",
+ "SanitizedRuleWithLegacyId",
+ ">; resolve: , \"name\" | \"tags\" | \"id\" | \"enabled\" | \"params\" | \"actions\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\"> | Pick<",
- "AlertWithLegacyId",
- ", \"name\" | \"tags\" | \"id\" | \"enabled\" | \"params\" | \"actions\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\" | \"legacyId\">>; resolve: = never>({ id, includeLegacyId, }: { id: string; includeLegacyId?: boolean | undefined; }) => Promise<",
+ " = never>({ id, includeLegacyId, }: { id: string; includeLegacyId?: boolean | undefined; }) => Promise<",
{
"pluginId": "alerting",
"scope": "common",
@@ -2239,7 +2494,15 @@
"section": "def-common.ResolvedSanitizedRule",
"text": "ResolvedSanitizedRule"
},
- ">; update: = never>({ id, data, }: ",
+ ">; update: ({ id, data, }: ",
"UpdateOptions",
") => Promise<",
{
@@ -2249,11 +2512,7 @@
"section": "def-server.PartialAlert",
"text": "PartialAlert"
},
- ">; aggregate: ({ options: { fields, ...options }, }?: { options?: ",
- "AggregateOptions",
- " | undefined; }) => Promise<",
- "AggregateResult",
- ">; enable: ({ id }: { id: string; }) => Promise; disable: ({ id }: { id: string; }) => Promise; muteAll: ({ id }: { id: string; }) => Promise; getAlertState: ({ id }: { id: string; }) => Promise; getAlertSummary: ({ id, dateStart }: ",
+ ">; enable: ({ id }: { id: string; }) => Promise; disable: ({ id }: { id: string; }) => Promise; muteAll: ({ id }: { id: string; }) => Promise; getAlertState: ({ id }: { id: string; }) => Promise; getAlertSummary: ({ id, dateStart }: ",
"GetAlertSummaryParams",
") => Promise<",
{
@@ -2593,7 +2852,7 @@
},
""
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false,
"children": [
{
@@ -2606,7 +2865,7 @@
"signature": [
"ActionGroupIds"
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
@@ -2616,7 +2875,7 @@
"tags": [],
"label": "name",
"description": [],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
}
],
@@ -3056,6 +3315,32 @@
],
"path": "x-pack/plugins/alerting/common/alert.ts",
"deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.AlertAggregations.ruleEnabledStatus",
+ "type": "Object",
+ "tags": [],
+ "label": "ruleEnabledStatus",
+ "description": [],
+ "signature": [
+ "{ enabled: number; disabled: number; }"
+ ],
+ "path": "x-pack/plugins/alerting/common/alert.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.AlertAggregations.ruleMutedStatus",
+ "type": "Object",
+ "tags": [],
+ "label": "ruleMutedStatus",
+ "description": [],
+ "signature": [
+ "{ muted: number; unmuted: number; }"
+ ],
+ "path": "x-pack/plugins/alerting/common/alert.ts",
+ "deprecated": false
}
],
"initialIsOpen": false
@@ -3078,7 +3363,7 @@
"label": "status",
"description": [],
"signature": [
- "\"unknown\" | \"error\" | \"pending\" | \"ok\" | \"active\""
+ "\"error\" | \"unknown\" | \"pending\" | \"ok\" | \"active\""
],
"path": "x-pack/plugins/alerting/common/alert.ts",
"deprecated": false
@@ -3165,10 +3450,10 @@
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertingFrameworkHealth.alertingFrameworkHeath",
+ "id": "def-common.AlertingFrameworkHealth.alertingFrameworkHealth",
"type": "Object",
"tags": [],
- "label": "alertingFrameworkHeath",
+ "label": "alertingFrameworkHealth",
"description": [],
"signature": [
{
@@ -3546,21 +3831,114 @@
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertSummary.executionDuration",
- "type": "Object",
+ "id": "def-common.AlertSummary.executionDuration",
+ "type": "Object",
+ "tags": [],
+ "label": "executionDuration",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "alerting",
+ "scope": "common",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-common.ExecutionDuration",
+ "text": "ExecutionDuration"
+ }
+ ],
+ "path": "x-pack/plugins/alerting/common/alert_summary.ts",
+ "deprecated": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.AlertUrlNavigation",
+ "type": "Interface",
+ "tags": [],
+ "label": "AlertUrlNavigation",
+ "description": [],
+ "path": "x-pack/plugins/alerting/common/alert_navigation.ts",
+ "deprecated": false,
+ "children": [
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.AlertUrlNavigation.path",
+ "type": "string",
+ "tags": [],
+ "label": "path",
+ "description": [],
+ "path": "x-pack/plugins/alerting/common/alert_navigation.ts",
+ "deprecated": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.ExecutionDuration",
+ "type": "Interface",
+ "tags": [],
+ "label": "ExecutionDuration",
+ "description": [],
+ "path": "x-pack/plugins/alerting/common/alert_summary.ts",
+ "deprecated": false,
+ "children": [
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.ExecutionDuration.average",
+ "type": "number",
+ "tags": [],
+ "label": "average",
+ "description": [],
+ "path": "x-pack/plugins/alerting/common/alert_summary.ts",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.ExecutionDuration.valuesWithTimestamp",
+ "type": "Object",
+ "tags": [],
+ "label": "valuesWithTimestamp",
+ "description": [],
+ "signature": [
+ "{ [x: string]: number; }"
+ ],
+ "path": "x-pack/plugins/alerting/common/alert_summary.ts",
+ "deprecated": false
+ }
+ ],
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.IntervalSchedule",
+ "type": "Interface",
+ "tags": [],
+ "label": "IntervalSchedule",
+ "description": [],
+ "signature": [
+ {
+ "pluginId": "alerting",
+ "scope": "common",
+ "docId": "kibAlertingPluginApi",
+ "section": "def-common.IntervalSchedule",
+ "text": "IntervalSchedule"
+ },
+ " extends ",
+ "SavedObjectAttributes"
+ ],
+ "path": "x-pack/plugins/alerting/common/alert.ts",
+ "deprecated": false,
+ "children": [
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.IntervalSchedule.interval",
+ "type": "string",
"tags": [],
- "label": "executionDuration",
+ "label": "interval",
"description": [],
- "signature": [
- {
- "pluginId": "alerting",
- "scope": "common",
- "docId": "kibAlertingPluginApi",
- "section": "def-common.ExecutionDuration",
- "text": "ExecutionDuration"
- }
- ],
- "path": "x-pack/plugins/alerting/common/alert_summary.ts",
+ "path": "x-pack/plugins/alerting/common/alert.ts",
"deprecated": false
}
],
@@ -3568,47 +3946,47 @@
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType",
+ "id": "def-common.RuleType",
"type": "Interface",
"tags": [],
- "label": "AlertType",
+ "label": "RuleType",
"description": [],
"signature": [
{
"pluginId": "alerting",
"scope": "common",
"docId": "kibAlertingPluginApi",
- "section": "def-common.AlertType",
- "text": "AlertType"
+ "section": "def-common.RuleType",
+ "text": "RuleType"
},
""
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false,
"children": [
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.id",
+ "id": "def-common.RuleType.id",
"type": "string",
"tags": [],
"label": "id",
"description": [],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.name",
+ "id": "def-common.RuleType.name",
"type": "string",
"tags": [],
"label": "name",
"description": [],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.actionGroups",
+ "id": "def-common.RuleType.actionGroups",
"type": "Array",
"tags": [],
"label": "actionGroups",
@@ -3623,12 +4001,12 @@
},
"[]"
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.recoveryActionGroup",
+ "id": "def-common.RuleType.recoveryActionGroup",
"type": "Object",
"tags": [],
"label": "recoveryActionGroup",
@@ -3643,25 +4021,25 @@
},
""
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.actionVariables",
- "type": "Array",
+ "id": "def-common.RuleType.actionVariables",
+ "type": "Object",
"tags": [],
"label": "actionVariables",
"description": [],
"signature": [
- "string[]"
+ "{ context: ActionVariable[]; state: ActionVariable[]; params: ActionVariable[]; }"
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.defaultActionGroupId",
+ "id": "def-common.RuleType.defaultActionGroupId",
"type": "Uncategorized",
"tags": [],
"label": "defaultActionGroupId",
@@ -3669,22 +4047,22 @@
"signature": [
"ActionGroupIds"
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.producer",
+ "id": "def-common.RuleType.producer",
"type": "string",
"tags": [],
"label": "producer",
"description": [],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.minimumLicenseRequired",
+ "id": "def-common.RuleType.minimumLicenseRequired",
"type": "CompoundType",
"tags": [],
"label": "minimumLicenseRequired",
@@ -3692,22 +4070,22 @@
"signature": [
"\"basic\" | \"standard\" | \"gold\" | \"platinum\" | \"enterprise\" | \"trial\""
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.isExportable",
+ "id": "def-common.RuleType.isExportable",
"type": "boolean",
"tags": [],
"label": "isExportable",
"description": [],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.ruleTaskTimeout",
+ "id": "def-common.RuleType.ruleTaskTimeout",
"type": "string",
"tags": [],
"label": "ruleTaskTimeout",
@@ -3715,12 +4093,12 @@
"signature": [
"string | undefined"
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.defaultScheduleInterval",
+ "id": "def-common.RuleType.defaultScheduleInterval",
"type": "string",
"tags": [],
"label": "defaultScheduleInterval",
@@ -3728,12 +4106,12 @@
"signature": [
"string | undefined"
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.AlertType.minimumScheduleInterval",
+ "id": "def-common.RuleType.minimumScheduleInterval",
"type": "string",
"tags": [],
"label": "minimumScheduleInterval",
@@ -3741,100 +4119,30 @@
"signature": [
"string | undefined"
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-common.AlertUrlNavigation",
- "type": "Interface",
- "tags": [],
- "label": "AlertUrlNavigation",
- "description": [],
- "path": "x-pack/plugins/alerting/common/alert_navigation.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "alerting",
- "id": "def-common.AlertUrlNavigation.path",
- "type": "string",
- "tags": [],
- "label": "path",
- "description": [],
- "path": "x-pack/plugins/alerting/common/alert_navigation.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-common.ExecutionDuration",
- "type": "Interface",
- "tags": [],
- "label": "ExecutionDuration",
- "description": [],
- "path": "x-pack/plugins/alerting/common/alert_summary.ts",
- "deprecated": false,
- "children": [
+ },
{
"parentPluginId": "alerting",
- "id": "def-common.ExecutionDuration.average",
- "type": "number",
+ "id": "def-common.RuleType.enabledInLicense",
+ "type": "boolean",
"tags": [],
- "label": "average",
+ "label": "enabledInLicense",
"description": [],
- "path": "x-pack/plugins/alerting/common/alert_summary.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.ExecutionDuration.valuesWithTimestamp",
+ "id": "def-common.RuleType.authorizedConsumers",
"type": "Object",
"tags": [],
- "label": "valuesWithTimestamp",
+ "label": "authorizedConsumers",
"description": [],
"signature": [
- "{ [x: string]: number; }"
+ "{ [x: string]: ConsumerPrivileges; }"
],
- "path": "x-pack/plugins/alerting/common/alert_summary.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-common.IntervalSchedule",
- "type": "Interface",
- "tags": [],
- "label": "IntervalSchedule",
- "description": [],
- "signature": [
- {
- "pluginId": "alerting",
- "scope": "common",
- "docId": "kibAlertingPluginApi",
- "section": "def-common.IntervalSchedule",
- "text": "IntervalSchedule"
- },
- " extends ",
- "SavedObjectAttributes"
- ],
- "path": "x-pack/plugins/alerting/common/alert.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "alerting",
- "id": "def-common.IntervalSchedule.interval",
- "type": "string",
- "tags": [],
- "label": "interval",
- "description": [],
- "path": "x-pack/plugins/alerting/common/alert.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false
}
],
@@ -3892,7 +4200,7 @@
},
"> ? groups : never"
],
- "path": "x-pack/plugins/alerting/common/alert_type.ts",
+ "path": "x-pack/plugins/alerting/common/rule_type.ts",
"deprecated": false,
"initialIsOpen": false
},
@@ -3904,11 +4212,10 @@
"label": "AlertActionParam",
"description": [],
"signature": [
- "string | number | boolean | ",
- "SavedObjectAttributes",
+ "SavedObjectAttributeSingle",
" | ",
"SavedObjectAttributeSingle",
- "[] | null | undefined"
+ "[]"
],
"path": "x-pack/plugins/alerting/common/alert.ts",
"deprecated": false,
@@ -3936,7 +4243,7 @@
"label": "AlertExecutionStatuses",
"description": [],
"signature": [
- "\"unknown\" | \"error\" | \"pending\" | \"ok\" | \"active\""
+ "\"error\" | \"unknown\" | \"pending\" | \"ok\" | \"active\""
],
"path": "x-pack/plugins/alerting/common/alert.ts",
"deprecated": false,
@@ -4054,34 +4361,6 @@
"deprecated": false,
"initialIsOpen": false
},
- {
- "parentPluginId": "alerting",
- "id": "def-common.AlertTaskParams",
- "type": "Type",
- "tags": [],
- "label": "AlertTaskParams",
- "description": [],
- "signature": [
- "{ alertId: string; } & { spaceId?: string | undefined; }"
- ],
- "path": "x-pack/plugins/alerting/common/alert_task_instance.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-common.AlertTaskState",
- "type": "Type",
- "tags": [],
- "label": "AlertTaskState",
- "description": [],
- "signature": [
- "{ alertTypeState?: { [x: string]: unknown; } | undefined; alertInstances?: { [x: string]: { state?: { [x: string]: unknown; } | undefined; meta?: { lastScheduledActions?: ({ subgroup?: string | undefined; } & { group: string; date: Date; }) | undefined; } | undefined; }; } | undefined; previousStartedAt?: Date | null | undefined; }"
- ],
- "path": "x-pack/plugins/alerting/common/alert_task_instance.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
{
"parentPluginId": "alerting",
"id": "def-common.AlertTypeParams",
@@ -4216,15 +4495,14 @@
"label": "ResolvedSanitizedRule",
"description": [],
"signature": [
- "Pick<",
{
"pluginId": "alerting",
"scope": "common",
"docId": "kibAlertingPluginApi",
- "section": "def-common.Alert",
- "text": "Alert"
+ "section": "def-common.SanitizedAlert",
+ "text": "SanitizedAlert"
},
- ", \"name\" | \"tags\" | \"id\" | \"enabled\" | \"params\" | \"actions\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\"> & Pick<",
+ " & Omit<",
{
"pluginId": "core",
"scope": "server",
@@ -4232,7 +4510,7 @@
"section": "def-server.SavedObjectsResolveResponse",
"text": "SavedObjectsResolveResponse"
},
- ", \"outcome\" | \"alias_target_id\">"
+ ", \"saved_object\">"
],
"path": "x-pack/plugins/alerting/common/alert.ts",
"deprecated": false,
@@ -4252,6 +4530,34 @@
"deprecated": false,
"initialIsOpen": false
},
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.RuleTaskParams",
+ "type": "Type",
+ "tags": [],
+ "label": "RuleTaskParams",
+ "description": [],
+ "signature": [
+ "{ alertId: string; } & { spaceId?: string | undefined; }"
+ ],
+ "path": "x-pack/plugins/alerting/common/rule_task_instance.ts",
+ "deprecated": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.RuleTaskState",
+ "type": "Type",
+ "tags": [],
+ "label": "RuleTaskState",
+ "description": [],
+ "signature": [
+ "{ alertTypeState?: { [x: string]: unknown; } | undefined; alertInstances?: { [x: string]: { state?: { [x: string]: unknown; } | undefined; meta?: { lastScheduledActions?: ({ subgroup?: string | undefined; } & { group: string; date: Date; }) | undefined; } | undefined; }; } | undefined; previousStartedAt?: Date | null | undefined; }"
+ ],
+ "path": "x-pack/plugins/alerting/common/rule_task_instance.ts",
+ "deprecated": false,
+ "initialIsOpen": false
+ },
{
"parentPluginId": "alerting",
"id": "def-common.SanitizedAlert",
@@ -4260,7 +4566,7 @@
"label": "SanitizedAlert",
"description": [],
"signature": [
- "{ name: string; tags: string[]; id: string; enabled: boolean; params: Params; actions: ",
+ "{ id: string; name: string; tags: string[]; enabled: boolean; params: Params; actions: ",
{
"pluginId": "alerting",
"scope": "common",
@@ -4298,15 +4604,15 @@
"label": "SanitizedRuleConfig",
"description": [],
"signature": [
- "Pick, \"name\" | \"tags\" | \"id\" | \"enabled\" | \"params\" | \"actions\" | \"alertTypeId\" | \"consumer\" | \"schedule\" | \"scheduledTaskId\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"apiKeyOwner\" | \"throttle\" | \"notifyWhen\" | \"muteAll\" | \"mutedInstanceIds\" | \"executionStatus\">, \"name\" | \"tags\" | \"enabled\" | \"actions\" | \"consumer\" | \"schedule\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"throttle\" | \"notifyWhen\"> & { producer: string; ruleTypeId: string; ruleTypeName: string; }"
+ ", \"name\" | \"tags\" | \"enabled\" | \"actions\" | \"consumer\" | \"schedule\" | \"createdBy\" | \"updatedBy\" | \"createdAt\" | \"updatedAt\" | \"throttle\" | \"notifyWhen\"> & { producer: string; ruleTypeId: string; ruleTypeName: string; }"
],
"path": "x-pack/plugins/alerting/common/alert.ts",
"deprecated": false,
@@ -4352,47 +4658,26 @@
},
{
"parentPluginId": "alerting",
- "id": "def-common.alertParamsSchema",
+ "id": "def-common.DisabledActionTypeIdsForActionGroup",
"type": "Object",
"tags": [],
- "label": "alertParamsSchema",
+ "label": "DisabledActionTypeIdsForActionGroup",
"description": [],
"signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ alertId: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ spaceId: ",
- "StringC",
- "; }>]>"
+ "Map"
],
- "path": "x-pack/plugins/alerting/common/alert_task_instance.ts",
+ "path": "x-pack/plugins/alerting/common/disabled_action_groups.ts",
"deprecated": false,
"initialIsOpen": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.alertStateSchema",
+ "id": "def-common.rawAlertInstance",
"type": "Object",
"tags": [],
- "label": "alertStateSchema",
+ "label": "rawAlertInstance",
"description": [],
"signature": [
- "PartialC",
- "<{ alertTypeState: ",
- "RecordC",
- "<",
- "StringC",
- ", ",
- "UnknownC",
- ">; alertInstances: ",
- "RecordC",
- "<",
- "StringC",
- ", ",
"PartialC",
"<{ state: ",
"RecordC",
@@ -4414,40 +4699,69 @@
"StringC",
"; date: ",
"Type",
- "; }>]>; }>; }>>; previousStartedAt: ",
- "UnionC",
- "<[",
- "NullC",
- ", ",
- "Type",
- "]>; }>"
+ "; }>]>; }>; }>"
],
- "path": "x-pack/plugins/alerting/common/alert_task_instance.ts",
+ "path": "x-pack/plugins/alerting/common/alert_instance.ts",
"deprecated": false,
"initialIsOpen": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.DisabledActionTypeIdsForActionGroup",
+ "id": "def-common.RecoveredActionGroup",
"type": "Object",
"tags": [],
- "label": "DisabledActionTypeIdsForActionGroup",
+ "label": "RecoveredActionGroup",
"description": [],
"signature": [
- "Map"
+ "{ readonly id: \"recovered\"; readonly name: string; }"
],
- "path": "x-pack/plugins/alerting/common/disabled_action_groups.ts",
+ "path": "x-pack/plugins/alerting/common/builtin_action_groups.ts",
"deprecated": false,
"initialIsOpen": false
},
{
"parentPluginId": "alerting",
- "id": "def-common.rawAlertInstance",
+ "id": "def-common.ruleParamsSchema",
"type": "Object",
"tags": [],
- "label": "rawAlertInstance",
+ "label": "ruleParamsSchema",
+ "description": [],
+ "signature": [
+ "IntersectionC",
+ "<[",
+ "TypeC",
+ "<{ alertId: ",
+ "StringC",
+ "; }>, ",
+ "PartialC",
+ "<{ spaceId: ",
+ "StringC",
+ "; }>]>"
+ ],
+ "path": "x-pack/plugins/alerting/common/rule_task_instance.ts",
+ "deprecated": false,
+ "initialIsOpen": false
+ },
+ {
+ "parentPluginId": "alerting",
+ "id": "def-common.ruleStateSchema",
+ "type": "Object",
+ "tags": [],
+ "label": "ruleStateSchema",
"description": [],
"signature": [
+ "PartialC",
+ "<{ alertTypeState: ",
+ "RecordC",
+ "<",
+ "StringC",
+ ", ",
+ "UnknownC",
+ ">; alertInstances: ",
+ "RecordC",
+ "<",
+ "StringC",
+ ", ",
"PartialC",
"<{ state: ",
"RecordC",
@@ -4469,23 +4783,15 @@
"StringC",
"; date: ",
"Type",
- "; }>]>; }>; }>"
- ],
- "path": "x-pack/plugins/alerting/common/alert_instance.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "alerting",
- "id": "def-common.RecoveredActionGroup",
- "type": "Object",
- "tags": [],
- "label": "RecoveredActionGroup",
- "description": [],
- "signature": [
- "{ readonly id: \"recovered\"; readonly name: string; }"
+ "; }>]>; }>; }>>; previousStartedAt: ",
+ "UnionC",
+ "<[",
+ "NullC",
+ ", ",
+ "Type",
+ "]>; }>"
],
- "path": "x-pack/plugins/alerting/common/builtin_action_groups.ts",
+ "path": "x-pack/plugins/alerting/common/rule_task_instance.ts",
"deprecated": false,
"initialIsOpen": false
}
diff --git a/api_docs/alerting.mdx b/api_docs/alerting.mdx
index b4e423889e3be..b1a48fb8b1656 100644
--- a/api_docs/alerting.mdx
+++ b/api_docs/alerting.mdx
@@ -16,9 +16,9 @@ Contact [Kibana Alerting](https://github.com/orgs/elastic/teams/kibana-alerting-
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 263 | 0 | 255 | 18 |
+| 277 | 0 | 269 | 18 |
## Client
diff --git a/api_docs/apm.json b/api_docs/apm.json
index 4e55013ef9754..ada0d56871958 100644
--- a/api_docs/apm.json
+++ b/api_docs/apm.json
@@ -182,11 +182,11 @@
},
"<",
"APMPluginStartDependencies",
- ", unknown>, plugins: Pick<",
+ ", unknown>, plugins: ",
"APMPluginSetupDependencies",
- ", \"security\" | \"home\" | \"data\" | \"features\" | \"fleet\" | \"ml\" | \"spaces\" | \"actions\" | \"usageCollection\" | \"licensing\" | \"observability\" | \"ruleRegistry\" | \"cloud\" | \"taskManager\" | \"alerting\">) => { config$: ",
+ ") => { config$: ",
"Observable",
- "; serviceMapEnabled: boolean; serviceMapFingerprintBucketSize: number; serviceMapTraceIdBucketSize: number; serviceMapFingerprintGlobalBucketSize: number; serviceMapTraceIdGlobalBucketSize: number; serviceMapMaxTracesPerRequest: number; autocreateApmIndexPattern: boolean; ui: Readonly<{} & { enabled: boolean; transactionGroupBucketSize: number; maxTraceItems: number; }>; searchAggregatedTransactions: ",
+ "; autoCreateApmDataView: boolean; serviceMapEnabled: boolean; serviceMapFingerprintBucketSize: number; serviceMapTraceIdBucketSize: number; serviceMapFingerprintGlobalBucketSize: number; serviceMapTraceIdGlobalBucketSize: number; serviceMapMaxTracesPerRequest: number; ui: Readonly<{} & { enabled: boolean; transactionGroupBucketSize: number; maxTraceItems: number; }>; searchAggregatedTransactions: ",
"SearchAggregatedTransactionSetting",
"; telemetryCollectionEnabled: boolean; metricsInterval: number; profilingEnabled: boolean; agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; }>>; getApmIndices: () => Promise<",
"ApmIndicesConfig",
@@ -200,17 +200,9 @@
},
"; context: ",
"ApmPluginRequestHandlerContext",
- "; }) => Promise<{ search(operationName: string, params: TParams): Promise<",
- "InferSearchResponseOf",
- ">, ESSearchRequestOf, {}>>; termsEnum(operationName: string, params: ",
- "APMEventESTermsEnumRequest",
- "): Promise<",
- "TermsEnumResponse",
- ">; }>; }"
+ "; }) => Promise<",
+ "APMEventClient",
+ ">; }"
],
"path": "x-pack/plugins/apm/server/plugin.ts",
"deprecated": false,
@@ -246,9 +238,7 @@
"label": "plugins",
"description": [],
"signature": [
- "Pick<",
- "APMPluginSetupDependencies",
- ", \"security\" | \"home\" | \"data\" | \"features\" | \"fleet\" | \"ml\" | \"spaces\" | \"actions\" | \"usageCollection\" | \"licensing\" | \"observability\" | \"ruleRegistry\" | \"cloud\" | \"taskManager\" | \"alerting\">"
+ "APMPluginSetupDependencies"
],
"path": "x-pack/plugins/apm/server/plugin.ts",
"deprecated": false,
@@ -388,7 +378,7 @@
"label": "config",
"description": [],
"signature": [
- "{ readonly indices: Readonly<{} & { metric: string; error: string; span: string; transaction: string; sourcemap: string; onboarding: string; }>; readonly serviceMapEnabled: boolean; readonly serviceMapFingerprintBucketSize: number; readonly serviceMapTraceIdBucketSize: number; readonly serviceMapFingerprintGlobalBucketSize: number; readonly serviceMapTraceIdGlobalBucketSize: number; readonly serviceMapMaxTracesPerRequest: number; readonly autocreateApmIndexPattern: boolean; readonly ui: Readonly<{} & { enabled: boolean; transactionGroupBucketSize: number; maxTraceItems: number; }>; readonly searchAggregatedTransactions: ",
+ "{ readonly indices: Readonly<{} & { error: string; span: string; metric: string; transaction: string; sourcemap: string; onboarding: string; }>; readonly autoCreateApmDataView: boolean; readonly serviceMapEnabled: boolean; readonly serviceMapFingerprintBucketSize: number; readonly serviceMapTraceIdBucketSize: number; readonly serviceMapFingerprintGlobalBucketSize: number; readonly serviceMapTraceIdGlobalBucketSize: number; readonly serviceMapMaxTracesPerRequest: number; readonly ui: Readonly<{} & { enabled: boolean; transactionGroupBucketSize: number; maxTraceItems: number; }>; readonly searchAggregatedTransactions: ",
"SearchAggregatedTransactionSetting",
"; readonly telemetryCollectionEnabled: boolean; readonly metricsInterval: number; readonly profilingEnabled: boolean; readonly agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; }"
],
@@ -545,39 +535,47 @@
"section": "def-server.RuleRegistryPluginStartContract",
"text": "RuleRegistryPluginStartContract"
},
- ">; }; security?: { setup: ",
+ ">; }; actions?: { setup: ",
{
- "pluginId": "security",
+ "pluginId": "actions",
"scope": "server",
- "docId": "kibSecurityPluginApi",
- "section": "def-server.SecurityPluginSetup",
- "text": "SecurityPluginSetup"
+ "docId": "kibActionsPluginApi",
+ "section": "def-server.PluginSetupContract",
+ "text": "PluginSetupContract"
},
"; start: () => Promise<",
{
- "pluginId": "security",
+ "pluginId": "actions",
"scope": "server",
- "docId": "kibSecurityPluginApi",
- "section": "def-server.SecurityPluginStart",
- "text": "SecurityPluginStart"
+ "docId": "kibActionsPluginApi",
+ "section": "def-server.PluginStartContract",
+ "text": "PluginStartContract"
},
- ">; } | undefined; home?: { setup: ",
+ ">; } | undefined; alerting?: { setup: ",
{
- "pluginId": "home",
+ "pluginId": "alerting",
"scope": "server",
- "docId": "kibHomePluginApi",
- "section": "def-server.HomeServerPluginSetup",
- "text": "HomeServerPluginSetup"
+ "docId": "kibAlertingPluginApi",
+ "section": "def-server.PluginSetupContract",
+ "text": "PluginSetupContract"
},
"; start: () => Promise<",
{
- "pluginId": "home",
+ "pluginId": "alerting",
"scope": "server",
- "docId": "kibHomePluginApi",
- "section": "def-server.HomeServerPluginStart",
- "text": "HomeServerPluginStart"
+ "docId": "kibAlertingPluginApi",
+ "section": "def-server.PluginStartContract",
+ "text": "PluginStartContract"
+ },
+ ">; } | undefined; cloud?: { setup: ",
+ {
+ "pluginId": "cloud",
+ "scope": "server",
+ "docId": "kibCloudPluginApi",
+ "section": "def-server.CloudSetup",
+ "text": "CloudSetup"
},
- ">; } | undefined; fleet?: { setup: void; start: () => Promise<",
+ "; start: () => Promise; } | undefined; fleet?: { setup: never; start: () => Promise<",
{
"pluginId": "fleet",
"scope": "server",
@@ -585,57 +583,57 @@
"section": "def-server.FleetStartContract",
"text": "FleetStartContract"
},
- ">; } | undefined; ml?: { setup: ",
- "SharedServices",
- "; start: () => Promise; } | undefined; spaces?: { setup: ",
+ ">; } | undefined; home?: { setup: ",
{
- "pluginId": "spaces",
+ "pluginId": "home",
"scope": "server",
- "docId": "kibSpacesPluginApi",
- "section": "def-server.SpacesPluginSetup",
- "text": "SpacesPluginSetup"
+ "docId": "kibHomePluginApi",
+ "section": "def-server.HomeServerPluginSetup",
+ "text": "HomeServerPluginSetup"
},
"; start: () => Promise<",
{
- "pluginId": "spaces",
+ "pluginId": "home",
"scope": "server",
- "docId": "kibSpacesPluginApi",
- "section": "def-server.SpacesPluginStart",
- "text": "SpacesPluginStart"
+ "docId": "kibHomePluginApi",
+ "section": "def-server.HomeServerPluginStart",
+ "text": "HomeServerPluginStart"
},
- ">; } | undefined; actions?: { setup: ",
+ ">; } | undefined; ml?: { setup: ",
+ "SharedServices",
+ "; start: () => Promise; } | undefined; security?: { setup: ",
{
- "pluginId": "actions",
+ "pluginId": "security",
"scope": "server",
- "docId": "kibActionsPluginApi",
- "section": "def-server.PluginSetupContract",
- "text": "PluginSetupContract"
+ "docId": "kibSecurityPluginApi",
+ "section": "def-server.SecurityPluginSetup",
+ "text": "SecurityPluginSetup"
},
"; start: () => Promise<",
{
- "pluginId": "actions",
+ "pluginId": "security",
"scope": "server",
- "docId": "kibActionsPluginApi",
- "section": "def-server.PluginStartContract",
- "text": "PluginStartContract"
+ "docId": "kibSecurityPluginApi",
+ "section": "def-server.SecurityPluginStart",
+ "text": "SecurityPluginStart"
},
- ">; } | undefined; usageCollection?: { setup: ",
+ ">; } | undefined; spaces?: { setup: ",
{
- "pluginId": "usageCollection",
+ "pluginId": "spaces",
"scope": "server",
- "docId": "kibUsageCollectionPluginApi",
- "section": "def-server.UsageCollectionSetup",
- "text": "UsageCollectionSetup"
+ "docId": "kibSpacesPluginApi",
+ "section": "def-server.SpacesPluginSetup",
+ "text": "SpacesPluginSetup"
},
- "; start: () => Promise; } | undefined; cloud?: { setup: ",
+ "; start: () => Promise<",
{
- "pluginId": "cloud",
+ "pluginId": "spaces",
"scope": "server",
- "docId": "kibCloudPluginApi",
- "section": "def-server.CloudSetup",
- "text": "CloudSetup"
+ "docId": "kibSpacesPluginApi",
+ "section": "def-server.SpacesPluginStart",
+ "text": "SpacesPluginStart"
},
- "; start: () => Promise; } | undefined; taskManager?: { setup: ",
+ ">; } | undefined; taskManager?: { setup: ",
{
"pluginId": "taskManager",
"scope": "server",
@@ -651,23 +649,15 @@
"section": "def-server.TaskManagerStartContract",
"text": "TaskManagerStartContract"
},
- ">; } | undefined; alerting?: { setup: ",
- {
- "pluginId": "alerting",
- "scope": "server",
- "docId": "kibAlertingPluginApi",
- "section": "def-server.PluginSetupContract",
- "text": "PluginSetupContract"
- },
- "; start: () => Promise<",
+ ">; } | undefined; usageCollection?: { setup: ",
{
- "pluginId": "alerting",
+ "pluginId": "usageCollection",
"scope": "server",
- "docId": "kibAlertingPluginApi",
- "section": "def-server.PluginStartContract",
- "text": "PluginStartContract"
+ "docId": "kibUsageCollectionPluginApi",
+ "section": "def-server.UsageCollectionSetup",
+ "text": "UsageCollectionSetup"
},
- ">; } | undefined; }"
+ "; start: () => Promise; } | undefined; }"
],
"path": "x-pack/plugins/apm/server/routes/typings.ts",
"deprecated": false
@@ -710,6 +700,16 @@
],
"path": "x-pack/plugins/apm/server/routes/typings.ts",
"deprecated": false
+ },
+ {
+ "parentPluginId": "apm",
+ "id": "def-server.APMRouteHandlerResources.kibanaVersion",
+ "type": "string",
+ "tags": [],
+ "label": "kibanaVersion",
+ "description": [],
+ "path": "x-pack/plugins/apm/server/routes/typings.ts",
+ "deprecated": false
}
],
"initialIsOpen": false
@@ -737,7 +737,7 @@
"label": "APIEndpoint",
"description": [],
"signature": [
- "\"POST /internal/apm/data_view/static\" | \"GET /internal/apm/data_view/dynamic\" | \"GET /internal/apm/environments\" | \"GET /internal/apm/services/{serviceName}/errors\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}\" | \"GET /internal/apm/services/{serviceName}/errors/distribution\" | \"POST /internal/apm/latency/overall_distribution\" | \"GET /internal/apm/services/{serviceName}/metrics/charts\" | \"GET /internal/apm/observability_overview\" | \"GET /internal/apm/observability_overview/has_data\" | \"GET /internal/apm/ux/client-metrics\" | \"GET /internal/apm/ux/page-load-distribution\" | \"GET /internal/apm/ux/page-load-distribution/breakdown\" | \"GET /internal/apm/ux/page-view-trends\" | \"GET /internal/apm/ux/services\" | \"GET /internal/apm/ux/visitor-breakdown\" | \"GET /internal/apm/ux/web-core-vitals\" | \"GET /internal/apm/ux/long-task-metrics\" | \"GET /internal/apm/ux/url-search\" | \"GET /internal/apm/ux/js-errors\" | \"GET /api/apm/observability_overview/has_rum_data\" | \"GET /internal/apm/service-map\" | \"GET /internal/apm/service-map/service/{serviceName}\" | \"GET /internal/apm/service-map/backend\" | \"GET /internal/apm/services/{serviceName}/serviceNodes\" | \"GET /internal/apm/services\" | \"GET /internal/apm/services/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/metadata/details\" | \"GET /internal/apm/services/{serviceName}/metadata/icons\" | \"GET /internal/apm/services/{serviceName}/agent\" | \"GET /internal/apm/services/{serviceName}/transaction_types\" | \"GET /internal/apm/services/{serviceName}/node/{serviceNodeName}/metadata\" | \"GET /api/apm/services/{serviceName}/annotation/search\" | \"POST /api/apm/services/{serviceName}/annotation\" | \"GET /internal/apm/services/{serviceName}/error_groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/error_groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/details/{serviceNodeName}\" | \"GET /internal/apm/services/{serviceName}/throughput\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/main_statistics\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/dependencies\" | \"GET /internal/apm/services/{serviceName}/dependencies/breakdown\" | \"GET /internal/apm/services/{serviceName}/profiling/timeline\" | \"GET /internal/apm/services/{serviceName}/profiling/statistics\" | \"GET /internal/apm/services/{serviceName}/alerts\" | \"GET /internal/apm/services/{serviceName}/infrastructure\" | \"GET /internal/apm/suggestions\" | \"GET /internal/apm/traces/{traceId}\" | \"GET /internal/apm/traces\" | \"GET /internal/apm/traces/{traceId}/root_transaction\" | \"GET /internal/apm/transactions/{transactionId}\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/latency\" | \"GET /internal/apm/services/{serviceName}/transactions/traces/samples\" | \"GET /internal/apm/services/{serviceName}/transaction/charts/breakdown\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/error_rate\" | \"GET /internal/apm/alerts/chart_preview/transaction_error_rate\" | \"GET /internal/apm/alerts/chart_preview/transaction_duration\" | \"GET /internal/apm/alerts/chart_preview/transaction_error_count\" | \"GET /api/apm/settings/agent-configuration\" | \"GET /api/apm/settings/agent-configuration/view\" | \"DELETE /api/apm/settings/agent-configuration\" | \"PUT /api/apm/settings/agent-configuration\" | \"POST /api/apm/settings/agent-configuration/search\" | \"GET /api/apm/settings/agent-configuration/services\" | \"GET /api/apm/settings/agent-configuration/environments\" | \"GET /api/apm/settings/agent-configuration/agent_name\" | \"GET /internal/apm/settings/anomaly-detection/jobs\" | \"POST /internal/apm/settings/anomaly-detection/jobs\" | \"GET /internal/apm/settings/anomaly-detection/environments\" | \"GET /internal/apm/settings/apm-index-settings\" | \"GET /internal/apm/settings/apm-indices\" | \"POST /internal/apm/settings/apm-indices/save\" | \"GET /internal/apm/settings/custom_links/transaction\" | \"GET /internal/apm/settings/custom_links\" | \"POST /internal/apm/settings/custom_links\" | \"PUT /internal/apm/settings/custom_links/{id}\" | \"DELETE /internal/apm/settings/custom_links/{id}\" | \"GET /api/apm/sourcemaps\" | \"POST /api/apm/sourcemaps\" | \"DELETE /api/apm/sourcemaps/{id}\" | \"GET /internal/apm/fleet/has_data\" | \"GET /internal/apm/fleet/agents\" | \"POST /api/apm/fleet/apm_server_schema\" | \"GET /internal/apm/fleet/apm_server_schema/unsupported\" | \"GET /internal/apm/fleet/migration_check\" | \"POST /internal/apm/fleet/cloud_apm_package_policy\" | \"GET /internal/apm/backends/top_backends\" | \"GET /internal/apm/backends/upstream_services\" | \"GET /internal/apm/backends/metadata\" | \"GET /internal/apm/backends/charts/latency\" | \"GET /internal/apm/backends/charts/throughput\" | \"GET /internal/apm/backends/charts/error_rate\" | \"POST /internal/apm/correlations/p_values\" | \"GET /internal/apm/correlations/field_candidates\" | \"POST /internal/apm/correlations/field_stats\" | \"POST /internal/apm/correlations/field_value_pairs\" | \"POST /internal/apm/correlations/significant_correlations\" | \"GET /internal/apm/fallback_to_transactions\" | \"GET /internal/apm/has_data\" | \"GET /internal/apm/event_metadata/{processorEvent}/{id}\""
+ "\"POST /internal/apm/data_view/static\" | \"GET /internal/apm/data_view/dynamic\" | \"GET /internal/apm/environments\" | \"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/errors/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/errors/{groupId}\" | \"GET /internal/apm/services/{serviceName}/errors/distribution\" | \"POST /internal/apm/latency/overall_distribution\" | \"GET /internal/apm/services/{serviceName}/metrics/charts\" | \"GET /internal/apm/observability_overview\" | \"GET /internal/apm/observability_overview/has_data\" | \"GET /internal/apm/ux/client-metrics\" | \"GET /internal/apm/ux/page-load-distribution\" | \"GET /internal/apm/ux/page-load-distribution/breakdown\" | \"GET /internal/apm/ux/page-view-trends\" | \"GET /internal/apm/ux/services\" | \"GET /internal/apm/ux/visitor-breakdown\" | \"GET /internal/apm/ux/web-core-vitals\" | \"GET /internal/apm/ux/long-task-metrics\" | \"GET /internal/apm/ux/url-search\" | \"GET /internal/apm/ux/js-errors\" | \"GET /api/apm/observability_overview/has_rum_data\" | \"GET /internal/apm/service-map\" | \"GET /internal/apm/service-map/service/{serviceName}\" | \"GET /internal/apm/service-map/backend\" | \"GET /internal/apm/services/{serviceName}/serviceNodes\" | \"GET /internal/apm/services\" | \"GET /internal/apm/services/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/metadata/details\" | \"GET /internal/apm/services/{serviceName}/metadata/icons\" | \"GET /internal/apm/services/{serviceName}/agent\" | \"GET /internal/apm/services/{serviceName}/transaction_types\" | \"GET /internal/apm/services/{serviceName}/node/{serviceNodeName}/metadata\" | \"GET /api/apm/services/{serviceName}/annotation/search\" | \"POST /api/apm/services/{serviceName}/annotation\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/details/{serviceNodeName}\" | \"GET /internal/apm/services/{serviceName}/throughput\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/main_statistics\" | \"GET /internal/apm/services/{serviceName}/service_overview_instances/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/dependencies\" | \"GET /internal/apm/services/{serviceName}/dependencies/breakdown\" | \"GET /internal/apm/services/{serviceName}/profiling/timeline\" | \"GET /internal/apm/services/{serviceName}/profiling/statistics\" | \"GET /internal/apm/services/{serviceName}/alerts\" | \"GET /internal/apm/services/{serviceName}/infrastructure\" | \"GET /internal/apm/services/{serviceName}/anomaly_charts\" | \"GET /internal/apm/suggestions\" | \"GET /internal/apm/traces/{traceId}\" | \"GET /internal/apm/traces\" | \"GET /internal/apm/traces/{traceId}/root_transaction\" | \"GET /internal/apm/transactions/{transactionId}\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/main_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/groups/detailed_statistics\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/latency\" | \"GET /internal/apm/services/{serviceName}/transactions/traces/samples\" | \"GET /internal/apm/services/{serviceName}/transaction/charts/breakdown\" | \"GET /internal/apm/services/{serviceName}/transactions/charts/error_rate\" | \"GET /internal/apm/alerts/chart_preview/transaction_error_rate\" | \"GET /internal/apm/alerts/chart_preview/transaction_duration\" | \"GET /internal/apm/alerts/chart_preview/transaction_error_count\" | \"GET /api/apm/settings/agent-configuration\" | \"GET /api/apm/settings/agent-configuration/view\" | \"DELETE /api/apm/settings/agent-configuration\" | \"PUT /api/apm/settings/agent-configuration\" | \"POST /api/apm/settings/agent-configuration/search\" | \"GET /api/apm/settings/agent-configuration/services\" | \"GET /api/apm/settings/agent-configuration/environments\" | \"GET /api/apm/settings/agent-configuration/agent_name\" | \"GET /internal/apm/settings/anomaly-detection/jobs\" | \"POST /internal/apm/settings/anomaly-detection/jobs\" | \"GET /internal/apm/settings/anomaly-detection/environments\" | \"POST /internal/apm/settings/anomaly-detection/update_to_v3\" | \"GET /internal/apm/settings/apm-index-settings\" | \"GET /internal/apm/settings/apm-indices\" | \"POST /internal/apm/settings/apm-indices/save\" | \"GET /internal/apm/settings/custom_links/transaction\" | \"GET /internal/apm/settings/custom_links\" | \"POST /internal/apm/settings/custom_links\" | \"PUT /internal/apm/settings/custom_links/{id}\" | \"DELETE /internal/apm/settings/custom_links/{id}\" | \"GET /api/apm/sourcemaps\" | \"POST /api/apm/sourcemaps\" | \"DELETE /api/apm/sourcemaps/{id}\" | \"GET /internal/apm/fleet/has_data\" | \"GET /internal/apm/fleet/agents\" | \"POST /api/apm/fleet/apm_server_schema\" | \"GET /internal/apm/fleet/apm_server_schema/unsupported\" | \"GET /internal/apm/fleet/migration_check\" | \"POST /internal/apm/fleet/cloud_apm_package_policy\" | \"GET /internal/apm/backends/top_backends\" | \"GET /internal/apm/backends/upstream_services\" | \"GET /internal/apm/backends/metadata\" | \"GET /internal/apm/backends/charts/latency\" | \"GET /internal/apm/backends/charts/throughput\" | \"GET /internal/apm/backends/charts/error_rate\" | \"POST /internal/apm/correlations/p_values\" | \"GET /internal/apm/correlations/field_candidates\" | \"POST /internal/apm/correlations/field_stats\" | \"GET /internal/apm/correlations/field_value_stats\" | \"POST /internal/apm/correlations/field_value_pairs\" | \"POST /internal/apm/correlations/significant_correlations\" | \"GET /internal/apm/fallback_to_transactions\" | \"GET /internal/apm/has_data\" | \"GET /internal/apm/event_metadata/{processorEvent}/{id}\" | \"GET /internal/apm/agent_keys\" | \"GET /internal/apm/agent_keys/privileges\" | \"POST /internal/apm/api_key/invalidate\" | \"POST /api/apm/agent_keys\""
],
"path": "x-pack/plugins/apm/server/routes/apm_routes/get_global_apm_server_route_repository.ts",
"deprecated": false,
@@ -765,7 +765,7 @@
"label": "APMConfig",
"description": [],
"signature": [
- "{ readonly indices: Readonly<{} & { metric: string; error: string; span: string; transaction: string; sourcemap: string; onboarding: string; }>; readonly serviceMapEnabled: boolean; readonly serviceMapFingerprintBucketSize: number; readonly serviceMapTraceIdBucketSize: number; readonly serviceMapFingerprintGlobalBucketSize: number; readonly serviceMapTraceIdGlobalBucketSize: number; readonly serviceMapMaxTracesPerRequest: number; readonly autocreateApmIndexPattern: boolean; readonly ui: Readonly<{} & { enabled: boolean; transactionGroupBucketSize: number; maxTraceItems: number; }>; readonly searchAggregatedTransactions: ",
+ "{ readonly indices: Readonly<{} & { error: string; span: string; metric: string; transaction: string; sourcemap: string; onboarding: string; }>; readonly autoCreateApmDataView: boolean; readonly serviceMapEnabled: boolean; readonly serviceMapFingerprintBucketSize: number; readonly serviceMapTraceIdBucketSize: number; readonly serviceMapFingerprintGlobalBucketSize: number; readonly serviceMapTraceIdGlobalBucketSize: number; readonly serviceMapMaxTracesPerRequest: number; readonly ui: Readonly<{} & { enabled: boolean; transactionGroupBucketSize: number; maxTraceItems: number; }>; readonly searchAggregatedTransactions: ",
"SearchAggregatedTransactionSetting",
"; readonly telemetryCollectionEnabled: boolean; readonly metricsInterval: number; readonly profilingEnabled: boolean; readonly agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; }"
],
@@ -781,7 +781,7 @@
"label": "ApmIndicesConfigName",
"description": [],
"signature": [
- "\"metric\" | \"error\" | \"span\" | \"transaction\" | \"sourcemap\" | \"onboarding\""
+ "\"error\" | \"span\" | \"metric\" | \"transaction\" | \"sourcemap\" | \"onboarding\""
],
"path": "x-pack/plugins/apm/server/index.ts",
"deprecated": false,
@@ -880,9 +880,13 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { environments: string[]; }, ",
+ ", { environments: (\"ENVIRONMENT_NOT_DEFINED\" | \"ENVIRONMENT_ALL\" | ",
+ "Branded",
+ ")[]; }, ",
"APMRouteCreateOptions",
- ">; } & { \"GET /internal/apm/services/{serviceName}/errors\": ",
+ ">; } & { \"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics\": ",
{
"pluginId": "@kbn/server-route-repository",
"scope": "server",
@@ -890,7 +894,7 @@
"section": "def-server.ServerRoute",
"text": "ServerRoute"
},
- "<\"GET /internal/apm/services/{serviceName}/errors\", ",
+ "<\"GET /internal/apm/services/{serviceName}/errors/groups/main_statistics\", ",
"TypeC",
"<{ path: ",
"TypeC",
@@ -932,7 +936,11 @@
"Type",
"; end: ",
"Type",
- "; }>]>; }>, ",
+ "; }>, ",
+ "TypeC",
+ "<{ transactionType: ",
+ "StringC",
+ "; }>]>; }>, ",
{
"pluginId": "apm",
"scope": "server",
@@ -940,7 +948,75 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { errorGroups: { message: string; occurrenceCount: number; culprit: string | undefined; groupId: string; latestOccurrenceAt: string; handled: boolean | undefined; type: string | undefined; }[]; }, ",
+ ", { errorGroups: { groupId: string; name: string; lastSeen: number; occurrences: number; culprit: string | undefined; handled: boolean | undefined; type: string | undefined; }[]; }, ",
+ "APMRouteCreateOptions",
+ ">; } & { \"GET /internal/apm/services/{serviceName}/errors/groups/detailed_statistics\": ",
+ {
+ "pluginId": "@kbn/server-route-repository",
+ "scope": "server",
+ "docId": "kibKbnServerRouteRepositoryPluginApi",
+ "section": "def-server.ServerRoute",
+ "text": "ServerRoute"
+ },
+ "<\"GET /internal/apm/services/{serviceName}/errors/groups/detailed_statistics\", ",
+ "TypeC",
+ "<{ path: ",
+ "TypeC",
+ "<{ serviceName: ",
+ "StringC",
+ "; }>; query: ",
+ "IntersectionC",
+ "<[",
+ "TypeC",
+ "<{ environment: ",
+ "UnionC",
+ "<[",
+ "LiteralC",
+ "<\"ENVIRONMENT_NOT_DEFINED\">, ",
+ "LiteralC",
+ "<\"ENVIRONMENT_ALL\">, ",
+ "BrandC",
+ "<",
+ "StringC",
+ ", ",
+ "NonEmptyStringBrand",
+ ">]>; }>, ",
+ "TypeC",
+ "<{ kuery: ",
+ "StringC",
+ "; }>, ",
+ "TypeC",
+ "<{ start: ",
+ "Type",
+ "; end: ",
+ "Type",
+ "; }>, ",
+ "PartialC",
+ "<{ comparisonStart: ",
+ "Type",
+ "; comparisonEnd: ",
+ "Type",
+ "; }>, ",
+ "TypeC",
+ "<{ numBuckets: ",
+ "Type",
+ "; transactionType: ",
+ "StringC",
+ "; groupIds: ",
+ "Type",
+ "; }>]>; }>, ",
+ {
+ "pluginId": "apm",
+ "scope": "server",
+ "docId": "kibApmPluginApi",
+ "section": "def-server.APMRouteHandlerResources",
+ "text": "APMRouteHandlerResources"
+ },
+ ", { currentPeriod: _.Dictionary<{ groupId: string; timeseries: ",
+ "Coordinate",
+ "[]; }>; previousPeriod: _.Dictionary<{ timeseries: { x: number; y: ",
+ "Maybe",
+ "; }[]; groupId: string; }>; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/services/{serviceName}/errors/{groupId}\": ",
{
@@ -1056,7 +1132,9 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { currentPeriod: { x: number; y: number; }[]; previousPeriod: { x: number; y: number | null | undefined; }[]; bucketSize: number; }, ",
+ ", { currentPeriod: { x: number; y: number; }[]; previousPeriod: { x: number; y: ",
+ "Maybe",
+ "; }[]; bucketSize: number; }, ",
"APMRouteCreateOptions",
">; } & { \"POST /internal/apm/latency/overall_distribution\": ",
{
@@ -1764,7 +1842,11 @@
"Type",
"; end: ",
"Type",
- "; }>]>; }>, ",
+ "; }>, ",
+ "PartialC",
+ "<{ offset: ",
+ "StringC",
+ "; }>]>; }>, ",
{
"pluginId": "apm",
"scope": "server",
@@ -1772,7 +1854,11 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { avgMemoryUsage: number | null; avgCpuUsage: number | null; transactionStats: { avgTransactionDuration: number | null; avgRequestsPerMinute: number | null; }; avgErrorRate: number | null; }, ",
+ ", { currentPeriod: ",
+ "NodeStats",
+ "; previousPeriod: ",
+ "NodeStats",
+ " | undefined; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/service-map/backend\": ",
{
@@ -1810,7 +1896,11 @@
"Type",
"; end: ",
"Type",
- "; }>]>; }>, ",
+ "; }>, ",
+ "PartialC",
+ "<{ offset: ",
+ "StringC",
+ "; }>]>; }>, ",
{
"pluginId": "apm",
"scope": "server",
@@ -1818,7 +1908,11 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { avgErrorRate: null; transactionStats: { avgRequestsPerMinute: null; avgTransactionDuration: null; }; } | { avgErrorRate: number; transactionStats: { avgRequestsPerMinute: number; avgTransactionDuration: number; }; }, ",
+ ", { currentPeriod: ",
+ "NodeStats",
+ "; previousPeriod: ",
+ "NodeStats",
+ " | undefined; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/services/{serviceName}/serviceNodes\": ",
{
@@ -2206,151 +2300,31 @@
"TypeC",
"<{ serviceName: ",
"StringC",
- "; }>; body: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ '@timestamp': ",
- "Type",
- "; service: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ environment: ",
- "StringC",
- "; }>]>; }>, ",
- "PartialC",
- "<{ message: ",
- "StringC",
- "; tags: ",
- "ArrayC",
- "<",
- "StringC",
- ">; }>]>; }>, ",
- {
- "pluginId": "apm",
- "scope": "server",
- "docId": "kibApmPluginApi",
- "section": "def-server.APMRouteHandlerResources",
- "text": "APMRouteHandlerResources"
- },
- ", { _id: string; _index: string; _source: ",
- "Annotation",
- "; }, ",
- "APMRouteCreateOptions",
- ">; } & { \"GET /internal/apm/services/{serviceName}/error_groups/main_statistics\": ",
- {
- "pluginId": "@kbn/server-route-repository",
- "scope": "server",
- "docId": "kibKbnServerRouteRepositoryPluginApi",
- "section": "def-server.ServerRoute",
- "text": "ServerRoute"
- },
- "<\"GET /internal/apm/services/{serviceName}/error_groups/main_statistics\", ",
- "TypeC",
- "<{ path: ",
- "TypeC",
- "<{ serviceName: ",
- "StringC",
- "; }>; query: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ environment: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"ENVIRONMENT_NOT_DEFINED\">, ",
- "LiteralC",
- "<\"ENVIRONMENT_ALL\">, ",
- "BrandC",
- "<",
- "StringC",
- ", ",
- "NonEmptyStringBrand",
- ">]>; }>, ",
- "TypeC",
- "<{ kuery: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ start: ",
- "Type",
- "; end: ",
- "Type",
- "; }>, ",
- "TypeC",
- "<{ transactionType: ",
- "StringC",
- "; }>]>; }>, ",
- {
- "pluginId": "apm",
- "scope": "server",
- "docId": "kibApmPluginApi",
- "section": "def-server.APMRouteHandlerResources",
- "text": "APMRouteHandlerResources"
- },
- ", { is_aggregation_accurate: boolean; error_groups: { group_id: string; name: string; lastSeen: number; occurrences: number; }[]; }, ",
- "APMRouteCreateOptions",
- ">; } & { \"GET /internal/apm/services/{serviceName}/error_groups/detailed_statistics\": ",
- {
- "pluginId": "@kbn/server-route-repository",
- "scope": "server",
- "docId": "kibKbnServerRouteRepositoryPluginApi",
- "section": "def-server.ServerRoute",
- "text": "ServerRoute"
- },
- "<\"GET /internal/apm/services/{serviceName}/error_groups/detailed_statistics\", ",
- "TypeC",
- "<{ path: ",
- "TypeC",
- "<{ serviceName: ",
- "StringC",
- "; }>; query: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ environment: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"ENVIRONMENT_NOT_DEFINED\">, ",
- "LiteralC",
- "<\"ENVIRONMENT_ALL\">, ",
- "BrandC",
- "<",
- "StringC",
- ", ",
- "NonEmptyStringBrand",
- ">]>; }>, ",
- "TypeC",
- "<{ kuery: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ start: ",
- "Type",
- "; end: ",
- "Type",
- "; }>, ",
- "PartialC",
- "<{ comparisonStart: ",
- "Type",
- "; comparisonEnd: ",
- "Type",
- "; }>, ",
+ "; }>; body: ",
+ "IntersectionC",
+ "<[",
"TypeC",
- "<{ numBuckets: ",
+ "<{ '@timestamp': ",
"Type",
- "; transactionType: ",
+ "; service: ",
+ "IntersectionC",
+ "<[",
+ "TypeC",
+ "<{ version: ",
"StringC",
- "; groupIds: ",
- "Type",
- "; }>]>; }>, ",
+ "; }>, ",
+ "PartialC",
+ "<{ environment: ",
+ "StringC",
+ "; }>]>; }>, ",
+ "PartialC",
+ "<{ message: ",
+ "StringC",
+ "; tags: ",
+ "ArrayC",
+ "<",
+ "StringC",
+ ">; }>]>; }>, ",
{
"pluginId": "apm",
"scope": "server",
@@ -2358,9 +2332,9 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { currentPeriod: _.Dictionary<{ groupId: string; timeseries: ",
- "Coordinate",
- "[]; }>; previousPeriod: _.Dictionary<{ timeseries: { x: number; y: number | null | undefined; }[]; groupId: string; }>; }, ",
+ ", { _id: string; _index: string; _source: ",
+ "Annotation",
+ "; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/services/{serviceName}/service_overview_instances/details/{serviceNodeName}\": ",
{
@@ -2480,7 +2454,9 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { currentPeriod: { x: number; y: number | null; }[]; previousPeriod: { x: number; y: number | null | undefined; }[]; }, ",
+ ", { currentPeriod: { x: number; y: number | null; }[]; previousPeriod: { x: number; y: ",
+ "Maybe",
+ "; }[]; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/services/{serviceName}/service_overview_instances/main_statistics\": ",
{
@@ -2642,7 +2618,17 @@
"Coordinate",
"[] | undefined; memoryUsage?: ",
"Coordinate",
- "[] | undefined; }>; previousPeriod: _.Dictionary<{ cpuUsage: { x: number; y: number | null | undefined; }[]; errorRate: { x: number; y: number | null | undefined; }[]; latency: { x: number; y: number | null | undefined; }[]; memoryUsage: { x: number; y: number | null | undefined; }[]; throughput: { x: number; y: number | null | undefined; }[]; serviceNodeName: string; }>; }, ",
+ "[] | undefined; }>; previousPeriod: _.Dictionary<{ cpuUsage: { x: number; y: ",
+ "Maybe",
+ "; }[]; errorRate: { x: number; y: ",
+ "Maybe",
+ "; }[]; latency: { x: number; y: ",
+ "Maybe",
+ "; }[]; memoryUsage: { x: number; y: ",
+ "Maybe",
+ "; }[]; throughput: { x: number; y: ",
+ "Maybe",
+ "; }[]; serviceNodeName: string; }>; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/services/{serviceName}/dependencies\": ",
{
@@ -3000,6 +2986,44 @@
},
", { serviceInfrastructure: { containerIds: string[]; hostNames: string[]; }; }, ",
"APMRouteCreateOptions",
+ ">; } & { \"GET /internal/apm/services/{serviceName}/anomaly_charts\": ",
+ {
+ "pluginId": "@kbn/server-route-repository",
+ "scope": "server",
+ "docId": "kibKbnServerRouteRepositoryPluginApi",
+ "section": "def-server.ServerRoute",
+ "text": "ServerRoute"
+ },
+ "<\"GET /internal/apm/services/{serviceName}/anomaly_charts\", ",
+ "TypeC",
+ "<{ path: ",
+ "TypeC",
+ "<{ serviceName: ",
+ "StringC",
+ "; }>; query: ",
+ "IntersectionC",
+ "<[",
+ "TypeC",
+ "<{ start: ",
+ "Type",
+ "; end: ",
+ "Type",
+ "; }>, ",
+ "TypeC",
+ "<{ transactionType: ",
+ "StringC",
+ "; }>]>; }>, ",
+ {
+ "pluginId": "apm",
+ "scope": "server",
+ "docId": "kibApmPluginApi",
+ "section": "def-server.APMRouteHandlerResources",
+ "text": "APMRouteHandlerResources"
+ },
+ ", { allAnomalyTimeseries: ",
+ "ServiceAnomalyTimeseries",
+ "[]; }, ",
+ "APMRouteCreateOptions",
">; } & { \"GET /internal/apm/suggestions\": ",
{
"pluginId": "@kbn/server-route-repository",
@@ -3054,11 +3078,11 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { exceedsMax: boolean; traceDocs: TypeOfProcessorEvent<",
- "ProcessorEvent",
- ".transaction | ",
- "ProcessorEvent",
- ".span>[]; errorDocs: ",
+ ", { exceedsMax: boolean; traceDocs: (",
+ "Transaction",
+ " | ",
+ "Span",
+ ")[]; errorDocs: ",
"APMError",
"[]; }, ",
"APMRouteCreateOptions",
@@ -3106,9 +3130,11 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { items: ",
- "TransactionGroup",
- "[]; }, ",
+ ", { items: { key: ",
+ "BucketKey",
+ "; serviceName: string; transactionName: string; averageResponseTime: number | null; transactionsPerMinute: number; transactionType: string; impact: number; agentName: ",
+ "AgentName",
+ "; }[]; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/traces/{traceId}/root_transaction\": ",
{
@@ -3312,7 +3338,13 @@
"Coordinate",
"[]; errorRate: ",
"Coordinate",
- "[]; impact: number; }>; previousPeriod: _.Dictionary<{ errorRate: { x: number; y: number | null | undefined; }[]; throughput: { x: number; y: number | null | undefined; }[]; latency: { x: number; y: number | null | undefined; }[]; transactionName: string; impact: number; }>; }, ",
+ "[]; impact: number; }>; previousPeriod: _.Dictionary<{ errorRate: { x: number; y: ",
+ "Maybe",
+ "; }[]; throughput: { x: number; y: ",
+ "Maybe",
+ "; }[]; latency: { x: number; y: ",
+ "Maybe",
+ "; }[]; transactionName: string; impact: number; }>; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/services/{serviceName}/transactions/charts/latency\": ",
{
@@ -3392,7 +3424,9 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { currentPeriod: { overallAvgDuration: number | null; latencyTimeseries: { x: number; y: number | null; }[]; }; previousPeriod: { latencyTimeseries: { x: number; y: number | null | undefined; }[]; overallAvgDuration: number | null; }; anomalyTimeseries: { jobId: string; anomalyScore: { x0: number; x: number; y: number; }[]; anomalyBoundaries: { x: number; y0: number; y: number; }[]; } | undefined; }, ",
+ ", { currentPeriod: { overallAvgDuration: number | null; latencyTimeseries: { x: number; y: number | null; }[]; }; previousPeriod: { latencyTimeseries: { x: number; y: ",
+ "Maybe",
+ "; }[]; overallAvgDuration: number | null; }; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/services/{serviceName}/transactions/traces/samples\": ",
{
@@ -3584,7 +3618,9 @@
},
", { currentPeriod: { timeseries: ",
"Coordinate",
- "[]; average: number | null; }; previousPeriod: { timeseries: { x: number; y: number | null | undefined; }[]; average: number | null; }; }, ",
+ "[]; average: number | null; }; previousPeriod: { timeseries: { x: number; y: ",
+ "Maybe",
+ "; }[]; average: number | null; }; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/alerts/chart_preview/transaction_error_rate\": ",
{
@@ -4018,7 +4054,9 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { jobs: { job_id: string; environment: string; }[]; hasLegacyJobs: boolean; }, ",
+ ", { jobs: ",
+ "ApmMlJob",
+ "[]; hasLegacyJobs: boolean; }, ",
"APMRouteCreateOptions",
">; } & { \"POST /internal/apm/settings/anomaly-detection/jobs\": ",
{
@@ -4035,8 +4073,18 @@
"<{ environments: ",
"ArrayC",
"<",
+ "UnionC",
+ "<[",
+ "LiteralC",
+ "<\"ENVIRONMENT_NOT_DEFINED\">, ",
+ "LiteralC",
+ "<\"ENVIRONMENT_ALL\">, ",
+ "BrandC",
+ "<",
"StringC",
- ">; }>; }>, ",
+ ", ",
+ "NonEmptyStringBrand",
+ ">]>>; }>; }>, ",
{
"pluginId": "apm",
"scope": "server",
@@ -4064,6 +4112,24 @@
},
", { environments: string[]; }, ",
"APMRouteCreateOptions",
+ ">; } & { \"POST /internal/apm/settings/anomaly-detection/update_to_v3\": ",
+ {
+ "pluginId": "@kbn/server-route-repository",
+ "scope": "server",
+ "docId": "kibKbnServerRouteRepositoryPluginApi",
+ "section": "def-server.ServerRoute",
+ "text": "ServerRoute"
+ },
+ "<\"POST /internal/apm/settings/anomaly-detection/update_to_v3\", undefined, ",
+ {
+ "pluginId": "apm",
+ "scope": "server",
+ "docId": "kibApmPluginApi",
+ "section": "def-server.APMRouteHandlerResources",
+ "text": "APMRouteHandlerResources"
+ },
+ ", { update: boolean; }, ",
+ "APMRouteCreateOptions",
">; } & { \"GET /internal/apm/settings/apm-index-settings\": ",
{
"pluginId": "@kbn/server-route-repository",
@@ -4080,7 +4146,7 @@
"section": "def-server.APMRouteHandlerResources",
"text": "APMRouteHandlerResources"
},
- ", { apmIndexSettings: { configurationName: \"metric\" | \"error\" | \"span\" | \"transaction\" | \"sourcemap\" | \"onboarding\"; defaultValue: string; savedValue: string | undefined; }[]; }, ",
+ ", { apmIndexSettings: { configurationName: \"error\" | \"span\" | \"metric\" | \"transaction\" | \"sourcemap\" | \"onboarding\"; defaultValue: string; savedValue: string | undefined; }[]; }, ",
"APMRouteCreateOptions",
">; } & { \"GET /internal/apm/settings/apm-indices\": ",
{
@@ -5028,6 +5094,12 @@
"StringC",
"; }>, ",
"TypeC",
+ "<{ fieldsToSample: ",
+ "ArrayC",
+ "<",
+ "StringC",
+ ">; }>, ",
+ "TypeC",
"<{ environment: ",
"UnionC",
"<[",
@@ -5050,13 +5122,7 @@
"Type",
"; end: ",
"Type",
- "; }>, ",
- "TypeC",
- "<{ fieldsToSample: ",
- "ArrayC",
- "<",
- "StringC",
- ">; }>]>; }>, ",
+ "; }>]>; }>, ",
{
"pluginId": "apm",
"scope": "server",
@@ -5068,6 +5134,72 @@
"FieldStats",
"[]; errors: any[]; }, ",
"APMRouteCreateOptions",
+ ">; } & { \"GET /internal/apm/correlations/field_value_stats\": ",
+ {
+ "pluginId": "@kbn/server-route-repository",
+ "scope": "server",
+ "docId": "kibKbnServerRouteRepositoryPluginApi",
+ "section": "def-server.ServerRoute",
+ "text": "ServerRoute"
+ },
+ "<\"GET /internal/apm/correlations/field_value_stats\", ",
+ "TypeC",
+ "<{ query: ",
+ "IntersectionC",
+ "<[",
+ "PartialC",
+ "<{ serviceName: ",
+ "StringC",
+ "; transactionName: ",
+ "StringC",
+ "; transactionType: ",
+ "StringC",
+ "; }>, ",
+ "TypeC",
+ "<{ environment: ",
+ "UnionC",
+ "<[",
+ "LiteralC",
+ "<\"ENVIRONMENT_NOT_DEFINED\">, ",
+ "LiteralC",
+ "<\"ENVIRONMENT_ALL\">, ",
+ "BrandC",
+ "<",
+ "StringC",
+ ", ",
+ "NonEmptyStringBrand",
+ ">]>; }>, ",
+ "TypeC",
+ "<{ kuery: ",
+ "StringC",
+ "; }>, ",
+ "TypeC",
+ "<{ start: ",
+ "Type",
+ "; end: ",
+ "Type",
+ "; }>, ",
+ "TypeC",
+ "<{ fieldName: ",
+ "StringC",
+ "; fieldValue: ",
+ "UnionC",
+ "<[",
+ "StringC",
+ ", ",
+ "NumberC",
+ "]>; }>]>; }>, ",
+ {
+ "pluginId": "apm",
+ "scope": "server",
+ "docId": "kibApmPluginApi",
+ "section": "def-server.APMRouteHandlerResources",
+ "text": "APMRouteHandlerResources"
+ },
+ ", ",
+ "TopValuesStats",
+ ", ",
+ "APMRouteCreateOptions",
">; } & { \"POST /internal/apm/correlations/field_value_pairs\": ",
{
"pluginId": "@kbn/server-route-repository",
@@ -5296,6 +5428,110 @@
},
", { metadata: Partial>; }, ",
"APMRouteCreateOptions",
+ ">; } & { \"GET /internal/apm/agent_keys\": ",
+ {
+ "pluginId": "@kbn/server-route-repository",
+ "scope": "server",
+ "docId": "kibKbnServerRouteRepositoryPluginApi",
+ "section": "def-server.ServerRoute",
+ "text": "ServerRoute"
+ },
+ "<\"GET /internal/apm/agent_keys\", undefined, ",
+ {
+ "pluginId": "apm",
+ "scope": "server",
+ "docId": "kibApmPluginApi",
+ "section": "def-server.APMRouteHandlerResources",
+ "text": "APMRouteHandlerResources"
+ },
+ ", { agentKeys: ",
+ "ApiKey",
+ "[]; }, ",
+ "APMRouteCreateOptions",
+ ">; } & { \"GET /internal/apm/agent_keys/privileges\": ",
+ {
+ "pluginId": "@kbn/server-route-repository",
+ "scope": "server",
+ "docId": "kibKbnServerRouteRepositoryPluginApi",
+ "section": "def-server.ServerRoute",
+ "text": "ServerRoute"
+ },
+ "<\"GET /internal/apm/agent_keys/privileges\", undefined, ",
+ {
+ "pluginId": "apm",
+ "scope": "server",
+ "docId": "kibApmPluginApi",
+ "section": "def-server.APMRouteHandlerResources",
+ "text": "APMRouteHandlerResources"
+ },
+ ", { areApiKeysEnabled: boolean; isAdmin: boolean; canManage: boolean; }, ",
+ "APMRouteCreateOptions",
+ ">; } & { \"POST /internal/apm/api_key/invalidate\": ",
+ {
+ "pluginId": "@kbn/server-route-repository",
+ "scope": "server",
+ "docId": "kibKbnServerRouteRepositoryPluginApi",
+ "section": "def-server.ServerRoute",
+ "text": "ServerRoute"
+ },
+ "<\"POST /internal/apm/api_key/invalidate\", ",
+ "TypeC",
+ "<{ body: ",
+ "TypeC",
+ "<{ id: ",
+ "StringC",
+ "; }>; }>, ",
+ {
+ "pluginId": "apm",
+ "scope": "server",
+ "docId": "kibApmPluginApi",
+ "section": "def-server.APMRouteHandlerResources",
+ "text": "APMRouteHandlerResources"
+ },
+ ", { invalidatedAgentKeys: string[]; }, ",
+ "APMRouteCreateOptions",
+ ">; } & { \"POST /api/apm/agent_keys\": ",
+ {
+ "pluginId": "@kbn/server-route-repository",
+ "scope": "server",
+ "docId": "kibKbnServerRouteRepositoryPluginApi",
+ "section": "def-server.ServerRoute",
+ "text": "ServerRoute"
+ },
+ "<\"POST /api/apm/agent_keys\", ",
+ "TypeC",
+ "<{ body: ",
+ "TypeC",
+ "<{ name: ",
+ "StringC",
+ "; privileges: ",
+ "ArrayC",
+ "<",
+ "UnionC",
+ "<[",
+ "LiteralC",
+ "<",
+ "PrivilegeType",
+ ".SOURCEMAP>, ",
+ "LiteralC",
+ "<",
+ "PrivilegeType",
+ ".EVENT>, ",
+ "LiteralC",
+ "<",
+ "PrivilegeType",
+ ".AGENT_CONFIG>]>>; }>; }>, ",
+ {
+ "pluginId": "apm",
+ "scope": "server",
+ "docId": "kibApmPluginApi",
+ "section": "def-server.APMRouteHandlerResources",
+ "text": "APMRouteHandlerResources"
+ },
+ ", { agentKey: ",
+ "SecurityCreateApiKeyResponse",
+ "; }, ",
+ "APMRouteCreateOptions",
">; }>"
],
"path": "x-pack/plugins/apm/server/routes/apm_routes/get_global_apm_server_route_repository.ts",
@@ -5323,7 +5559,7 @@
"description": [],
"signature": [
"Observable",
- "; serviceMapEnabled: boolean; serviceMapFingerprintBucketSize: number; serviceMapTraceIdBucketSize: number; serviceMapFingerprintGlobalBucketSize: number; serviceMapTraceIdGlobalBucketSize: number; serviceMapMaxTracesPerRequest: number; autocreateApmIndexPattern: boolean; ui: Readonly<{} & { enabled: boolean; transactionGroupBucketSize: number; maxTraceItems: number; }>; searchAggregatedTransactions: ",
+ "; autoCreateApmDataView: boolean; serviceMapEnabled: boolean; serviceMapFingerprintBucketSize: number; serviceMapTraceIdBucketSize: number; serviceMapFingerprintGlobalBucketSize: number; serviceMapTraceIdGlobalBucketSize: number; serviceMapMaxTracesPerRequest: number; ui: Readonly<{} & { enabled: boolean; transactionGroupBucketSize: number; maxTraceItems: number; }>; searchAggregatedTransactions: ",
"SearchAggregatedTransactionSetting",
"; telemetryCollectionEnabled: boolean; metricsInterval: number; profilingEnabled: boolean; agent: Readonly<{} & { migrations: Readonly<{} & { enabled: boolean; }>; }>; }>>"
],
@@ -5365,17 +5601,9 @@
},
"; context: ",
"ApmPluginRequestHandlerContext",
- "; }) => Promise<{ search(operationName: string, params: TParams): Promise<",
- "InferSearchResponseOf",
- ">, ESSearchRequestOf, {}>>; termsEnum(operationName: string, params: ",
- "APMEventESTermsEnumRequest",
- "): Promise<",
- "TermsEnumResponse",
- ">; }>"
+ "; }) => Promise<",
+ "APMEventClient",
+ ">"
],
"path": "x-pack/plugins/apm/server/types.ts",
"deprecated": false,
diff --git a/api_docs/apm.mdx b/api_docs/apm.mdx
index 54a6d5e007058..bc6167008a548 100644
--- a/api_docs/apm.mdx
+++ b/api_docs/apm.mdx
@@ -16,9 +16,9 @@ Contact [APM UI](https://github.com/orgs/elastic/teams/apm-ui) for questions reg
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 39 | 0 | 39 | 42 |
+| 40 | 0 | 40 | 48 |
## Client
diff --git a/api_docs/banners.json b/api_docs/banners.json
index d370967767d93..eae41491a43d2 100644
--- a/api_docs/banners.json
+++ b/api_docs/banners.json
@@ -38,7 +38,7 @@
"label": "placement",
"description": [],
"signature": [
- "\"disabled\" | \"top\""
+ "\"top\" | \"disabled\""
],
"path": "x-pack/plugins/banners/common/types.ts",
"deprecated": false
@@ -129,7 +129,7 @@
"label": "BannerPlacement",
"description": [],
"signature": [
- "\"disabled\" | \"top\""
+ "\"top\" | \"disabled\""
],
"path": "x-pack/plugins/banners/common/types.ts",
"deprecated": false,
diff --git a/api_docs/banners.mdx b/api_docs/banners.mdx
index 5f433b3f6f574..403d6671aad18 100644
--- a/api_docs/banners.mdx
+++ b/api_docs/banners.mdx
@@ -16,7 +16,7 @@ Contact [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) for que
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
| 9 | 0 | 9 | 0 |
diff --git a/api_docs/bfetch.mdx b/api_docs/bfetch.mdx
index ca32afc24e166..9203b5e611339 100644
--- a/api_docs/bfetch.mdx
+++ b/api_docs/bfetch.mdx
@@ -16,7 +16,7 @@ Contact [App Services](https://github.com/orgs/elastic/teams/kibana-app-services
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
| 76 | 1 | 67 | 2 |
diff --git a/api_docs/canvas.mdx b/api_docs/canvas.mdx
index 6e52215267748..18f7c86e644fd 100644
--- a/api_docs/canvas.mdx
+++ b/api_docs/canvas.mdx
@@ -16,7 +16,7 @@ Contact [Kibana Presentation](https://github.com/orgs/elastic/teams/kibana-prese
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
| 9 | 0 | 8 | 3 |
diff --git a/api_docs/cases.json b/api_docs/cases.json
index 84125b5a24dac..3c3cf5399ebfc 100644
--- a/api_docs/cases.json
+++ b/api_docs/cases.json
@@ -577,7 +577,7 @@
"section": "def-public.GetCasesProps",
"text": "GetCasesProps"
},
- ">"
+ ", string | React.JSXElementConstructor>"
],
"path": "x-pack/plugins/cases/public/types.ts",
"deprecated": false,
@@ -633,7 +633,7 @@
"section": "def-public.GetAllCasesSelectorModalProps",
"text": "GetAllCasesSelectorModalProps"
},
- ">"
+ ", string | React.JSXElementConstructor>"
],
"path": "x-pack/plugins/cases/public/types.ts",
"deprecated": false,
@@ -691,7 +691,7 @@
"section": "def-public.GetCreateCaseFlyoutProps",
"text": "GetCreateCaseFlyoutProps"
},
- ">"
+ ", string | React.JSXElementConstructor>"
],
"path": "x-pack/plugins/cases/public/types.ts",
"deprecated": false,
@@ -749,7 +749,7 @@
"section": "def-public.GetRecentCasesProps",
"text": "GetRecentCasesProps"
},
- ">"
+ ", string | React.JSXElementConstructor>"
],
"path": "x-pack/plugins/cases/public/types.ts",
"deprecated": false,
@@ -919,6 +919,21 @@
],
"path": "x-pack/plugins/cases/server/client/client.ts",
"deprecated": false
+ },
+ {
+ "parentPluginId": "cases",
+ "id": "def-server.CasesClient.metrics",
+ "type": "Object",
+ "tags": [],
+ "label": "metrics",
+ "description": [
+ "\nRetrieves an interface for retrieving metrics related to the cases entities."
+ ],
+ "signature": [
+ "MetricsSubClient"
+ ],
+ "path": "x-pack/plugins/cases/server/client/client.ts",
+ "deprecated": false
}
],
"initialIsOpen": false
@@ -994,7 +1009,7 @@
}
],
"returnComment": [
- "a {@link CasesClient}"
+ "a {@link CasesClient }"
]
}
],
@@ -1010,76 +1025,48 @@
"functions": [
{
"parentPluginId": "cases",
- "id": "def-common.createPlainError",
+ "id": "def-common.getAllConnectorsUrl",
"type": "Function",
"tags": [],
- "label": "createPlainError",
- "description": [],
+ "label": "getAllConnectorsUrl",
+ "description": [
+ "\n"
+ ],
"signature": [
- "(message: string) => Error"
+ "() => string"
],
- "path": "x-pack/plugins/cases/common/api/runtime_types.ts",
+ "path": "x-pack/plugins/cases/common/utils/connectors_api.ts",
"deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.createPlainError.$1",
- "type": "string",
- "tags": [],
- "label": "message",
- "description": [],
- "signature": [
- "string"
- ],
- "path": "x-pack/plugins/cases/common/api/runtime_types.ts",
- "deprecated": false,
- "isRequired": true
- }
+ "children": [],
+ "returnComment": [
+ "All connectors endpoint"
],
- "returnComment": [],
"initialIsOpen": false
},
{
"parentPluginId": "cases",
- "id": "def-common.decodeOrThrow",
+ "id": "def-common.getCasesFromAlertsUrl",
"type": "Function",
"tags": [],
- "label": "decodeOrThrow",
+ "label": "getCasesFromAlertsUrl",
"description": [],
"signature": [
- "(runtimeType: ",
- "Type",
- ", createError?: ErrorFactory) => (inputValue: I) => A"
+ "(alertId: string) => string"
],
- "path": "x-pack/plugins/cases/common/api/runtime_types.ts",
+ "path": "x-pack/plugins/cases/common/api/helpers.ts",
"deprecated": false,
"children": [
{
"parentPluginId": "cases",
- "id": "def-common.decodeOrThrow.$1",
- "type": "Object",
- "tags": [],
- "label": "runtimeType",
- "description": [],
- "signature": [
- "Type",
- ""
- ],
- "path": "x-pack/plugins/cases/common/api/runtime_types.ts",
- "deprecated": false,
- "isRequired": true
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.decodeOrThrow.$2",
- "type": "Function",
+ "id": "def-common.getCasesFromAlertsUrl.$1",
+ "type": "string",
"tags": [],
- "label": "createError",
+ "label": "alertId",
"description": [],
"signature": [
- "ErrorFactory"
+ "string"
],
- "path": "x-pack/plugins/cases/common/api/runtime_types.ts",
+ "path": "x-pack/plugins/cases/common/api/helpers.ts",
"deprecated": false,
"isRequired": true
}
@@ -1089,62 +1076,48 @@
},
{
"parentPluginId": "cases",
- "id": "def-common.excess",
+ "id": "def-common.getCreateConnectorUrl",
"type": "Function",
"tags": [],
- "label": "excess",
- "description": [],
+ "label": "getCreateConnectorUrl",
+ "description": [
+ "\n"
+ ],
"signature": [
- "(codec: C) => C"
+ "() => string"
],
- "path": "x-pack/plugins/cases/common/api/runtime_types.ts",
+ "path": "x-pack/plugins/cases/common/utils/connectors_api.ts",
"deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.excess.$1",
- "type": "Uncategorized",
- "tags": [],
- "label": "codec",
- "description": [],
- "signature": [
- "C"
- ],
- "path": "x-pack/plugins/cases/common/api/runtime_types.ts",
- "deprecated": false,
- "isRequired": true
- }
+ "children": [],
+ "returnComment": [
+ "Create connector endpoint"
],
- "returnComment": [],
"initialIsOpen": false
},
{
"parentPluginId": "cases",
- "id": "def-common.formatErrors",
+ "id": "def-common.throwErrors",
"type": "Function",
- "tags": [
- "deprecated"
- ],
- "label": "formatErrors",
+ "tags": [],
+ "label": "throwErrors",
"description": [],
"signature": [
- "(errors: ",
+ "(createError: ErrorFactory) => (errors: ",
"Errors",
- ") => string[]"
+ ") => never"
],
"path": "x-pack/plugins/cases/common/api/runtime_types.ts",
- "deprecated": true,
- "references": [],
+ "deprecated": false,
"children": [
{
"parentPluginId": "cases",
- "id": "def-common.formatErrors.$1",
- "type": "Object",
+ "id": "def-common.throwErrors.$1",
+ "type": "Function",
"tags": [],
- "label": "errors",
+ "label": "createError",
"description": [],
"signature": [
- "Errors"
+ "ErrorFactory"
],
"path": "x-pack/plugins/cases/common/api/runtime_types.ts",
"deprecated": false,
@@ -1153,24641 +1126,383 @@
],
"returnComment": [],
"initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getAllConnectorsUrl",
- "type": "Function",
- "tags": [],
- "label": "getAllConnectorsUrl",
- "description": [
- "\n"
- ],
- "signature": [
- "() => string"
- ],
- "path": "x-pack/plugins/cases/common/utils/connectors_api.ts",
- "deprecated": false,
- "children": [],
- "returnComment": [
- "All connectors endpoint"
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getAllConnectorTypesUrl",
- "type": "Function",
- "tags": [],
- "label": "getAllConnectorTypesUrl",
- "description": [
- "\n"
- ],
- "signature": [
- "() => string"
- ],
- "path": "x-pack/plugins/cases/common/utils/connectors_api.ts",
- "deprecated": false,
- "children": [],
- "returnComment": [
- "Connector types endpoint"
- ],
- "initialIsOpen": false
- },
+ }
+ ],
+ "interfaces": [
{
"parentPluginId": "cases",
- "id": "def-common.getCaseCommentDetailsUrl",
- "type": "Function",
+ "id": "def-common.Case",
+ "type": "Interface",
"tags": [],
- "label": "getCaseCommentDetailsUrl",
+ "label": "Case",
"description": [],
"signature": [
- "(caseId: string, commentId: string) => string"
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.Case",
+ "text": "Case"
+ },
+ " extends BasicCase"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
"deprecated": false,
"children": [
{
"parentPluginId": "cases",
- "id": "def-common.getCaseCommentDetailsUrl.$1",
- "type": "string",
+ "id": "def-common.Case.connector",
+ "type": "CompoundType",
"tags": [],
- "label": "caseId",
+ "label": "connector",
"description": [],
"signature": [
- "string"
+ "{ id: string; } & ({ name: string; } & ({ type: ",
+ "ConnectorTypes",
+ ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; } | { type: ",
+ "ConnectorTypes",
+ ".none; fields: null; } | { type: ",
+ "ConnectorTypes",
+ ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; } | { type: ",
+ "ConnectorTypes",
+ ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; } | { type: ",
+ "ConnectorTypes",
+ ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; } | { type: ",
+ "ConnectorTypes",
+ ".swimlane; fields: { caseId: string | null; } | null; }))"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
},
{
"parentPluginId": "cases",
- "id": "def-common.getCaseCommentDetailsUrl.$2",
+ "id": "def-common.Case.description",
"type": "string",
"tags": [],
- "label": "commentId",
+ "label": "description",
"description": [],
- "signature": [
- "string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getCaseCommentsUrl",
- "type": "Function",
- "tags": [],
- "label": "getCaseCommentsUrl",
- "description": [],
- "signature": [
- "(id: string) => string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "children": [
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
+ },
{
"parentPluginId": "cases",
- "id": "def-common.getCaseCommentsUrl.$1",
- "type": "string",
+ "id": "def-common.Case.externalService",
+ "type": "CompoundType",
"tags": [],
- "label": "id",
+ "label": "externalService",
"description": [],
"signature": [
- "string"
+ "CaseExternalService",
+ " | null"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getCaseConfigurationDetailsUrl",
- "type": "Function",
- "tags": [],
- "label": "getCaseConfigurationDetailsUrl",
- "description": [],
- "signature": [
- "(configureID: string) => string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "children": [
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
+ },
{
"parentPluginId": "cases",
- "id": "def-common.getCaseConfigurationDetailsUrl.$1",
- "type": "string",
+ "id": "def-common.Case.subCases",
+ "type": "CompoundType",
"tags": [],
- "label": "configureID",
+ "label": "subCases",
"description": [],
"signature": [
- "string"
+ {
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.SubCase",
+ "text": "SubCase"
+ },
+ "[] | null | undefined"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getCaseDetailsUrl",
- "type": "Function",
- "tags": [],
- "label": "getCaseDetailsUrl",
- "description": [],
- "signature": [
- "(id: string) => string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "children": [
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
+ },
{
"parentPluginId": "cases",
- "id": "def-common.getCaseDetailsUrl.$1",
- "type": "string",
+ "id": "def-common.Case.subCaseIds",
+ "type": "Array",
"tags": [],
- "label": "id",
+ "label": "subCaseIds",
"description": [],
"signature": [
- "string"
+ "string[]"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getCasePushUrl",
- "type": "Function",
- "tags": [],
- "label": "getCasePushUrl",
- "description": [],
- "signature": [
- "(caseId: string, connectorId: string) => string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "children": [
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
+ },
{
"parentPluginId": "cases",
- "id": "def-common.getCasePushUrl.$1",
- "type": "string",
+ "id": "def-common.Case.settings",
+ "type": "Object",
"tags": [],
- "label": "caseId",
+ "label": "settings",
"description": [],
"signature": [
- "string"
+ "{ syncAlerts: boolean; }"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
},
{
"parentPluginId": "cases",
- "id": "def-common.getCasePushUrl.$2",
- "type": "string",
+ "id": "def-common.Case.tags",
+ "type": "Array",
"tags": [],
- "label": "connectorId",
+ "label": "tags",
"description": [],
"signature": [
- "string"
+ "string[]"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getCasesFromAlertsUrl",
- "type": "Function",
- "tags": [],
- "label": "getCasesFromAlertsUrl",
- "description": [],
- "signature": [
- "(alertId: string) => string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "children": [
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
+ },
{
"parentPluginId": "cases",
- "id": "def-common.getCasesFromAlertsUrl.$1",
- "type": "string",
+ "id": "def-common.Case.type",
+ "type": "Enum",
"tags": [],
- "label": "alertId",
+ "label": "type",
"description": [],
"signature": [
- "string"
+ "CaseType"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
}
],
- "returnComment": [],
"initialIsOpen": false
},
{
"parentPluginId": "cases",
- "id": "def-common.getCaseUserActionUrl",
- "type": "Function",
+ "id": "def-common.Ecs",
+ "type": "Interface",
"tags": [],
- "label": "getCaseUserActionUrl",
+ "label": "Ecs",
"description": [],
- "signature": [
- "(id: string) => string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
"deprecated": false,
"children": [
{
"parentPluginId": "cases",
- "id": "def-common.getCaseUserActionUrl.$1",
+ "id": "def-common.Ecs._id",
"type": "string",
"tags": [],
- "label": "id",
+ "label": "_id",
"description": [],
- "signature": [
- "string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getCreateConnectorUrl",
- "type": "Function",
- "tags": [],
- "label": "getCreateConnectorUrl",
- "description": [
- "\n"
- ],
- "signature": [
- "() => string"
- ],
- "path": "x-pack/plugins/cases/common/utils/connectors_api.ts",
- "deprecated": false,
- "children": [],
- "returnComment": [
- "Create connector endpoint"
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getExecuteConnectorUrl",
- "type": "Function",
- "tags": [],
- "label": "getExecuteConnectorUrl",
- "description": [
- "\n"
- ],
- "signature": [
- "(connectorId: string) => string"
- ],
- "path": "x-pack/plugins/cases/common/utils/connectors_api.ts",
- "deprecated": false,
- "children": [
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
+ },
{
"parentPluginId": "cases",
- "id": "def-common.getExecuteConnectorUrl.$1",
+ "id": "def-common.Ecs._index",
"type": "string",
"tags": [],
- "label": "connectorId",
+ "label": "_index",
"description": [],
"signature": [
- "string"
+ "string | undefined"
],
- "path": "x-pack/plugins/cases/common/utils/connectors_api.ts",
- "deprecated": false,
- "isRequired": true
- }
- ],
- "returnComment": [
- "Execute connector endpoint"
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getSubCaseDetailsUrl",
- "type": "Function",
- "tags": [],
- "label": "getSubCaseDetailsUrl",
- "description": [],
- "signature": [
- "(caseID: string, subCaseId: string) => string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "children": [
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
+ },
{
"parentPluginId": "cases",
- "id": "def-common.getSubCaseDetailsUrl.$1",
- "type": "string",
+ "id": "def-common.Ecs.signal",
+ "type": "Object",
"tags": [],
- "label": "caseID",
+ "label": "signal",
"description": [],
"signature": [
- "string"
+ "SignalEcs",
+ " | undefined"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
},
{
"parentPluginId": "cases",
- "id": "def-common.getSubCaseDetailsUrl.$2",
- "type": "string",
+ "id": "def-common.Ecs.kibana",
+ "type": "Object",
"tags": [],
- "label": "subCaseId",
+ "label": "kibana",
"description": [],
"signature": [
- "string"
+ "{ alert: ",
+ "SignalEcsAAD",
+ "; } | undefined"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
}
],
- "returnComment": [],
"initialIsOpen": false
},
{
"parentPluginId": "cases",
- "id": "def-common.getSubCasesUrl",
- "type": "Function",
+ "id": "def-common.SubCase",
+ "type": "Interface",
"tags": [],
- "label": "getSubCasesUrl",
+ "label": "SubCase",
"description": [],
"signature": [
- "(caseID: string) => string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "children": [
{
- "parentPluginId": "cases",
- "id": "def-common.getSubCasesUrl.$1",
- "type": "string",
- "tags": [],
- "label": "caseID",
- "description": [],
- "signature": [
- "string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.getSubCaseUserActionUrl",
- "type": "Function",
- "tags": [],
- "label": "getSubCaseUserActionUrl",
- "description": [],
- "signature": [
- "(caseID: string, subCaseId: string) => string"
+ "pluginId": "cases",
+ "scope": "common",
+ "docId": "kibCasesPluginApi",
+ "section": "def-common.SubCase",
+ "text": "SubCase"
+ },
+ " extends BasicCase"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
"deprecated": false,
"children": [
{
"parentPluginId": "cases",
- "id": "def-common.getSubCaseUserActionUrl.$1",
- "type": "string",
+ "id": "def-common.SubCase.associationType",
+ "type": "Enum",
"tags": [],
- "label": "caseID",
+ "label": "associationType",
"description": [],
"signature": [
- "string"
+ "AssociationType"
],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
},
{
"parentPluginId": "cases",
- "id": "def-common.getSubCaseUserActionUrl.$2",
+ "id": "def-common.SubCase.caseParentId",
"type": "string",
"tags": [],
- "label": "subCaseId",
+ "label": "caseParentId",
"description": [],
- "signature": [
- "string"
- ],
- "path": "x-pack/plugins/cases/common/api/helpers.ts",
- "deprecated": false,
- "isRequired": true
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "deprecated": false
}
],
- "returnComment": [],
"initialIsOpen": false
- },
+ }
+ ],
+ "enums": [
{
"parentPluginId": "cases",
- "id": "def-common.isCreateConnector",
- "type": "Function",
+ "id": "def-common.CaseStatuses",
+ "type": "Enum",
"tags": [],
- "label": "isCreateConnector",
+ "label": "CaseStatuses",
"description": [],
- "signature": [
- "(action: string | undefined, actionFields: string[] | undefined) => boolean"
- ],
- "path": "x-pack/plugins/cases/common/utils/user_actions.ts",
+ "path": "x-pack/plugins/cases/common/api/cases/status.ts",
"deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.isCreateConnector.$1",
- "type": "string",
- "tags": [],
- "label": "action",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "x-pack/plugins/cases/common/utils/user_actions.ts",
- "deprecated": false,
- "isRequired": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.isCreateConnector.$2",
- "type": "Array",
- "tags": [],
- "label": "actionFields",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/utils/user_actions.ts",
- "deprecated": false,
- "isRequired": false
- }
- ],
- "returnComment": [],
"initialIsOpen": false
},
{
"parentPluginId": "cases",
- "id": "def-common.isPush",
- "type": "Function",
+ "id": "def-common.CommentType",
+ "type": "Enum",
"tags": [],
- "label": "isPush",
+ "label": "CommentType",
"description": [],
- "signature": [
- "(action: string | undefined, actionFields: string[] | undefined) => boolean"
- ],
- "path": "x-pack/plugins/cases/common/utils/user_actions.ts",
+ "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
"deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.isPush.$1",
- "type": "string",
- "tags": [],
- "label": "action",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "x-pack/plugins/cases/common/utils/user_actions.ts",
- "deprecated": false,
- "isRequired": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.isPush.$2",
- "type": "Array",
- "tags": [],
- "label": "actionFields",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/utils/user_actions.ts",
- "deprecated": false,
- "isRequired": false
- }
- ],
- "returnComment": [],
"initialIsOpen": false
- },
+ }
+ ],
+ "misc": [
{
"parentPluginId": "cases",
- "id": "def-common.isUpdateConnector",
- "type": "Function",
+ "id": "def-common.CASES_URL",
+ "type": "string",
"tags": [],
- "label": "isUpdateConnector",
- "description": [],
+ "label": "CASES_URL",
+ "description": [
+ "\nCase routes"
+ ],
"signature": [
- "(action: string | undefined, actionFields: string[] | undefined) => boolean"
+ "\"/api/cases\""
],
- "path": "x-pack/plugins/cases/common/utils/user_actions.ts",
+ "path": "x-pack/plugins/cases/common/constants.ts",
"deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.isUpdateConnector.$1",
- "type": "string",
- "tags": [],
- "label": "action",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "x-pack/plugins/cases/common/utils/user_actions.ts",
- "deprecated": false,
- "isRequired": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.isUpdateConnector.$2",
- "type": "Array",
- "tags": [],
- "label": "actionFields",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/utils/user_actions.ts",
- "deprecated": false,
- "isRequired": false
- }
- ],
- "returnComment": [],
"initialIsOpen": false
},
{
"parentPluginId": "cases",
- "id": "def-common.throwErrors",
- "type": "Function",
+ "id": "def-common.CasesFeatures",
+ "type": "Type",
"tags": [],
- "label": "throwErrors",
+ "label": "CasesFeatures",
"description": [],
"signature": [
- "(createError: ErrorFactory) => (errors: ",
- "Errors",
- ") => never"
+ "{ alerts?: { sync: boolean; } | undefined; metrics?: ",
+ "CaseMetricsFeature",
+ "[] | undefined; }"
],
- "path": "x-pack/plugins/cases/common/api/runtime_types.ts",
+ "path": "x-pack/plugins/cases/common/ui/types.ts",
"deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.throwErrors.$1",
- "type": "Function",
- "tags": [],
- "label": "createError",
- "description": [],
- "signature": [
- "ErrorFactory"
- ],
- "path": "x-pack/plugins/cases/common/api/runtime_types.ts",
- "deprecated": false,
- "isRequired": true
- }
- ],
- "returnComment": [],
"initialIsOpen": false
- }
- ],
- "interfaces": [
+ },
{
"parentPluginId": "cases",
- "id": "def-common.ActionLicense",
- "type": "Interface",
+ "id": "def-common.CaseViewRefreshPropInterface",
+ "type": "Type",
"tags": [],
- "label": "ActionLicense",
- "description": [],
+ "label": "CaseViewRefreshPropInterface",
+ "description": [
+ "\nThe type for the `refreshRef` prop (a `React.Ref`) defined by the `CaseViewComponentProps`.\n"
+ ],
+ "signature": [
+ "{ refreshCase: () => Promise; } | null"
+ ],
"path": "x-pack/plugins/cases/common/ui/types.ts",
"deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.ActionLicense.id",
- "type": "string",
- "tags": [],
- "label": "id",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ActionLicense.name",
- "type": "string",
- "tags": [],
- "label": "name",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ActionLicense.enabled",
- "type": "boolean",
- "tags": [],
- "label": "enabled",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ActionLicense.enabledInConfig",
- "type": "boolean",
- "tags": [],
- "label": "enabledInConfig",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ActionLicense.enabledInLicense",
- "type": "boolean",
- "tags": [],
- "label": "enabledInLicense",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
"initialIsOpen": false
},
{
"parentPluginId": "cases",
- "id": "def-common.AllCases",
- "type": "Interface",
+ "id": "def-common.ENABLE_CASE_CONNECTOR",
+ "type": "boolean",
"tags": [],
- "label": "AllCases",
- "description": [],
+ "label": "ENABLE_CASE_CONNECTOR",
+ "description": [
+ "\nThis flag governs enabling the case as a connector feature. It is disabled by default as the feature is not complete."
+ ],
"signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AllCases",
- "text": "AllCases"
- },
- " extends ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CasesStatus",
- "text": "CasesStatus"
- }
+ "false"
],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
+ "path": "x-pack/plugins/cases/common/constants.ts",
"deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.AllCases.cases",
- "type": "Array",
- "tags": [],
- "label": "cases",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.Case",
- "text": "Case"
- },
- "[]"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AllCases.page",
- "type": "number",
- "tags": [],
- "label": "page",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AllCases.perPage",
- "type": "number",
- "tags": [],
- "label": "perPage",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AllCases.total",
- "type": "number",
- "tags": [],
- "label": "total",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
"initialIsOpen": false
},
{
"parentPluginId": "cases",
- "id": "def-common.ApiProps",
- "type": "Interface",
+ "id": "def-common.SECURITY_SOLUTION_OWNER",
+ "type": "string",
"tags": [],
- "label": "ApiProps",
+ "label": "SECURITY_SOLUTION_OWNER",
"description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.ApiProps.signal",
- "type": "Object",
- "tags": [],
- "label": "signal",
- "description": [],
- "signature": [
- "AbortSignal"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
+ "signature": [
+ "\"securitySolution\""
],
+ "path": "x-pack/plugins/cases/common/constants.ts",
+ "deprecated": false,
"initialIsOpen": false
},
{
"parentPluginId": "cases",
- "id": "def-common.BulkUpdateStatus",
- "type": "Interface",
+ "id": "def-common.StatusAll",
+ "type": "string",
"tags": [],
- "label": "BulkUpdateStatus",
+ "label": "StatusAll",
"description": [],
+ "signature": [
+ "\"all\""
+ ],
"path": "x-pack/plugins/cases/common/ui/types.ts",
"deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.BulkUpdateStatus.status",
- "type": "string",
- "tags": [],
- "label": "status",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.BulkUpdateStatus.id",
- "type": "string",
- "tags": [],
- "label": "id",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.BulkUpdateStatus.version",
- "type": "string",
- "tags": [],
- "label": "version",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Case",
- "type": "Interface",
- "tags": [],
- "label": "Case",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.Case",
- "text": "Case"
- },
- " extends BasicCase"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.Case.connector",
- "type": "CompoundType",
- "tags": [],
- "label": "connector",
- "description": [],
- "signature": [
- "({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; })"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Case.description",
- "type": "string",
- "tags": [],
- "label": "description",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Case.externalService",
- "type": "CompoundType",
- "tags": [],
- "label": "externalService",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseExternalService",
- "text": "CaseExternalService"
- },
- " | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Case.subCases",
- "type": "CompoundType",
- "tags": [],
- "label": "subCases",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.SubCase",
- "text": "SubCase"
- },
- "[] | null | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Case.subCaseIds",
- "type": "Array",
- "tags": [],
- "label": "subCaseIds",
- "description": [],
- "signature": [
- "string[]"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Case.settings",
- "type": "Object",
- "tags": [],
- "label": "settings",
- "description": [],
- "signature": [
- "{ syncAlerts: boolean; }"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Case.tags",
- "type": "Array",
- "tags": [],
- "label": "tags",
- "description": [],
- "signature": [
- "string[]"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Case.type",
- "type": "Enum",
- "tags": [],
- "label": "type",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseExternalService",
- "type": "Interface",
- "tags": [],
- "label": "CaseExternalService",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseExternalService.pushedAt",
- "type": "string",
- "tags": [],
- "label": "pushedAt",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseExternalService.pushedBy",
- "type": "Object",
- "tags": [],
- "label": "pushedBy",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ElasticUser",
- "text": "ElasticUser"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseExternalService.connectorId",
- "type": "string",
- "tags": [],
- "label": "connectorId",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseExternalService.connectorName",
- "type": "string",
- "tags": [],
- "label": "connectorName",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseExternalService.externalId",
- "type": "string",
- "tags": [],
- "label": "externalId",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseExternalService.externalTitle",
- "type": "string",
- "tags": [],
- "label": "externalTitle",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseExternalService.externalUrl",
- "type": "string",
- "tags": [],
- "label": "externalUrl",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesStatus",
- "type": "Interface",
- "tags": [],
- "label": "CasesStatus",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesStatus.countClosedCases",
- "type": "CompoundType",
- "tags": [],
- "label": "countClosedCases",
- "description": [],
- "signature": [
- "number | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesStatus.countOpenCases",
- "type": "CompoundType",
- "tags": [],
- "label": "countOpenCases",
- "description": [],
- "signature": [
- "number | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesStatus.countInProgressCases",
- "type": "CompoundType",
- "tags": [],
- "label": "countInProgressCases",
- "description": [],
- "signature": [
- "number | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesUiConfigType",
- "type": "Interface",
- "tags": [],
- "label": "CasesUiConfigType",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesUiConfigType.markdownPlugins",
- "type": "Object",
- "tags": [],
- "label": "markdownPlugins",
- "description": [],
- "signature": [
- "{ lens: boolean; }"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions",
- "type": "Interface",
- "tags": [],
- "label": "CaseUserActions",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.actionId",
- "type": "string",
- "tags": [],
- "label": "actionId",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.actionField",
- "type": "Array",
- "tags": [],
- "label": "actionField",
- "description": [],
- "signature": [
- "(\"title\" | \"tags\" | \"description\" | \"status\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.action",
- "type": "CompoundType",
- "tags": [],
- "label": "action",
- "description": [],
- "signature": [
- "\"create\" | \"delete\" | \"update\" | \"add\" | \"push-to-service\""
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.actionAt",
- "type": "string",
- "tags": [],
- "label": "actionAt",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.actionBy",
- "type": "Object",
- "tags": [],
- "label": "actionBy",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ElasticUser",
- "text": "ElasticUser"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.caseId",
- "type": "string",
- "tags": [],
- "label": "caseId",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.commentId",
- "type": "CompoundType",
- "tags": [],
- "label": "commentId",
- "description": [],
- "signature": [
- "string | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.newValue",
- "type": "CompoundType",
- "tags": [],
- "label": "newValue",
- "description": [],
- "signature": [
- "string | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.newValConnectorId",
- "type": "CompoundType",
- "tags": [],
- "label": "newValConnectorId",
- "description": [],
- "signature": [
- "string | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.oldValue",
- "type": "CompoundType",
- "tags": [],
- "label": "oldValue",
- "description": [],
- "signature": [
- "string | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActions.oldValConnectorId",
- "type": "CompoundType",
- "tags": [],
- "label": "oldValConnectorId",
- "description": [],
- "signature": [
- "string | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.DeleteCase",
- "type": "Interface",
- "tags": [],
- "label": "DeleteCase",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.DeleteCase.id",
- "type": "string",
- "tags": [],
- "label": "id",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.DeleteCase.type",
- "type": "CompoundType",
- "tags": [],
- "label": "type",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- " | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.DeleteCase.title",
- "type": "string",
- "tags": [],
- "label": "title",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Ecs",
- "type": "Interface",
- "tags": [],
- "label": "Ecs",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.Ecs._id",
- "type": "string",
- "tags": [],
- "label": "_id",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Ecs._index",
- "type": "string",
- "tags": [],
- "label": "_index",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Ecs.signal",
- "type": "Object",
- "tags": [],
- "label": "signal",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.SignalEcs",
- "text": "SignalEcs"
- },
- " | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Ecs.kibana",
- "type": "Object",
- "tags": [],
- "label": "kibana",
- "description": [],
- "signature": [
- "{ alert: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.SignalEcsAAD",
- "text": "SignalEcsAAD"
- },
- "; } | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ElasticUser",
- "type": "Interface",
- "tags": [],
- "label": "ElasticUser",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.ElasticUser.email",
- "type": "CompoundType",
- "tags": [],
- "label": "email",
- "description": [],
- "signature": [
- "string | null | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ElasticUser.fullName",
- "type": "CompoundType",
- "tags": [],
- "label": "fullName",
- "description": [],
- "signature": [
- "string | null | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ElasticUser.username",
- "type": "CompoundType",
- "tags": [],
- "label": "username",
- "description": [],
- "signature": [
- "string | null | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FetchCasesProps",
- "type": "Interface",
- "tags": [],
- "label": "FetchCasesProps",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.FetchCasesProps",
- "text": "FetchCasesProps"
- },
- " extends ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ApiProps",
- "text": "ApiProps"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.FetchCasesProps.queryParams",
- "type": "Object",
- "tags": [],
- "label": "queryParams",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.QueryParams",
- "text": "QueryParams"
- },
- " | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FetchCasesProps.filterOptions",
- "type": "CompoundType",
- "tags": [],
- "label": "filterOptions",
- "description": [],
- "signature": [
- "(",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.FilterOptions",
- "text": "FilterOptions"
- },
- " & { owner: string[]; }) | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FieldMappings",
- "type": "Interface",
- "tags": [],
- "label": "FieldMappings",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.FieldMappings.id",
- "type": "string",
- "tags": [],
- "label": "id",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FieldMappings.title",
- "type": "string",
- "tags": [],
- "label": "title",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FilterOptions",
- "type": "Interface",
- "tags": [],
- "label": "FilterOptions",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.FilterOptions.search",
- "type": "string",
- "tags": [],
- "label": "search",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FilterOptions.status",
- "type": "CompoundType",
- "tags": [],
- "label": "status",
- "description": [],
- "signature": [
- "\"all\" | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FilterOptions.tags",
- "type": "Array",
- "tags": [],
- "label": "tags",
- "description": [],
- "signature": [
- "string[]"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FilterOptions.reporters",
- "type": "Array",
- "tags": [],
- "label": "reporters",
- "description": [],
- "signature": [
- "{ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }[]"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FilterOptions.onlyCollectionType",
- "type": "CompoundType",
- "tags": [],
- "label": "onlyCollectionType",
- "description": [],
- "signature": [
- "boolean | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.QueryParams",
- "type": "Interface",
- "tags": [],
- "label": "QueryParams",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.QueryParams.page",
- "type": "number",
- "tags": [],
- "label": "page",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.QueryParams.perPage",
- "type": "number",
- "tags": [],
- "label": "perPage",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.QueryParams.sortField",
- "type": "Enum",
- "tags": [],
- "label": "sortField",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.SortFieldCase",
- "text": "SortFieldCase"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.QueryParams.sortOrder",
- "type": "CompoundType",
- "tags": [],
- "label": "sortOrder",
- "description": [],
- "signature": [
- "\"asc\" | \"desc\""
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ResolvedCase",
- "type": "Interface",
- "tags": [],
- "label": "ResolvedCase",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.ResolvedCase.case",
- "type": "Object",
- "tags": [],
- "label": "case",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.Case",
- "text": "Case"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ResolvedCase.outcome",
- "type": "CompoundType",
- "tags": [],
- "label": "outcome",
- "description": [],
- "signature": [
- "\"conflict\" | \"aliasMatch\" | \"exactMatch\""
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ResolvedCase.aliasTargetId",
- "type": "string",
- "tags": [],
- "label": "aliasTargetId",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs",
- "type": "Interface",
- "tags": [],
- "label": "RuleEcs",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.id",
- "type": "Array",
- "tags": [],
- "label": "id",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.rule_id",
- "type": "Array",
- "tags": [],
- "label": "rule_id",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.name",
- "type": "Array",
- "tags": [],
- "label": "name",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.false_positives",
- "type": "Array",
- "tags": [],
- "label": "false_positives",
- "description": [],
- "signature": [
- "string[]"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.saved_id",
- "type": "Array",
- "tags": [],
- "label": "saved_id",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.timeline_id",
- "type": "Array",
- "tags": [],
- "label": "timeline_id",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.timeline_title",
- "type": "Array",
- "tags": [],
- "label": "timeline_title",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.max_signals",
- "type": "Array",
- "tags": [],
- "label": "max_signals",
- "description": [],
- "signature": [
- "number[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.risk_score",
- "type": "Array",
- "tags": [],
- "label": "risk_score",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.output_index",
- "type": "Array",
- "tags": [],
- "label": "output_index",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.description",
- "type": "Array",
- "tags": [],
- "label": "description",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.from",
- "type": "Array",
- "tags": [],
- "label": "from",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.immutable",
- "type": "Array",
- "tags": [],
- "label": "immutable",
- "description": [],
- "signature": [
- "boolean[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.index",
- "type": "Array",
- "tags": [],
- "label": "index",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.interval",
- "type": "Array",
- "tags": [],
- "label": "interval",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.language",
- "type": "Array",
- "tags": [],
- "label": "language",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.query",
- "type": "Array",
- "tags": [],
- "label": "query",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.references",
- "type": "Array",
- "tags": [],
- "label": "references",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.severity",
- "type": "Array",
- "tags": [],
- "label": "severity",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.tags",
- "type": "Array",
- "tags": [],
- "label": "tags",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.threat",
- "type": "Unknown",
- "tags": [],
- "label": "threat",
- "description": [],
- "signature": [
- "unknown"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.threshold",
- "type": "Unknown",
- "tags": [],
- "label": "threshold",
- "description": [],
- "signature": [
- "unknown"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.type",
- "type": "Array",
- "tags": [],
- "label": "type",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.size",
- "type": "Array",
- "tags": [],
- "label": "size",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.to",
- "type": "Array",
- "tags": [],
- "label": "to",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.enabled",
- "type": "Array",
- "tags": [],
- "label": "enabled",
- "description": [],
- "signature": [
- "boolean[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.filters",
- "type": "Unknown",
- "tags": [],
- "label": "filters",
- "description": [],
- "signature": [
- "unknown"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.created_at",
- "type": "Array",
- "tags": [],
- "label": "created_at",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.updated_at",
- "type": "Array",
- "tags": [],
- "label": "updated_at",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.created_by",
- "type": "Array",
- "tags": [],
- "label": "created_by",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.updated_by",
- "type": "Array",
- "tags": [],
- "label": "updated_by",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.version",
- "type": "Array",
- "tags": [],
- "label": "version",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.note",
- "type": "Array",
- "tags": [],
- "label": "note",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.RuleEcs.building_block_type",
- "type": "Array",
- "tags": [],
- "label": "building_block_type",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SignalEcs",
- "type": "Interface",
- "tags": [],
- "label": "SignalEcs",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.SignalEcs.rule",
- "type": "Object",
- "tags": [],
- "label": "rule",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.RuleEcs",
- "text": "RuleEcs"
- },
- " | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SignalEcs.original_time",
- "type": "Array",
- "tags": [],
- "label": "original_time",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SignalEcs.status",
- "type": "Array",
- "tags": [],
- "label": "status",
- "description": [],
- "signature": [
- "string[] | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SignalEcs.group",
- "type": "Object",
- "tags": [],
- "label": "group",
- "description": [],
- "signature": [
- "{ id?: string[] | undefined; } | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SignalEcs.threshold_result",
- "type": "Unknown",
- "tags": [],
- "label": "threshold_result",
- "description": [],
- "signature": [
- "unknown"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCase",
- "type": "Interface",
- "tags": [],
- "label": "SubCase",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.SubCase",
- "text": "SubCase"
- },
- " extends BasicCase"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCase.associationType",
- "type": "Enum",
- "tags": [],
- "label": "associationType",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCase.caseParentId",
- "type": "string",
- "tags": [],
- "label": "caseParentId",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- }
- ],
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey",
- "type": "Interface",
- "tags": [],
- "label": "UpdateByKey",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.updateKey",
- "type": "CompoundType",
- "tags": [],
- "label": "updateKey",
- "description": [],
- "signature": [
- "\"title\" | \"tags\" | \"description\" | \"status\" | \"settings\" | \"connector\""
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.updateValue",
- "type": "CompoundType",
- "tags": [],
- "label": "updateValue",
- "description": [],
- "signature": [
- "string | string[] | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }) | { syncAlerts: boolean; } | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.fetchCaseUserActions",
- "type": "Function",
- "tags": [],
- "label": "fetchCaseUserActions",
- "description": [],
- "signature": [
- "((caseId: string, caseConnectorId: string, subCaseId?: string | undefined) => void) | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.fetchCaseUserActions.$1",
- "type": "string",
- "tags": [],
- "label": "caseId",
- "description": [],
- "signature": [
- "string"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "isRequired": true
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.fetchCaseUserActions.$2",
- "type": "string",
- "tags": [],
- "label": "caseConnectorId",
- "description": [],
- "signature": [
- "string"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "isRequired": true
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.fetchCaseUserActions.$3",
- "type": "string",
- "tags": [],
- "label": "subCaseId",
- "description": [],
- "signature": [
- "string | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "isRequired": false
- }
- ],
- "returnComment": []
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.updateCase",
- "type": "Function",
- "tags": [],
- "label": "updateCase",
- "description": [],
- "signature": [
- "((newCase: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.Case",
- "text": "Case"
- },
- ") => void) | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.updateCase.$1",
- "type": "Object",
- "tags": [],
- "label": "newCase",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.Case",
- "text": "Case"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "isRequired": true
- }
- ],
- "returnComment": []
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.caseData",
- "type": "Object",
- "tags": [],
- "label": "caseData",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.Case",
- "text": "Case"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.onSuccess",
- "type": "Function",
- "tags": [],
- "label": "onSuccess",
- "description": [],
- "signature": [
- "(() => void) | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [],
- "returnComment": []
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateByKey.onError",
- "type": "Function",
- "tags": [],
- "label": "onError",
- "description": [],
- "signature": [
- "(() => void) | undefined"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "children": [],
- "returnComment": []
- }
- ],
- "initialIsOpen": false
- }
- ],
- "enums": [
- {
- "parentPluginId": "cases",
- "id": "def-common.AssociationType",
- "type": "Enum",
- "tags": [],
- "label": "AssociationType",
- "description": [
- "\nthis is used to differentiate between an alert attached to a top-level case and a group of alerts that should only\nbe attached to a sub case. The reason we need this is because an alert group comment will have references to both a case and\nsub case when it is created. For us to be able to filter out alert groups in a top-level case we need a field to\nuse as a filter."
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseStatuses",
- "type": "Enum",
- "tags": [],
- "label": "CaseStatuses",
- "description": [],
- "path": "x-pack/plugins/cases/common/api/cases/status.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseType",
- "type": "Enum",
- "tags": [],
- "label": "CaseType",
- "description": [],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentType",
- "type": "Enum",
- "tags": [],
- "label": "CommentType",
- "description": [],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorTypes",
- "type": "Enum",
- "tags": [],
- "label": "ConnectorTypes",
- "description": [],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SortFieldCase",
- "type": "Enum",
- "tags": [],
- "label": "SortFieldCase",
- "description": [],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SwimlaneConnectorType",
- "type": "Enum",
- "tags": [],
- "label": "SwimlaneConnectorType",
- "description": [],
- "path": "x-pack/plugins/cases/common/api/connectors/swimlane.ts",
- "deprecated": false,
- "initialIsOpen": false
- }
- ],
- "misc": [
- {
- "parentPluginId": "cases",
- "id": "def-common.ACTION_TYPES_URL",
- "type": "string",
- "tags": [],
- "label": "ACTION_TYPES_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ACTION_URL",
- "type": "string",
- "tags": [],
- "label": "ACTION_URL",
- "description": [
- "\nAction routes"
- ],
- "signature": [
- "\"/api/actions\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ActionConnector",
- "type": "Type",
- "tags": [],
- "label": "ActionConnector",
- "description": [],
- "signature": [
- {
- "pluginId": "actions",
- "scope": "common",
- "docId": "kibActionsPluginApi",
- "section": "def-common.ActionResult",
- "text": "ActionResult"
- }
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ActionType",
- "type": "Type",
- "tags": [],
- "label": "ActionType",
- "description": [],
- "signature": [
- "\"append\" | \"overwrite\" | \"nothing\""
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ActionTypeConnector",
- "type": "Type",
- "tags": [],
- "label": "ActionTypeConnector",
- "description": [],
- "signature": [
- {
- "pluginId": "actions",
- "scope": "common",
- "docId": "kibActionsPluginApi",
- "section": "def-common.ActionType",
- "text": "ActionType"
- }
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AlertResponse",
- "type": "Type",
- "tags": [],
- "label": "AlertResponse",
- "description": [],
- "signature": [
- "{ id: string; index: string; attached_at: string; }[]"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/alerts.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AllCommentsResponse",
- "type": "Type",
- "tags": [],
- "label": "AllCommentsResponse",
- "description": [],
- "signature": [
- "(({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[]"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AllReportersFindRequest",
- "type": "Type",
- "tags": [],
- "label": "AllReportersFindRequest",
- "description": [],
- "signature": [
- "{ owner?: string | string[] | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AllTagsFindRequest",
- "type": "Type",
- "tags": [],
- "label": "AllTagsFindRequest",
- "description": [],
- "signature": [
- "{ owner?: string | string[] | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.APP_ID",
- "type": "string",
- "tags": [],
- "label": "APP_ID",
- "description": [],
- "signature": [
- "\"cases\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AttributesTypeActions",
- "type": "Type",
- "tags": [],
- "label": "AttributesTypeActions",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AttributesTypeAlerts",
- "type": "Type",
- "tags": [],
- "label": "AttributesTypeAlerts",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AttributesTypeUser",
- "type": "Type",
- "tags": [],
- "label": "AttributesTypeUser",
- "description": [],
- "signature": [
- "{ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_ALERTS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_ALERTS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_COMMENT_DETAILS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_COMMENT_DETAILS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_COMMENT_SAVED_OBJECT",
- "type": "string",
- "tags": [],
- "label": "CASE_COMMENT_SAVED_OBJECT",
- "description": [],
- "signature": [
- "\"cases-comments\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_COMMENTS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_COMMENTS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_CONFIGURE_CONNECTORS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_CONFIGURE_CONNECTORS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_CONFIGURE_DETAILS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_CONFIGURE_DETAILS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_CONFIGURE_SAVED_OBJECT",
- "type": "string",
- "tags": [],
- "label": "CASE_CONFIGURE_SAVED_OBJECT",
- "description": [],
- "signature": [
- "\"cases-configure\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_CONFIGURE_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_CONFIGURE_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_CONNECTOR_MAPPINGS_SAVED_OBJECT",
- "type": "string",
- "tags": [],
- "label": "CASE_CONNECTOR_MAPPINGS_SAVED_OBJECT",
- "description": [],
- "signature": [
- "\"cases-connector-mappings\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_DETAILS_ALERTS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_DETAILS_ALERTS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_DETAILS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_DETAILS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_PUSH_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_PUSH_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_REPORTERS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_REPORTERS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_SAVED_OBJECT",
- "type": "string",
- "tags": [],
- "label": "CASE_SAVED_OBJECT",
- "description": [],
- "signature": [
- "\"cases\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_STATUS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_STATUS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_TAGS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_TAGS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_USER_ACTION_SAVED_OBJECT",
- "type": "string",
- "tags": [],
- "label": "CASE_USER_ACTION_SAVED_OBJECT",
- "description": [],
- "signature": [
- "\"cases-user-actions\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASE_USER_ACTIONS_URL",
- "type": "string",
- "tags": [],
- "label": "CASE_USER_ACTIONS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseActionConnector",
- "type": "Type",
- "tags": [],
- "label": "CaseActionConnector",
- "description": [],
- "signature": [
- {
- "pluginId": "actions",
- "scope": "common",
- "docId": "kibActionsPluginApi",
- "section": "def-common.ActionResult",
- "text": "ActionResult"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseAttributes",
- "type": "Type",
- "tags": [],
- "label": "CaseAttributes",
- "description": [],
- "signature": [
- "{ description: string; status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; tags: string[]; title: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- "; connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string | null; } & { 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; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseConnector",
- "type": "Type",
- "tags": [],
- "label": "CaseConnector",
- "description": [],
- "signature": [
- "({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; })"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseField",
- "type": "Type",
- "tags": [],
- "label": "CaseField",
- "description": [],
- "signature": [
- "\"title\" | \"description\" | \"comments\""
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseFullExternalService",
- "type": "Type",
- "tags": [],
- "label": "CaseFullExternalService",
- "description": [],
- "signature": [
- "({ connector_id: string | null; } & { 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; }; }) | null"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasePatchRequest",
- "type": "Type",
- "tags": [],
- "label": "CasePatchRequest",
- "description": [],
- "signature": [
- "{ description?: string | undefined; status?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- " | undefined; tags?: string[] | undefined; title?: string | undefined; type?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- " | undefined; connector?: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }) | undefined; settings?: { syncAlerts: boolean; } | undefined; owner?: string | undefined; } & { id: string; version: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasePostRequest",
- "type": "Type",
- "tags": [],
- "label": "CasePostRequest",
- "description": [],
- "signature": [
- "{ type?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- " | undefined; } & { description: string; tags: string[]; title: string; connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseResolveResponse",
- "type": "Type",
- "tags": [],
- "label": "CaseResolveResponse",
- "description": [],
- "signature": [
- "{ case: { description: string; status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; tags: string[]; title: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- "; connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string | null; } & { 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; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { subCaseIds?: string[] | undefined; subCases?: ({ status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; owner: string; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; })[] | undefined; comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; }; outcome: \"conflict\" | \"aliasMatch\" | \"exactMatch\"; } & { alias_target_id?: string | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseResponse",
- "type": "Type",
- "tags": [],
- "label": "CaseResponse",
- "description": [],
- "signature": [
- "{ description: string; status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; tags: string[]; title: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- "; connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string | null; } & { 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; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { subCaseIds?: string[] | undefined; subCases?: ({ status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; owner: string; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; })[] | undefined; comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CASES_URL",
- "type": "string",
- "tags": [],
- "label": "CASES_URL",
- "description": [
- "\nCase routes"
- ],
- "signature": [
- "\"/api/cases\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesByAlertId",
- "type": "Type",
- "tags": [],
- "label": "CasesByAlertId",
- "description": [],
- "signature": [
- "{ id: string; title: string; }[]"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesByAlertIDRequest",
- "type": "Type",
- "tags": [],
- "label": "CasesByAlertIDRequest",
- "description": [],
- "signature": [
- "{ owner?: string | string[] | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesClientPostRequest",
- "type": "Type",
- "tags": [],
- "label": "CasesClientPostRequest",
- "description": [
- "\nThis field differs from the CasePostRequest in that the post request's type field can be optional. This type requires\nthat the type field be defined. The CasePostRequest should be used in most places (the UI etc). This type is really\nonly necessary for validation."
- ],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- "; description: string; tags: string[]; title: string; connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesConfigurationsResponse",
- "type": "Type",
- "tags": [],
- "label": "CasesConfigurationsResponse",
- "description": [],
- "signature": [
- "({ connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"title\" | \"description\" | \"comments\"; target: string; }[]; owner: string; } & { id: string; version: string; error: string | null; owner: string; })[]"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesConfigure",
- "type": "Type",
- "tags": [],
- "label": "CasesConfigure",
- "description": [],
- "signature": [
- "{ connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesConfigureAttributes",
- "type": "Type",
- "tags": [],
- "label": "CasesConfigureAttributes",
- "description": [],
- "signature": [
- "{ connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesConfigurePatch",
- "type": "Type",
- "tags": [],
- "label": "CasesConfigurePatch",
- "description": [],
- "signature": [
- "{ connector?: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }) | undefined; closure_type?: \"close-by-user\" | \"close-by-pushing\" | undefined; } & { version: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesConfigureRequest",
- "type": "Type",
- "tags": [],
- "label": "CasesConfigureRequest",
- "description": [],
- "signature": [
- "{ connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesConfigureResponse",
- "type": "Type",
- "tags": [],
- "label": "CasesConfigureResponse",
- "description": [],
- "signature": [
- "{ connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); closure_type: \"close-by-user\" | \"close-by-pushing\"; } & { owner: string; } & { created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"title\" | \"description\" | \"comments\"; target: string; }[]; owner: string; } & { id: string; version: string; error: string | null; owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseSettings",
- "type": "Type",
- "tags": [],
- "label": "CaseSettings",
- "description": [],
- "signature": [
- "{ syncAlerts: boolean; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesFindRequest",
- "type": "Type",
- "tags": [],
- "label": "CasesFindRequest",
- "description": [],
- "signature": [
- "{ type?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- " | undefined; tags?: string | string[] | undefined; status?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- " | undefined; reporters?: string | string[] | undefined; defaultSearchOperator?: \"AND\" | \"OR\" | undefined; fields?: string[] | undefined; page?: number | undefined; perPage?: number | undefined; search?: string | undefined; searchFields?: string | string[] | undefined; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; owner?: string | string[] | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesFindResponse",
- "type": "Type",
- "tags": [],
- "label": "CasesFindResponse",
- "description": [],
- "signature": [
- "{ cases: ({ description: string; status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; tags: string[]; title: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- "; connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string | null; } & { 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; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { subCaseIds?: string[] | undefined; subCases?: ({ status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; owner: string; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; })[] | undefined; comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; })[]; page: number; per_page: number; total: number; } & { count_open_cases: number; count_in_progress_cases: number; count_closed_cases: number; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesPatchRequest",
- "type": "Type",
- "tags": [],
- "label": "CasesPatchRequest",
- "description": [],
- "signature": [
- "{ cases: ({ description?: string | undefined; status?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- " | undefined; tags?: string[] | undefined; title?: string | undefined; type?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- " | undefined; connector?: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }) | undefined; settings?: { syncAlerts: boolean; } | undefined; owner?: string | undefined; } & { id: string; version: string; })[]; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesResponse",
- "type": "Type",
- "tags": [],
- "label": "CasesResponse",
- "description": [],
- "signature": [
- "({ description: string; status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; tags: string[]; title: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- "; connector: ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ id: string; } & { name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }); settings: { syncAlerts: boolean; }; owner: string; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; external_service: ({ connector_id: string | null; } & { 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; }; }) | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { subCaseIds?: string[] | undefined; subCases?: ({ status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; owner: string; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; })[] | undefined; comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; })[]"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesStatusRequest",
- "type": "Type",
- "tags": [],
- "label": "CasesStatusRequest",
- "description": [],
- "signature": [
- "{ owner?: string | string[] | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/status.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesStatusResponse",
- "type": "Type",
- "tags": [],
- "label": "CasesStatusResponse",
- "description": [],
- "signature": [
- "{ count_open_cases: number; count_in_progress_cases: number; count_closed_cases: number; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/status.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.caseStatuses",
- "type": "Array",
- "tags": [],
- "label": "caseStatuses",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "[]"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/status.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseStatusWithAllStatus",
- "type": "Type",
- "tags": [],
- "label": "CaseStatusWithAllStatus",
- "description": [],
- "signature": [
- "\"all\" | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- }
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.caseTypeField",
- "type": "string",
- "tags": [],
- "label": "caseTypeField",
- "description": [
- "\nExposing the field used to define the case type so that it can be used for filtering in saved object find queries."
- ],
- "signature": [
- "\"type\""
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActionAttributes",
- "type": "Type",
- "tags": [],
- "label": "CaseUserActionAttributes",
- "description": [],
- "signature": [
- "{ action_field: (\"title\" | \"tags\" | \"description\" | \"status\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]; action: \"create\" | \"delete\" | \"update\" | \"add\" | \"push-to-service\"; action_at: string; action_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; new_value: string | null; old_value: string | null; owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActionConnector",
- "type": "Type",
- "tags": [],
- "label": "CaseUserActionConnector",
- "description": [],
- "signature": [
- "({ name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }) | ({ name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; }) | ({ name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }) | ({ name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }) | ({ name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }) | ({ name: string; } & { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; })"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActionResponse",
- "type": "Type",
- "tags": [],
- "label": "CaseUserActionResponse",
- "description": [],
- "signature": [
- "{ action_field: (\"title\" | \"tags\" | \"description\" | \"status\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]; action: \"create\" | \"delete\" | \"update\" | \"add\" | \"push-to-service\"; action_at: string; action_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; new_value: string | null; old_value: string | null; owner: string; } & { action_id: string; case_id: string; comment_id: string | null; new_val_connector_id: string | null; old_val_connector_id: string | null; } & { sub_case_id?: string | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActionsResponse",
- "type": "Type",
- "tags": [],
- "label": "CaseUserActionsResponse",
- "description": [],
- "signature": [
- "({ action_field: (\"title\" | \"tags\" | \"description\" | \"status\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]; action: \"create\" | \"delete\" | \"update\" | \"add\" | \"push-to-service\"; action_at: string; action_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; new_value: string | null; old_value: string | null; owner: string; } & { action_id: string; case_id: string; comment_id: string | null; new_val_connector_id: string | null; old_val_connector_id: string | null; } & { sub_case_id?: string | undefined; })[]"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseViewRefreshPropInterface",
- "type": "Type",
- "tags": [],
- "label": "CaseViewRefreshPropInterface",
- "description": [
- "\nThe type for the `refreshRef` prop (a `React.Ref`) defined by the `CaseViewComponentProps`.\n"
- ],
- "signature": [
- "{ refreshUserActionsAndComments: () => Promise; refreshCase: () => Promise; } | null"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ClosureType",
- "type": "Type",
- "tags": [],
- "label": "ClosureType",
- "description": [],
- "signature": [
- "\"close-by-user\" | \"close-by-pushing\""
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.Comment",
- "type": "Type",
- "tags": [],
- "label": "Comment",
- "description": [],
- "signature": [
- "({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; id: string; createdAt: string; createdBy: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ElasticUser",
- "text": "ElasticUser"
- },
- "; pushedAt: string | null; pushedBy: string | null; updatedAt: string | null; updatedBy: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ElasticUser",
- "text": "ElasticUser"
- },
- " | null; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; id: string; createdAt: string; createdBy: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ElasticUser",
- "text": "ElasticUser"
- },
- "; pushedAt: string | null; pushedBy: string | null; updatedAt: string | null; updatedBy: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ElasticUser",
- "text": "ElasticUser"
- },
- " | null; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; id: string; createdAt: string; createdBy: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ElasticUser",
- "text": "ElasticUser"
- },
- "; pushedAt: string | null; pushedBy: string | null; updatedAt: string | null; updatedBy: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ElasticUser",
- "text": "ElasticUser"
- },
- " | null; version: string; })"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentAttributes",
- "type": "Type",
- "tags": [],
- "label": "CommentAttributes",
- "description": [],
- "signature": [
- "({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; })"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentPatchAttributes",
- "type": "Type",
- "tags": [],
- "label": "CommentPatchAttributes",
- "description": [],
- "signature": [
- "{ associationType?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- " | undefined; created_at?: string | undefined; created_by?: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | undefined; owner?: string | undefined; pushed_at?: string | null | undefined; pushed_by?: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null | undefined; updated_at?: string | null | undefined; updated_by?: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null | undefined; } | ({ type?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert | undefined; alertId?: string | string[] | undefined; index?: string | string[] | undefined; rule?: { id: string | null; name: string | null; } | undefined; owner?: string | undefined; } & { associationType?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- " | undefined; created_at?: string | undefined; created_by?: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | undefined; owner?: string | undefined; pushed_at?: string | null | undefined; pushed_by?: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null | undefined; updated_at?: string | null | undefined; updated_by?: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null | undefined; })"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentPatchRequest",
- "type": "Type",
- "tags": [],
- "label": "CommentPatchRequest",
- "description": [],
- "signature": [
- "({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { id: string; version: string; })"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentRequest",
- "type": "Type",
- "tags": [],
- "label": "CommentRequest",
- "description": [],
- "signature": [
- "{ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } | { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } | { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentRequestActionsType",
- "type": "Type",
- "tags": [],
- "label": "CommentRequestActionsType",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentRequestAlertType",
- "type": "Type",
- "tags": [],
- "label": "CommentRequestAlertType",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentRequestUserType",
- "type": "Type",
- "tags": [],
- "label": "CommentRequestUserType",
- "description": [],
- "signature": [
- "{ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentResponse",
- "type": "Type",
- "tags": [],
- "label": "CommentResponse",
- "description": [],
- "signature": [
- "({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; })"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentResponseActionsType",
- "type": "Type",
- "tags": [],
- "label": "CommentResponseActionsType",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentResponseAlertsType",
- "type": "Type",
- "tags": [],
- "label": "CommentResponseAlertsType",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentsResponse",
- "type": "Type",
- "tags": [],
- "label": "CommentsResponse",
- "description": [],
- "signature": [
- "{ comments: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[]; page: number; per_page: number; total: number; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorField",
- "type": "Type",
- "tags": [],
- "label": "ConnectorField",
- "description": [],
- "signature": [
- "{ id: string; name: string; required: boolean; type: \"text\" | \"textarea\"; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorFields",
- "type": "Type",
- "tags": [],
- "label": "ConnectorFields",
- "description": [],
- "signature": [
- "{ issueType: string | null; priority: string | null; parent: string | null; } | { incidentTypes: string[] | null; severityCode: string | null; } | { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorJiraTypeFields",
- "type": "Type",
- "tags": [],
- "label": "ConnectorJiraTypeFields",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorMappings",
- "type": "Type",
- "tags": [],
- "label": "ConnectorMappings",
- "description": [],
- "signature": [
- "{ mappings: { action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"title\" | \"description\" | \"comments\"; target: string; }[]; owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorMappingsAttributes",
- "type": "Type",
- "tags": [],
- "label": "ConnectorMappingsAttributes",
- "description": [],
- "signature": [
- "{ action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"title\" | \"description\" | \"comments\"; target: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorResilientTypeFields",
- "type": "Type",
- "tags": [],
- "label": "ConnectorResilientTypeFields",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CONNECTORS_URL",
- "type": "string",
- "tags": [],
- "label": "CONNECTORS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorServiceNowITSMTypeFields",
- "type": "Type",
- "tags": [],
- "label": "ConnectorServiceNowITSMTypeFields",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorServiceNowSIRTypeFields",
- "type": "Type",
- "tags": [],
- "label": "ConnectorServiceNowSIRTypeFields",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorSwimlaneTypeFields",
- "type": "Type",
- "tags": [],
- "label": "ConnectorSwimlaneTypeFields",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorTypeFields",
- "type": "Type",
- "tags": [],
- "label": "ConnectorTypeFields",
- "description": [],
- "signature": [
- "{ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira; fields: { issueType: string | null; priority: string | null; parent: string | null; } | null; } | { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none; fields: null; } | { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient; fields: { incidentTypes: string[] | null; severityCode: string | null; } | null; } | { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM; fields: { impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; } | null; } | { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR; fields: { category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; } | null; } | { type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane; fields: { caseId: string | null; } | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.connectorTypes",
- "type": "Array",
- "tags": [],
- "label": "connectorTypes",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- "[]"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.DEFAULT_DATE_FORMAT",
- "type": "string",
- "tags": [],
- "label": "DEFAULT_DATE_FORMAT",
- "description": [],
- "signature": [
- "\"dateFormat\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.DEFAULT_DATE_FORMAT_TZ",
- "type": "string",
- "tags": [],
- "label": "DEFAULT_DATE_FORMAT_TZ",
- "description": [],
- "signature": [
- "\"dateFormat:tz\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ENABLE_CASE_CONNECTOR",
- "type": "boolean",
- "tags": [],
- "label": "ENABLE_CASE_CONNECTOR",
- "description": [
- "\nThis flag governs enabling the case as a connector feature. It is disabled by default as the feature is not complete."
- ],
- "signature": [
- "false"
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ExternalServiceResponse",
- "type": "Type",
- "tags": [],
- "label": "ExternalServiceResponse",
- "description": [],
- "signature": [
- "{ title: string; id: string; pushedDate: string; url: string; } & { comments?: ({ commentId: string; pushedDate: string; } & { externalCommentId?: string | undefined; })[] | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FindQueryParams",
- "type": "Type",
- "tags": [],
- "label": "FindQueryParams",
- "description": [],
- "signature": [
- "{ subCaseId?: string | undefined; defaultSearchOperator?: \"AND\" | \"OR\" | undefined; hasReferenceOperator?: \"AND\" | \"OR\" | undefined; hasReference?: { id: string; type: string; } | { id: string; type: string; }[] | undefined; fields?: string[] | undefined; filter?: string | undefined; page?: number | undefined; perPage?: number | undefined; search?: string | undefined; searchFields?: string[] | undefined; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.GetCaseIdsByAlertIdAggs",
- "type": "Type",
- "tags": [],
- "label": "GetCaseIdsByAlertIdAggs",
- "description": [],
- "signature": [
- "{ references: { doc_count: number; caseIds: { buckets: { key: string; }[]; }; }; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.GetConfigureFindRequest",
- "type": "Type",
- "tags": [],
- "label": "GetConfigureFindRequest",
- "description": [],
- "signature": [
- "{ owner?: string | string[] | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.GetDefaultMappingsResponse",
- "type": "Type",
- "tags": [],
- "label": "GetDefaultMappingsResponse",
- "description": [],
- "signature": [
- "{ action_type: \"append\" | \"overwrite\" | \"nothing\"; source: \"title\" | \"description\" | \"comments\"; target: string; }[]"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.JiraFieldsType",
- "type": "Type",
- "tags": [],
- "label": "JiraFieldsType",
- "description": [],
- "signature": [
- "{ issueType: string | null; priority: string | null; parent: string | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/jira.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.MAX_ALERTS_PER_SUB_CASE",
- "type": "number",
- "tags": [],
- "label": "MAX_ALERTS_PER_SUB_CASE",
- "description": [
- "\nAlerts"
- ],
- "signature": [
- "5000"
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.MAX_CONCURRENT_SEARCHES",
- "type": "number",
- "tags": [],
- "label": "MAX_CONCURRENT_SEARCHES",
- "description": [],
- "signature": [
- "10"
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.MAX_DOCS_PER_PAGE",
- "type": "number",
- "tags": [],
- "label": "MAX_DOCS_PER_PAGE",
- "description": [],
- "signature": [
- "10000"
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.MAX_GENERATED_ALERTS_PER_SUB_CASE",
- "type": "number",
- "tags": [],
- "label": "MAX_GENERATED_ALERTS_PER_SUB_CASE",
- "description": [],
- "signature": [
- "50"
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.MAX_TITLE_LENGTH",
- "type": "number",
- "tags": [],
- "label": "MAX_TITLE_LENGTH",
- "description": [
- "\nValidation"
- ],
- "signature": [
- "64"
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.noneConnectorId",
- "type": "string",
- "tags": [],
- "label": "noneConnectorId",
- "description": [],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.OWNER_FIELD",
- "type": "string",
- "tags": [],
- "label": "OWNER_FIELD",
- "description": [
- "\nThis field is used for authorization of the entities within the cases plugin. Each entity within Cases will have the owner field\nset to a string that represents the plugin that \"owns\" (i.e. the plugin that originally issued the POST request to\ncreate the entity) the entity.\n\nThe Authorization class constructs a string composed of the operation being performed (createCase, getComment, etc),\nand the owner of the entity being acted upon or created. This string is then given to the Security plugin which\nchecks to see if the user making the request has that particular string stored within it's privileges. If it does,\nthen the operation succeeds, otherwise the operation fails.\n\nAPIs that create/update an entity require that the owner field be passed in the body of the request.\nAPIs that search for entities typically require that the owner be passed as a query parameter.\nAPIs that specify an ID of an entity directly generally don't need to specify the owner field.\n\nFor APIs that create/update an entity, the RBAC implementation checks to see if the user making the request has the\ncorrect privileges for performing that action (a create/update) for the specified owner.\nThis check is done through the Security plugin's API.\n\nFor APIs that search for entities, the RBAC implementation creates a filter for the saved objects query that limits\nthe search to only owners that the user has access to. We also check that the objects returned by the saved objects\nAPI have the limited owner scope. If we find one that the user does not have permissions for, we throw a 403 error.\nThe owner field that is passed in as a query parameter can be used to further limit the results. If a user attempts\nto pass an owner that they do not have access to, the owner is ignored.\n\nFor APIs that retrieve/delete entities directly using their ID, the RBAC implementation requests the object first,\nand then checks to see if the user making the request has access to that operation and owner. If the user does, the\noperation continues, otherwise we throw a 403."
- ],
- "signature": [
- "\"owner\""
- ],
- "path": "x-pack/plugins/cases/common/api/cases/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ResilientFieldsType",
- "type": "Type",
- "tags": [],
- "label": "ResilientFieldsType",
- "description": [],
- "signature": [
- "{ incidentTypes: string[] | null; severityCode: string | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/resilient.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SAVED_OBJECT_TYPES",
- "type": "Array",
- "tags": [],
- "label": "SAVED_OBJECT_TYPES",
- "description": [
- "\nIf more values are added here please also add them here: x-pack/test/cases_api_integration/common/fixtures/plugins"
- ],
- "signature": [
- "string[]"
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SavedObjectFindOptions",
- "type": "Type",
- "tags": [],
- "label": "SavedObjectFindOptions",
- "description": [],
- "signature": [
- "{ defaultSearchOperator?: \"AND\" | \"OR\" | undefined; hasReferenceOperator?: \"AND\" | \"OR\" | undefined; hasReference?: { id: string; type: string; } | { id: string; type: string; }[] | undefined; fields?: string[] | undefined; filter?: string | undefined; page?: number | undefined; perPage?: number | undefined; search?: string | undefined; searchFields?: string[] | undefined; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/saved_object.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SECURITY_SOLUTION_OWNER",
- "type": "string",
- "tags": [],
- "label": "SECURITY_SOLUTION_OWNER",
- "description": [
- "\nThis must be the same value that the security solution plugin uses to define the case kind when it registers the\nfeature for the 7.13 migration only.\n\nThis variable is being also used by test files and mocks."
- ],
- "signature": [
- "\"securitySolution\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ServiceNowITSMFieldsType",
- "type": "Type",
- "tags": [],
- "label": "ServiceNowITSMFieldsType",
- "description": [],
- "signature": [
- "{ impact: string | null; severity: string | null; urgency: string | null; category: string | null; subcategory: string | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/servicenow_itsm.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ServiceNowSIRFieldsType",
- "type": "Type",
- "tags": [],
- "label": "ServiceNowSIRFieldsType",
- "description": [],
- "signature": [
- "{ category: string | null; destIp: boolean | null; malwareHash: boolean | null; malwareUrl: boolean | null; priority: string | null; sourceIp: boolean | null; subcategory: string | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/servicenow_sir.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SignalEcsAAD",
- "type": "Type",
- "tags": [],
- "label": "SignalEcsAAD",
- "description": [],
- "signature": [
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.SignalEcs",
- "text": "SignalEcs"
- },
- " & { rule?: (",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.RuleEcs",
- "text": "RuleEcs"
- },
- " & { uuid: string[]; }) | undefined; building_block_type?: string[] | undefined; workflow_status?: string[] | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.StatusAll",
- "type": "string",
- "tags": [],
- "label": "StatusAll",
- "description": [],
- "signature": [
- "\"all\""
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.StatusAllType",
- "type": "Type",
- "tags": [],
- "label": "StatusAllType",
- "description": [],
- "signature": [
- "\"all\""
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SUB_CASE_DETAILS_URL",
- "type": "string",
- "tags": [],
- "label": "SUB_CASE_DETAILS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SUB_CASE_SAVED_OBJECT",
- "type": "string",
- "tags": [],
- "label": "SUB_CASE_SAVED_OBJECT",
- "description": [],
- "signature": [
- "\"cases-sub-case\""
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SUB_CASE_USER_ACTIONS_URL",
- "type": "string",
- "tags": [],
- "label": "SUB_CASE_USER_ACTIONS_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SUB_CASES_PATCH_DEL_URL",
- "type": "string",
- "tags": [],
- "label": "SUB_CASES_PATCH_DEL_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SUB_CASES_URL",
- "type": "string",
- "tags": [],
- "label": "SUB_CASES_URL",
- "description": [],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCaseAttributes",
- "type": "Type",
- "tags": [],
- "label": "SubCaseAttributes",
- "description": [],
- "signature": [
- "{ status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; owner: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCasePatchRequest",
- "type": "Type",
- "tags": [],
- "label": "SubCasePatchRequest",
- "description": [],
- "signature": [
- "{ status?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- " | undefined; } & { id: string; version: string; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCaseResponse",
- "type": "Type",
- "tags": [],
- "label": "SubCaseResponse",
- "description": [],
- "signature": [
- "{ status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; owner: string; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCasesFindRequest",
- "type": "Type",
- "tags": [],
- "label": "SubCasesFindRequest",
- "description": [],
- "signature": [
- "{ status?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- " | undefined; defaultSearchOperator?: \"AND\" | \"OR\" | undefined; fields?: string[] | undefined; page?: number | undefined; perPage?: number | undefined; search?: string | undefined; searchFields?: string[] | undefined; sortField?: string | undefined; sortOrder?: \"asc\" | \"desc\" | undefined; owner?: string | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCasesFindResponse",
- "type": "Type",
- "tags": [],
- "label": "SubCasesFindResponse",
- "description": [],
- "signature": [
- "{ subCases: ({ status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; owner: string; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; })[]; page: number; per_page: number; total: number; } & { count_open_cases: number; count_in_progress_cases: number; count_closed_cases: number; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCasesPatchRequest",
- "type": "Type",
- "tags": [],
- "label": "SubCasesPatchRequest",
- "description": [],
- "signature": [
- "{ subCases: ({ status?: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- " | undefined; } & { id: string; version: string; })[]; }"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCasesResponse",
- "type": "Type",
- "tags": [],
- "label": "SubCasesResponse",
- "description": [],
- "signature": [
- "({ status: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- "; } & { closed_at: string | null; closed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; owner: string; } & { id: string; totalComment: number; totalAlerts: number; version: string; } & { comments?: (({ comment: string; type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert | ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert; alertId: string | string[]; index: string | string[]; rule: { id: string | null; name: string | null; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }) | ({ type: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions; comment: string; actions: { targets: { hostname: string; endpointId: string; }[]; type: string; }; owner: string; } & { associationType: ",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- "; created_at: string; created_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }; owner: string; pushed_at: string | null; pushed_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; updated_at: string | null; updated_by: { email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; } | null; } & { id: string; version: string; }))[] | undefined; })[]"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SUPPORTED_CONNECTORS",
- "type": "Array",
- "tags": [],
- "label": "SUPPORTED_CONNECTORS",
- "description": [],
- "signature": [
- "string[]"
- ],
- "path": "x-pack/plugins/cases/common/constants.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SwimlaneFieldsType",
- "type": "Type",
- "tags": [],
- "label": "SwimlaneFieldsType",
- "description": [],
- "signature": [
- "{ caseId: string | null; }"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/swimlane.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ThirdPartyField",
- "type": "Type",
- "tags": [],
- "label": "ThirdPartyField",
- "description": [],
- "signature": [
- "string"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UpdateKey",
- "type": "Type",
- "tags": [],
- "label": "UpdateKey",
- "description": [],
- "signature": [
- "\"title\" | \"tags\" | \"description\" | \"status\" | \"settings\" | \"connector\""
- ],
- "path": "x-pack/plugins/cases/common/ui/types.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.User",
- "type": "Type",
- "tags": [],
- "label": "User",
- "description": [],
- "signature": [
- "{ email: string | null | undefined; full_name: string | null | undefined; username: string | null | undefined; }"
- ],
- "path": "x-pack/plugins/cases/common/api/user.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UserAction",
- "type": "Type",
- "tags": [],
- "label": "UserAction",
- "description": [],
- "signature": [
- "\"create\" | \"delete\" | \"update\" | \"add\" | \"push-to-service\""
- ],
- "path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UserActionField",
- "type": "Type",
- "tags": [],
- "label": "UserActionField",
- "description": [],
- "signature": [
- "(\"title\" | \"tags\" | \"description\" | \"status\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\")[]"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UserActionFieldType",
- "type": "Type",
- "tags": [],
- "label": "UserActionFieldType",
- "description": [],
- "signature": [
- "\"title\" | \"tags\" | \"description\" | \"status\" | \"comment\" | \"settings\" | \"owner\" | \"connector\" | \"pushed\" | \"sub_case\""
- ],
- "path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
- "deprecated": false,
- "initialIsOpen": false
- }
- ],
- "objects": [
- {
- "parentPluginId": "cases",
- "id": "def-common.ActionsCommentRequestRt",
- "type": "Object",
- "tags": [],
- "label": "ActionsCommentRequestRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AlertCommentRequestRt",
- "type": "Object",
- "tags": [],
- "label": "AlertCommentRequestRt",
- "description": [
- "\nThis defines the structure of how alerts (generated or user attached) are stored in saved objects documents. It also\nrepresents of an alert after it has been transformed. A generated alert will be transformed by the connector so that\nit matches this structure. User attached alerts do not need to be transformed."
- ],
- "signature": [
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AlertResponseRt",
- "type": "Object",
- "tags": [],
- "label": "AlertResponseRt",
- "description": [],
- "signature": [
- "ArrayC",
- "<",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; index: ",
- "StringC",
- "; attached_at: ",
- "StringC",
- "; }>>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/alerts.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AllCommentsResponseRt",
- "type": "Object",
- "tags": [],
- "label": "AllCommentsResponseRt",
- "description": [],
- "signature": [
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AllCommentsResponseRT",
- "type": "Object",
- "tags": [],
- "label": "AllCommentsResponseRT",
- "description": [],
- "signature": [
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AllReportersFindRequestRt",
- "type": "Object",
- "tags": [],
- "label": "AllReportersFindRequestRt",
- "description": [],
- "signature": [
- "PartialC",
- "<{ owner: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.AllTagsFindRequestRt",
- "type": "Object",
- "tags": [],
- "label": "AllTagsFindRequestRt",
- "description": [],
- "signature": [
- "PartialC",
- "<{ owner: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseAttributesRt",
- "type": "Object",
- "tags": [],
- "label": "CaseAttributesRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ description: ",
- "StringC",
- "; status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; tags: ",
- "ArrayC",
- "<",
- "StringC",
- ">; title: ",
- "StringC",
- "; type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".collection>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".individual>]>; connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; settings: ",
- "TypeC",
- "<{ syncAlerts: ",
- "BooleanC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; external_service: ",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector_id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ connector_name: ",
- "StringC",
- "; external_id: ",
- "StringC",
- "; external_title: ",
- "StringC",
- "; external_url: ",
- "StringC",
- "; pushed_at: ",
- "StringC",
- "; pushed_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; }>]>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseConfigurationsResponseRt",
- "type": "Object",
- "tags": [],
- "label": "CaseConfigurationsResponseRt",
- "description": [],
- "signature": [
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; closure_type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"close-by-user\">, ",
- "LiteralC",
- "<\"close-by-pushing\">]>; }>, ",
- "TypeC",
- "<{ owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "TypeC",
- "<{ mappings: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ action_type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"append\">, ",
- "LiteralC",
- "<\"nothing\">, ",
- "LiteralC",
- "<\"overwrite\">]>; source: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"title\">, ",
- "LiteralC",
- "<\"description\">, ",
- "LiteralC",
- "<\"comments\">]>; target: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "LiteralC",
- "<\"not_mapped\">]>; }>>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; error: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>]>>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseConfigureAttributesRt",
- "type": "Object",
- "tags": [],
- "label": "CaseConfigureAttributesRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; closure_type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"close-by-user\">, ",
- "LiteralC",
- "<\"close-by-pushing\">]>; }>, ",
- "TypeC",
- "<{ owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseConfigureRequestParamsRt",
- "type": "Object",
- "tags": [],
- "label": "CaseConfigureRequestParamsRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ configuration_id: ",
- "StringC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseConfigureResponseRt",
- "type": "Object",
- "tags": [],
- "label": "CaseConfigureResponseRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; closure_type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"close-by-user\">, ",
- "LiteralC",
- "<\"close-by-pushing\">]>; }>, ",
- "TypeC",
- "<{ owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "TypeC",
- "<{ mappings: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ action_type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"append\">, ",
- "LiteralC",
- "<\"nothing\">, ",
- "LiteralC",
- "<\"overwrite\">]>; source: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"title\">, ",
- "LiteralC",
- "<\"description\">, ",
- "LiteralC",
- "<\"comments\">]>; target: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "LiteralC",
- "<\"not_mapped\">]>; }>>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; error: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseConnectorRt",
- "type": "Object",
- "tags": [],
- "label": "CaseConnectorRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseExternalServiceBasicRt",
- "type": "Object",
- "tags": [],
- "label": "CaseExternalServiceBasicRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector_id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ connector_name: ",
- "StringC",
- "; external_id: ",
- "StringC",
- "; external_title: ",
- "StringC",
- "; external_url: ",
- "StringC",
- "; pushed_at: ",
- "StringC",
- "; pushed_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseFullExternalServiceRt",
- "type": "Object",
- "tags": [],
- "label": "CaseFullExternalServiceRt",
- "description": [],
- "signature": [
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector_id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ connector_name: ",
- "StringC",
- "; external_id: ",
- "StringC",
- "; external_title: ",
- "StringC",
- "; external_url: ",
- "StringC",
- "; pushed_at: ",
- "StringC",
- "; pushed_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; }>]>, ",
- "NullC",
- "]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasePatchRequestRt",
- "type": "Object",
- "tags": [],
- "label": "CasePatchRequestRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "PartialC",
- "<{ description: ",
- "StringC",
- "; status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; tags: ",
- "ArrayC",
- "<",
- "StringC",
- ">; title: ",
- "StringC",
- "; type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".collection>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".individual>]>; connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; settings: ",
- "TypeC",
- "<{ syncAlerts: ",
- "BooleanC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasePostRequestRt",
- "type": "Object",
- "tags": [],
- "label": "CasePostRequestRt",
- "description": [
- "\nThis type is not used for validation when decoding a request because intersection does not have props defined which\nrequired for the excess function. Instead we use this as the type used by the UI. This allows the type field to be\noptional and the server will handle setting it to a default value before validating that the request\nhas all the necessary fields. CasesClientPostRequestRt is used for validation."
- ],
- "signature": [
- "IntersectionC",
- "<[",
- "PartialC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".collection>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".individual>]>; }>, ",
- "TypeC",
- "<{ description: ",
- "StringC",
- "; tags: ",
- "ArrayC",
- "<",
- "StringC",
- ">; title: ",
- "StringC",
- "; connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; settings: ",
- "TypeC",
- "<{ syncAlerts: ",
- "BooleanC",
- "; }>; owner: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasePushRequestParamsRt",
- "type": "Object",
- "tags": [],
- "label": "CasePushRequestParamsRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ case_id: ",
- "StringC",
- "; connector_id: ",
- "StringC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseResolveResponseRt",
- "type": "Object",
- "tags": [],
- "label": "CaseResolveResponseRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ case: ",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ description: ",
- "StringC",
- "; status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; tags: ",
- "ArrayC",
- "<",
- "StringC",
- ">; title: ",
- "StringC",
- "; type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".collection>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".individual>]>; connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; settings: ",
- "TypeC",
- "<{ syncAlerts: ",
- "BooleanC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; external_service: ",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector_id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ connector_name: ",
- "StringC",
- "; external_id: ",
- "StringC",
- "; external_title: ",
- "StringC",
- "; external_url: ",
- "StringC",
- "; pushed_at: ",
- "StringC",
- "; pushed_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; }>]>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ subCaseIds: ",
- "ArrayC",
- "<",
- "StringC",
- ">; subCases: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>>; comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>; outcome: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"exactMatch\">, ",
- "LiteralC",
- "<\"aliasMatch\">, ",
- "LiteralC",
- "<\"conflict\">]>; }>, ",
- "PartialC",
- "<{ alias_target_id: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseResponseRt",
- "type": "Object",
- "tags": [],
- "label": "CaseResponseRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ description: ",
- "StringC",
- "; status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; tags: ",
- "ArrayC",
- "<",
- "StringC",
- ">; title: ",
- "StringC",
- "; type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".collection>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".individual>]>; connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; settings: ",
- "TypeC",
- "<{ syncAlerts: ",
- "BooleanC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; external_service: ",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector_id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ connector_name: ",
- "StringC",
- "; external_id: ",
- "StringC",
- "; external_title: ",
- "StringC",
- "; external_url: ",
- "StringC",
- "; pushed_at: ",
- "StringC",
- "; pushed_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; }>]>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ subCaseIds: ",
- "ArrayC",
- "<",
- "StringC",
- ">; subCases: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>>; comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesByAlertIDRequestRt",
- "type": "Object",
- "tags": [],
- "label": "CasesByAlertIDRequestRt",
- "description": [],
- "signature": [
- "PartialC",
- "<{ owner: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesByAlertIdRt",
- "type": "Object",
- "tags": [],
- "label": "CasesByAlertIdRt",
- "description": [],
- "signature": [
- "ArrayC",
- "<",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; title: ",
- "StringC",
- "; }>>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesClientPostRequestRt",
- "type": "Object",
- "tags": [],
- "label": "CasesClientPostRequestRt",
- "description": [
- "\nThis type is used for validating a create case request. It requires that the type field be defined."
- ],
- "signature": [
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".collection>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".individual>]>; description: ",
- "StringC",
- "; tags: ",
- "ArrayC",
- "<",
- "StringC",
- ">; title: ",
- "StringC",
- "; connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; settings: ",
- "TypeC",
- "<{ syncAlerts: ",
- "BooleanC",
- "; }>; owner: ",
- "StringC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesConfigurePatchRt",
- "type": "Object",
- "tags": [],
- "label": "CasesConfigurePatchRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "PartialC",
- "<{ connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; closure_type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"close-by-user\">, ",
- "LiteralC",
- "<\"close-by-pushing\">]>; }>, ",
- "TypeC",
- "<{ version: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesConfigureRequestRt",
- "type": "Object",
- "tags": [],
- "label": "CasesConfigureRequestRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; closure_type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"close-by-user\">, ",
- "LiteralC",
- "<\"close-by-pushing\">]>; }>, ",
- "TypeC",
- "<{ owner: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesFindRequestRt",
- "type": "Object",
- "tags": [],
- "label": "CasesFindRequestRt",
- "description": [],
- "signature": [
- "PartialC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".collection>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".individual>]>; tags: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; reporters: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; defaultSearchOperator: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"AND\">, ",
- "LiteralC",
- "<\"OR\">]>; fields: ",
- "ArrayC",
- "<",
- "StringC",
- ">; page: ",
- "Type",
- "; perPage: ",
- "Type",
- "; search: ",
- "StringC",
- "; searchFields: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; sortField: ",
- "StringC",
- "; sortOrder: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"desc\">, ",
- "LiteralC",
- "<\"asc\">]>; owner: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesFindResponseRt",
- "type": "Object",
- "tags": [],
- "label": "CasesFindResponseRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ cases: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ description: ",
- "StringC",
- "; status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; tags: ",
- "ArrayC",
- "<",
- "StringC",
- ">; title: ",
- "StringC",
- "; type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".collection>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".individual>]>; connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; settings: ",
- "TypeC",
- "<{ syncAlerts: ",
- "BooleanC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; external_service: ",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector_id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ connector_name: ",
- "StringC",
- "; external_id: ",
- "StringC",
- "; external_title: ",
- "StringC",
- "; external_url: ",
- "StringC",
- "; pushed_at: ",
- "StringC",
- "; pushed_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; }>]>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ subCaseIds: ",
- "ArrayC",
- "<",
- "StringC",
- ">; subCases: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>>; comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>>; page: ",
- "NumberC",
- "; per_page: ",
- "NumberC",
- "; total: ",
- "NumberC",
- "; }>, ",
- "TypeC",
- "<{ count_open_cases: ",
- "NumberC",
- "; count_in_progress_cases: ",
- "NumberC",
- "; count_closed_cases: ",
- "NumberC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesPatchRequestRt",
- "type": "Object",
- "tags": [],
- "label": "CasesPatchRequestRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ cases: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "PartialC",
- "<{ description: ",
- "StringC",
- "; status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; tags: ",
- "ArrayC",
- "<",
- "StringC",
- ">; title: ",
- "StringC",
- "; type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".collection>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".individual>]>; connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; settings: ",
- "TypeC",
- "<{ syncAlerts: ",
- "BooleanC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesResponseRt",
- "type": "Object",
- "tags": [],
- "label": "CasesResponseRt",
- "description": [],
- "signature": [
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ description: ",
- "StringC",
- "; status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; tags: ",
- "ArrayC",
- "<",
- "StringC",
- ">; title: ",
- "StringC",
- "; type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".collection>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseType",
- "text": "CaseType"
- },
- ".individual>]>; connector: ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; }>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>]>; settings: ",
- "TypeC",
- "<{ syncAlerts: ",
- "BooleanC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; external_service: ",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ connector_id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ connector_name: ",
- "StringC",
- "; external_id: ",
- "StringC",
- "; external_title: ",
- "StringC",
- "; external_url: ",
- "StringC",
- "; pushed_at: ",
- "StringC",
- "; pushed_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; }>]>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ subCaseIds: ",
- "ArrayC",
- "<",
- "StringC",
- ">; subCases: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>>; comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesStatusRequestRt",
- "type": "Object",
- "tags": [],
- "label": "CasesStatusRequestRt",
- "description": [],
- "signature": [
- "PartialC",
- "<{ owner: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/status.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CasesStatusResponseRt",
- "type": "Object",
- "tags": [],
- "label": "CasesStatusResponseRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ count_open_cases: ",
- "NumberC",
- "; count_in_progress_cases: ",
- "NumberC",
- "; count_closed_cases: ",
- "NumberC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/status.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseStatusRt",
- "type": "Object",
- "tags": [],
- "label": "CaseStatusRt",
- "description": [],
- "signature": [
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/status.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActionAttributesRt",
- "type": "Object",
- "tags": [],
- "label": "CaseUserActionAttributesRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ action_field: ",
- "ArrayC",
- "<",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"comment\">, ",
- "LiteralC",
- "<\"connector\">, ",
- "LiteralC",
- "<\"description\">, ",
- "LiteralC",
- "<\"pushed\">, ",
- "LiteralC",
- "<\"tags\">, ",
- "LiteralC",
- "<\"title\">, ",
- "LiteralC",
- "<\"status\">, ",
- "LiteralC",
- "<\"settings\">, ",
- "LiteralC",
- "<\"sub_case\">, ",
- "LiteralC",
- "<\"owner\">]>>; action: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"add\">, ",
- "LiteralC",
- "<\"create\">, ",
- "LiteralC",
- "<\"delete\">, ",
- "LiteralC",
- "<\"update\">, ",
- "LiteralC",
- "<\"push-to-service\">]>; action_at: ",
- "StringC",
- "; action_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; new_value: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; old_value: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActionConnectorRt",
- "type": "Object",
- "tags": [],
- "label": "CaseUserActionConnectorRt",
- "description": [
- "\nThis type represents the connector's format when it is encoded within a user action."
- ],
- "signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ name: ",
- "StringC",
- "; }>, ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActionExternalServiceRt",
- "type": "Object",
- "tags": [],
- "label": "CaseUserActionExternalServiceRt",
- "description": [
- "\nThis represents the push to service UserAction. It lacks the connector_id because that is stored in a different field\nwithin the user action object in the API response."
- ],
- "signature": [
- "TypeC",
- "<{ connector_name: ",
- "StringC",
- "; external_id: ",
- "StringC",
- "; external_title: ",
- "StringC",
- "; external_url: ",
- "StringC",
- "; pushed_at: ",
- "StringC",
- "; pushed_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CaseUserActionsResponseRt",
- "type": "Object",
- "tags": [],
- "label": "CaseUserActionsResponseRt",
- "description": [],
- "signature": [
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ action_field: ",
- "ArrayC",
- "<",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"comment\">, ",
- "LiteralC",
- "<\"connector\">, ",
- "LiteralC",
- "<\"description\">, ",
- "LiteralC",
- "<\"pushed\">, ",
- "LiteralC",
- "<\"tags\">, ",
- "LiteralC",
- "<\"title\">, ",
- "LiteralC",
- "<\"status\">, ",
- "LiteralC",
- "<\"settings\">, ",
- "LiteralC",
- "<\"sub_case\">, ",
- "LiteralC",
- "<\"owner\">]>>; action: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"add\">, ",
- "LiteralC",
- "<\"create\">, ",
- "LiteralC",
- "<\"delete\">, ",
- "LiteralC",
- "<\"update\">, ",
- "LiteralC",
- "<\"push-to-service\">]>; action_at: ",
- "StringC",
- "; action_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; new_value: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; old_value: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ action_id: ",
- "StringC",
- "; case_id: ",
- "StringC",
- "; comment_id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; new_val_connector_id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; old_val_connector_id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "PartialC",
- "<{ sub_case_id: ",
- "StringC",
- "; }>]>>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/user_actions.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentAttributesBasicRt",
- "type": "Object",
- "tags": [],
- "label": "CommentAttributesBasicRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentPatchAttributesRt",
- "type": "Object",
- "tags": [],
- "label": "CommentPatchAttributesRt",
- "description": [
- "\nThis type is used by the CaseService.\nBecause the type for the attributes of savedObjectClient update function is Partial\nwe need to make all of our attributes partial too.\nWe ensure that partial updates of CommentContext is not going to happen inside the patch comment route."
- ],
- "signature": [
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "PartialC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "PartialC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>]>, ",
- "PartialC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentPatchRequestRt",
- "type": "Object",
- "tags": [],
- "label": "CommentPatchRequestRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentRequestRt",
- "type": "Object",
- "tags": [],
- "label": "CommentRequestRt",
- "description": [],
- "signature": [
- "UnionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentResponseRt",
- "type": "Object",
- "tags": [],
- "label": "CommentResponseRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentResponseTypeActionsRt",
- "type": "Object",
- "tags": [],
- "label": "CommentResponseTypeActionsRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentResponseTypeAlertsRt",
- "type": "Object",
- "tags": [],
- "label": "CommentResponseTypeAlertsRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.CommentsResponseRt",
- "type": "Object",
- "tags": [],
- "label": "CommentsResponseRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; page: ",
- "NumberC",
- "; per_page: ",
- "NumberC",
- "; total: ",
- "NumberC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorFieldsRt",
- "type": "Object",
- "tags": [],
- "label": "ConnectorFieldsRt",
- "description": [],
- "signature": [
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorMappingsAttributesRT",
- "type": "Object",
- "tags": [],
- "label": "ConnectorMappingsAttributesRT",
- "description": [],
- "signature": [
- "TypeC",
- "<{ action_type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"append\">, ",
- "LiteralC",
- "<\"nothing\">, ",
- "LiteralC",
- "<\"overwrite\">]>; source: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"title\">, ",
- "LiteralC",
- "<\"description\">, ",
- "LiteralC",
- "<\"comments\">]>; target: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "LiteralC",
- "<\"not_mapped\">]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorMappingsRt",
- "type": "Object",
- "tags": [],
- "label": "ConnectorMappingsRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ mappings: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ action_type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"append\">, ",
- "LiteralC",
- "<\"nothing\">, ",
- "LiteralC",
- "<\"overwrite\">]>; source: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"title\">, ",
- "LiteralC",
- "<\"description\">, ",
- "LiteralC",
- "<\"comments\">]>; target: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "LiteralC",
- "<\"not_mapped\">]>; }>>; owner: ",
- "StringC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/mappings.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ConnectorTypeFieldsRt",
- "type": "Object",
- "tags": [],
- "label": "ConnectorTypeFieldsRt",
- "description": [],
- "signature": [
- "UnionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".jira>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".none>; fields: ",
- "NullC",
- "; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".resilient>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowITSM>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".serviceNowSIR>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>, ",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.ConnectorTypes",
- "text": "ConnectorTypes"
- },
- ".swimlane>; fields: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/index.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ContextTypeUserRt",
- "type": "Object",
- "tags": [],
- "label": "ContextTypeUserRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ExternalServiceResponseRt",
- "type": "Object",
- "tags": [],
- "label": "ExternalServiceResponseRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ title: ",
- "StringC",
- "; id: ",
- "StringC",
- "; pushedDate: ",
- "StringC",
- "; url: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ commentId: ",
- "StringC",
- "; pushedDate: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ externalCommentId: ",
- "StringC",
- "; }>]>>; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.FindQueryParamsRt",
- "type": "Object",
- "tags": [],
- "label": "FindQueryParamsRt",
- "description": [],
- "signature": [
- "PartialC",
- "<{ subCaseId: ",
- "StringC",
- "; defaultSearchOperator: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"AND\">, ",
- "LiteralC",
- "<\"OR\">]>; hasReferenceOperator: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"AND\">, ",
- "LiteralC",
- "<\"OR\">]>; hasReference: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; type: ",
- "StringC",
- "; }>>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; type: ",
- "StringC",
- "; }>]>; fields: ",
- "ArrayC",
- "<",
- "StringC",
- ">; filter: ",
- "StringC",
- "; page: ",
- "Type",
- "; perPage: ",
- "Type",
- "; search: ",
- "StringC",
- "; searchFields: ",
- "ArrayC",
- "<",
- "StringC",
- ">; sortField: ",
- "StringC",
- "; sortOrder: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"desc\">, ",
- "LiteralC",
- "<\"asc\">]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/comment.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.GetCaseIdsByAlertIdAggsRt",
- "type": "Object",
- "tags": [],
- "label": "GetCaseIdsByAlertIdAggsRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ references: ",
- "TypeC",
- "<{ doc_count: ",
- "NumberC",
- "; caseIds: ",
- "TypeC",
- "<{ buckets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ key: ",
- "StringC",
- "; }>>; }>; }>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.GetConfigureFindRequestRt",
- "type": "Object",
- "tags": [],
- "label": "GetConfigureFindRequestRt",
- "description": [],
- "signature": [
- "PartialC",
- "<{ owner: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/configure.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.JiraFieldsRT",
- "type": "Object",
- "tags": [],
- "label": "JiraFieldsRT",
- "description": [],
- "signature": [
- "TypeC",
- "<{ issueType: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; parent: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/jira.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.NumberFromString",
- "type": "Object",
- "tags": [],
- "label": "NumberFromString",
- "description": [],
- "signature": [
- "Type",
- ""
- ],
- "path": "x-pack/plugins/cases/common/api/saved_object.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ResilientFieldsRT",
- "type": "Object",
- "tags": [],
- "label": "ResilientFieldsRT",
- "description": [],
- "signature": [
- "TypeC",
- "<{ incidentTypes: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "NullC",
- "]>; severityCode: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/resilient.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SavedObjectFindOptionsRt",
- "type": "Object",
- "tags": [],
- "label": "SavedObjectFindOptionsRt",
- "description": [],
- "signature": [
- "PartialC",
- "<{ defaultSearchOperator: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"AND\">, ",
- "LiteralC",
- "<\"OR\">]>; hasReferenceOperator: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"AND\">, ",
- "LiteralC",
- "<\"OR\">]>; hasReference: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; type: ",
- "StringC",
- "; }>>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; type: ",
- "StringC",
- "; }>]>; fields: ",
- "ArrayC",
- "<",
- "StringC",
- ">; filter: ",
- "StringC",
- "; page: ",
- "Type",
- "; perPage: ",
- "Type",
- "; search: ",
- "StringC",
- "; searchFields: ",
- "ArrayC",
- "<",
- "StringC",
- ">; sortField: ",
- "StringC",
- "; sortOrder: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"desc\">, ",
- "LiteralC",
- "<\"asc\">]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/saved_object.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ServiceNowITSMFieldsRT",
- "type": "Object",
- "tags": [],
- "label": "ServiceNowITSMFieldsRT",
- "description": [],
- "signature": [
- "TypeC",
- "<{ impact: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; severity: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; urgency: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/servicenow_itsm.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.ServiceNowSIRFieldsRT",
- "type": "Object",
- "tags": [],
- "label": "ServiceNowSIRFieldsRT",
- "description": [],
- "signature": [
- "TypeC",
- "<{ category: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; destIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareHash: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; malwareUrl: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; priority: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; sourceIp: ",
- "UnionC",
- "<[",
- "BooleanC",
- ", ",
- "NullC",
- "]>; subcategory: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/servicenow_sir.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCaseAttributesRt",
- "type": "Object",
- "tags": [],
- "label": "SubCaseAttributesRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCasePatchRequestRt",
- "type": "Object",
- "tags": [],
- "label": "SubCasePatchRequestRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "PartialC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; }>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCaseResponseRt",
- "type": "Object",
- "tags": [],
- "label": "SubCaseResponseRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCasesFindRequestRt",
- "type": "Object",
- "tags": [],
- "label": "SubCasesFindRequestRt",
- "description": [],
- "signature": [
- "PartialC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; defaultSearchOperator: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"AND\">, ",
- "LiteralC",
- "<\"OR\">]>; fields: ",
- "ArrayC",
- "<",
- "StringC",
- ">; page: ",
- "Type",
- "; perPage: ",
- "Type",
- "; search: ",
- "StringC",
- "; searchFields: ",
- "ArrayC",
- "<",
- "StringC",
- ">; sortField: ",
- "StringC",
- "; sortOrder: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<\"desc\">, ",
- "LiteralC",
- "<\"asc\">]>; owner: ",
- "StringC",
- "; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCasesFindResponseRt",
- "type": "Object",
- "tags": [],
- "label": "SubCasesFindResponseRt",
- "description": [],
- "signature": [
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ subCases: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>>; page: ",
- "NumberC",
- "; per_page: ",
- "NumberC",
- "; total: ",
- "NumberC",
- "; }>, ",
- "TypeC",
- "<{ count_open_cases: ",
- "NumberC",
- "; count_in_progress_cases: ",
- "NumberC",
- "; count_closed_cases: ",
- "NumberC",
- "; }>]>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCasesPatchRequestRt",
- "type": "Object",
- "tags": [],
- "label": "SubCasesPatchRequestRt",
- "description": [],
- "signature": [
- "TypeC",
- "<{ subCases: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "PartialC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; }>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SubCasesResponseRt",
- "type": "Object",
- "tags": [],
- "label": "SubCasesResponseRt",
- "description": [],
- "signature": [
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ status: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".open>, ",
- "LiteralC",
- ", ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CaseStatuses",
- "text": "CaseStatuses"
- },
- ".closed>]>; }>, ",
- "TypeC",
- "<{ closed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; closed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; created_at: ",
- "StringC",
- "; created_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; owner: ",
- "StringC",
- "; }>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; totalComment: ",
- "NumberC",
- "; totalAlerts: ",
- "NumberC",
- "; version: ",
- "StringC",
- "; }>, ",
- "PartialC",
- "<{ comments: ",
- "ArrayC",
- "<",
- "IntersectionC",
- "<[",
- "UnionC",
- "<[",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ comment: ",
- "StringC",
- "; type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".user>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".generatedAlert>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".alert>]>; alertId: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; index: ",
- "UnionC",
- "<[",
- "ArrayC",
- "<",
- "StringC",
- ">, ",
- "StringC",
- "]>; rule: ",
- "TypeC",
- "<{ id: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; name: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>, ",
- "IntersectionC",
- "<[",
- "TypeC",
- "<{ type: ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.CommentType",
- "text": "CommentType"
- },
- ".actions>; comment: ",
- "StringC",
- "; actions: ",
- "TypeC",
- "<{ targets: ",
- "ArrayC",
- "<",
- "TypeC",
- "<{ hostname: ",
- "StringC",
- "; endpointId: ",
- "StringC",
- "; }>>; type: ",
- "StringC",
- "; }>; owner: ",
- "StringC",
- "; }>, ",
- "TypeC",
- "<{ associationType: ",
- "UnionC",
- "<[",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".case>, ",
- "LiteralC",
- "<",
- {
- "pluginId": "cases",
- "scope": "common",
- "docId": "kibCasesPluginApi",
- "section": "def-common.AssociationType",
- "text": "AssociationType"
- },
- ".subCase>]>; created_at: ",
- "StringC",
- "; created_by: ",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>; owner: ",
- "StringC",
- "; pushed_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; pushed_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; updated_at: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; updated_by: ",
- "UnionC",
- "<[",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>, ",
- "NullC",
- "]>; }>]>]>, ",
- "TypeC",
- "<{ id: ",
- "StringC",
- "; version: ",
- "StringC",
- "; }>]>>; }>]>>"
- ],
- "path": "x-pack/plugins/cases/common/api/cases/sub_case.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.SwimlaneFieldsRT",
- "type": "Object",
- "tags": [],
- "label": "SwimlaneFieldsRT",
- "description": [],
- "signature": [
- "TypeC",
- "<{ caseId: ",
- "UnionC",
- "<[",
- "StringC",
- ", ",
- "NullC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/connectors/swimlane.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UserRT",
- "type": "Object",
- "tags": [],
- "label": "UserRT",
- "description": [],
- "signature": [
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>"
- ],
- "path": "x-pack/plugins/cases/common/api/user.ts",
- "deprecated": false,
- "initialIsOpen": false
- },
- {
- "parentPluginId": "cases",
- "id": "def-common.UsersRt",
- "type": "Object",
- "tags": [],
- "label": "UsersRt",
- "description": [],
- "signature": [
- "ArrayC",
- "<",
- "TypeC",
- "<{ email: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; full_name: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; username: ",
- "UnionC",
- "<[",
- "UndefinedC",
- ", ",
- "NullC",
- ", ",
- "StringC",
- "]>; }>>"
- ],
- "path": "x-pack/plugins/cases/common/api/user.ts",
- "deprecated": false,
"initialIsOpen": false
}
- ]
+ ],
+ "objects": []
}
}
\ No newline at end of file
diff --git a/api_docs/cases.mdx b/api_docs/cases.mdx
index 59aa571e25548..0aeac0fbfe377 100644
--- a/api_docs/cases.mdx
+++ b/api_docs/cases.mdx
@@ -16,9 +16,9 @@ Contact [Security Solution Threat Hunting](https://github.com/orgs/elastic/teams
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 451 | 0 | 411 | 15 |
+| 81 | 0 | 57 | 23 |
## Client
@@ -47,9 +47,6 @@ Contact [Security Solution Threat Hunting](https://github.com/orgs/elastic/teams
## Common
-### Objects
-
-
### Functions
diff --git a/api_docs/charts.json b/api_docs/charts.json
index 143c3e1d06e8b..32a3b67bfc33e 100644
--- a/api_docs/charts.json
+++ b/api_docs/charts.json
@@ -100,6 +100,63 @@
"returnComment": [],
"initialIsOpen": false
},
+ {
+ "parentPluginId": "charts",
+ "id": "def-public.EmptyPlaceholder",
+ "type": "Function",
+ "tags": [],
+ "label": "EmptyPlaceholder",
+ "description": [],
+ "signature": [
+ "({ icon, message, }: { icon: ",
+ "IconType",
+ "; message?: JSX.Element | undefined; }) => JSX.Element"
+ ],
+ "path": "src/plugins/charts/public/static/components/empty_placeholder.tsx",
+ "deprecated": false,
+ "children": [
+ {
+ "parentPluginId": "charts",
+ "id": "def-public.EmptyPlaceholder.$1",
+ "type": "Object",
+ "tags": [],
+ "label": "{\n icon,\n message = ,\n}",
+ "description": [],
+ "path": "src/plugins/charts/public/static/components/empty_placeholder.tsx",
+ "deprecated": false,
+ "children": [
+ {
+ "parentPluginId": "charts",
+ "id": "def-public.EmptyPlaceholder.$1.icon",
+ "type": "CompoundType",
+ "tags": [],
+ "label": "icon",
+ "description": [],
+ "signature": [
+ "string | React.ComponentType<{}>"
+ ],
+ "path": "src/plugins/charts/public/static/components/empty_placeholder.tsx",
+ "deprecated": false
+ },
+ {
+ "parentPluginId": "charts",
+ "id": "def-public.EmptyPlaceholder.$1.message",
+ "type": "Object",
+ "tags": [],
+ "label": "message",
+ "description": [],
+ "signature": [
+ "JSX.Element | undefined"
+ ],
+ "path": "src/plugins/charts/public/static/components/empty_placeholder.tsx",
+ "deprecated": false
+ }
+ ]
+ }
+ ],
+ "returnComment": [],
+ "initialIsOpen": false
+ },
{
"parentPluginId": "charts",
"id": "def-public.Endzones",
@@ -226,7 +283,9 @@
"section": "def-common.Datatable",
"text": "Datatable"
},
- ", xAccessor: string | number | ",
+ ", xAccessor: ",
+ "Accessor",
+ " | ",
"AccessorFn",
") => ({ x: selectedRange }: ",
"XYBrushEvent",
@@ -270,7 +329,8 @@
"label": "xAccessor",
"description": [],
"signature": [
- "string | number | ",
+ "Accessor",
+ " | ",
"AccessorFn"
],
"path": "src/plugins/charts/public/static/utils/transform_click_event.ts",
@@ -299,11 +359,15 @@
"section": "def-common.Datatable",
"text": "Datatable"
},
- ", xAccessor: string | number | ",
+ ", xAccessor: ",
+ "Accessor",
+ " | ",
"AccessorFn",
- ", splitSeriesAccessorFnMap?: Map | undefined, splitChartAccessor?: string | number | ",
+ "> | undefined, splitChartAccessor?: ",
+ "Accessor",
+ " | ",
"AccessorFn",
" | undefined, negate?: boolean) => (points: [",
"GeometryValue",
@@ -349,7 +413,8 @@
"label": "xAccessor",
"description": [],
"signature": [
- "string | number | ",
+ "Accessor",
+ " | ",
"AccessorFn"
],
"path": "src/plugins/charts/public/static/utils/transform_click_event.ts",
@@ -366,7 +431,7 @@
"needed when using `splitSeriesAccessors` as `AccessorFn`"
],
"signature": [
- "Map | undefined"
],
@@ -382,7 +447,8 @@
"label": "splitChartAccessor",
"description": [],
"signature": [
- "string | number | ",
+ "Accessor",
+ " | ",
"AccessorFn",
" | undefined"
],
@@ -428,9 +494,11 @@
},
") => ({ splitAccessors, ...rest }: ",
"XYChartSeriesIdentifier",
- ", splitSeriesAccessorFnMap?: Map | undefined, splitChartAccessor?: string | number | ",
+ "> | undefined, splitChartAccessor?: ",
+ "Accessor",
+ " | ",
"AccessorFn",
" | undefined, negate?: boolean) => ",
{
@@ -2684,7 +2752,7 @@
"signature": [
"{ readonly seedColors: string[]; readonly mappedColors: ",
"MappedColors",
- "; createColorLookupFunction: (arrayOfStringsOrNumbers?: React.ReactText[] | undefined, colorMapping?: Partial>) => (value: React.ReactText) => any; }"
+ "; createColorLookupFunction: (arrayOfStringsOrNumbers?: (string | number)[] | undefined, colorMapping?: Partial>) => (value: string | number) => any; }"
],
"path": "src/plugins/charts/public/plugin.ts",
"deprecated": false
diff --git a/api_docs/charts.mdx b/api_docs/charts.mdx
index dcfc63c3ac6ea..ce27ff9aca775 100644
--- a/api_docs/charts.mdx
+++ b/api_docs/charts.mdx
@@ -16,9 +16,9 @@ Contact [Vis Editors](https://github.com/orgs/elastic/teams/kibana-vis-editors)
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
-| 310 | 2 | 278 | 3 |
+| 314 | 2 | 282 | 4 |
## Client
diff --git a/api_docs/cloud.mdx b/api_docs/cloud.mdx
index eb9bad8024179..d86fd08d0f09a 100644
--- a/api_docs/cloud.mdx
+++ b/api_docs/cloud.mdx
@@ -16,7 +16,7 @@ Contact [Kibana Core](https://github.com/orgs/elastic/teams/kibana-core) for que
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
| 22 | 0 | 22 | 0 |
diff --git a/api_docs/console.mdx b/api_docs/console.mdx
index fcfa1afbee490..f97c82618c74f 100644
--- a/api_docs/console.mdx
+++ b/api_docs/console.mdx
@@ -16,7 +16,7 @@ Contact [Stack Management](https://github.com/orgs/elastic/teams/kibana-stack-ma
**Code health stats**
-| Public API count | Any count | Items lacking comments | Missing exports |
+| Public API count | Any count | Items lacking comments | Missing exports |
|-------------------|-----------|------------------------|-----------------|
| 13 | 0 | 13 | 1 |
diff --git a/api_docs/core.json b/api_docs/core.json
index 3ff47b6638a8c..7bcdd7fadc6ef 100644
--- a/api_docs/core.json
+++ b/api_docs/core.json
@@ -19,15 +19,14 @@
"section": "def-public.ToastsApi",
"text": "ToastsApi"
},
- " implements Pick<",
+ " implements ",
{
"pluginId": "core",
"scope": "public",
"docId": "kibCorePluginApi",
- "section": "def-public.ToastsApi",
- "text": "ToastsApi"
- },
- ", \"add\" | \"get$\" | \"remove\" | \"addSuccess\" | \"addWarning\" | \"addDanger\" | \"addError\" | \"addInfo\">"
+ "section": "def-public.IToasts",
+ "text": "IToasts"
+ }
],
"path": "src/core/public/notifications/toasts/toasts_api.tsx",
"deprecated": false,
@@ -143,7 +142,7 @@
"tags": [],
"label": "toastOrTitle",
"description": [
- "- a {@link ToastInput}"
+ "- a {@link ToastInput }"
],
"signature": [
{
@@ -160,7 +159,7 @@
}
],
"returnComment": [
- "a {@link Toast}"
+ "a {@link Toast }"
]
},
{
@@ -193,7 +192,7 @@
"tags": [],
"label": "toastOrId",
"description": [
- "- a {@link Toast} returned by {@link ToastsApi.add} or its id"
+ "- a {@link Toast } returned by {@link ToastsApi.add } or its id"
],
"signature": [
"string | ",
@@ -257,7 +256,7 @@
"tags": [],
"label": "toastOrTitle",
"description": [
- "- a {@link ToastInput}"
+ "- a {@link ToastInput }"
],
"signature": [
{
@@ -279,7 +278,7 @@
"tags": [],
"label": "options",
"description": [
- "- a {@link ToastOptions}"
+ "- a {@link ToastOptions }"
],
"signature": [
{
@@ -297,7 +296,7 @@
}
],
"returnComment": [
- "a {@link Toast}"
+ "a {@link Toast }"
]
},
{
@@ -345,7 +344,7 @@
"tags": [],
"label": "toastOrTitle",
"description": [
- "- a {@link ToastInput}"
+ "- a {@link ToastInput }"
],
"signature": [
{
@@ -367,7 +366,7 @@
"tags": [],
"label": "options",
"description": [
- "- a {@link ToastOptions}"
+ "- a {@link ToastOptions }"
],
"signature": [
{
@@ -385,7 +384,7 @@
}
],
"returnComment": [
- "a {@link Toast}"
+ "a {@link Toast }"
]
},
{
@@ -433,7 +432,7 @@
"tags": [],
"label": "toastOrTitle",
"description": [
- "- a {@link ToastInput}"
+ "- a {@link ToastInput }"
],
"signature": [
{
@@ -455,7 +454,7 @@
"tags": [],
"label": "options",
"description": [
- "- a {@link ToastOptions}"
+ "- a {@link ToastOptions }"
],
"signature": [
{
@@ -473,7 +472,7 @@
}
],
"returnComment": [
- "a {@link Toast}"
+ "a {@link Toast }"
]
},
{
@@ -521,7 +520,7 @@
"tags": [],
"label": "toastOrTitle",
"description": [
- "- a {@link ToastInput}"
+ "- a {@link ToastInput }"
],
"signature": [
{
@@ -543,7 +542,7 @@
"tags": [],
"label": "options",
"description": [
- "- a {@link ToastOptions}"
+ "- a {@link ToastOptions }"
],
"signature": [
{
@@ -561,7 +560,7 @@
}
],
"returnComment": [
- "a {@link Toast}"
+ "a {@link Toast }"
]
},
{
@@ -617,7 +616,7 @@
"tags": [],
"label": "options",
"description": [
- "- {@link ErrorToastOptions}"
+ "- {@link ErrorToastOptions }"
],
"signature": [
{
@@ -634,7 +633,7 @@
}
],
"returnComment": [
- "a {@link Toast}"
+ "a {@link Toast }"
]
}
],
@@ -1672,7 +1671,7 @@
"label": "links",
"description": [],
"signature": [
- "{ readonly settings: string; readonly elasticStackGetStarted: string; readonly upgrade: { readonly upgradingElasticStack: string; }; readonly apm: { readonly kibanaSettings: string; readonly supportedServiceMaps: string; readonly customLinks: string; readonly droppedTransactionSpans: string; readonly upgrading: string; readonly metaData: string; }; readonly canvas: { readonly guide: string; }; readonly dashboard: { readonly guide: string; readonly drilldowns: string; readonly drilldownsTriggerPicker: string; readonly urlDrilldownTemplateSyntax: string; readonly urlDrilldownVariables: string; }; readonly discover: Record; readonly filebeat: { readonly base: string; readonly installation: string; readonly configuration: string; readonly elasticsearchOutput: string; readonly elasticsearchModule: string; readonly startup: string; readonly exportedFields: string; readonly suricataModule: string; readonly zeekModule: string; }; readonly auditbeat: { readonly base: string; readonly auditdModule: string; readonly systemModule: string; }; readonly metricbeat: { readonly base: string; readonly configure: string; readonly httpEndpoint: string; readonly install: string; readonly start: string; }; readonly enterpriseSearch: { readonly base: string; readonly appSearchBase: string; readonly workplaceSearchBase: string; }; readonly heartbeat: { readonly base: string; }; readonly libbeat: { readonly getStarted: string; }; readonly logstash: { readonly base: string; }; readonly functionbeat: { readonly base: string; }; readonly winlogbeat: { readonly base: string; }; readonly aggs: { readonly composite: string; readonly composite_missing_bucket: string; readonly date_histogram: string; readonly date_range: string; readonly date_format_pattern: string; readonly filter: string; readonly filters: string; readonly geohash_grid: string; readonly histogram: string; readonly ip_range: string; readonly range: string; readonly significant_terms: string; readonly terms: string; readonly terms_doc_count_error: string; readonly avg: string; readonly avg_bucket: string; readonly max_bucket: string; readonly min_bucket: string; readonly sum_bucket: string; readonly cardinality: string; readonly count: string; readonly cumulative_sum: string; readonly derivative: string; readonly geo_bounds: string; readonly geo_centroid: string; readonly max: string; readonly median: string; readonly min: string; readonly moving_avg: string; readonly percentile_ranks: string; readonly serial_diff: string; readonly std_dev: string; readonly sum: string; readonly top_hits: string; }; readonly runtimeFields: { readonly overview: string; readonly mapping: string; }; readonly scriptedFields: { readonly scriptFields: string; readonly scriptAggs: string; readonly painless: string; readonly painlessApi: string; readonly painlessLangSpec: string; readonly painlessSyntax: string; readonly painlessWalkthrough: string; readonly luceneExpressions: string; }; readonly search: { readonly sessions: string; readonly sessionLimits: string; }; readonly indexPatterns: { readonly introduction: string; readonly fieldFormattersNumber: string; readonly fieldFormattersString: string; readonly runtimeFields: string; }; readonly addData: string; readonly kibana: string; readonly upgradeAssistant: { readonly overview: string; readonly batchReindex: string; readonly remoteReindex: string; }; readonly rollupJobs: string; readonly elasticsearch: Record; readonly siem: { readonly privileges: string; readonly guide: string; readonly gettingStarted: string; readonly ml: string; readonly ruleChangeLog: string; readonly detectionsReq: string; readonly networkMap: string; readonly troubleshootGaps: string; }; readonly securitySolution: { readonly trustedApps: string; }; readonly query: { readonly eql: string; readonly kueryQuerySyntax: string; readonly luceneQuerySyntax: string; readonly percolate: string; readonly queryDsl: string; }; readonly date: { readonly dateMath: string; readonly dateMathIndexNames: string; }; readonly management: Record; readonly ml: Record; readonly transforms: Record