Skip to content

Commit 0192ad1

Browse files
Merge branch 'master' into ams-fixes
2 parents c822637 + 6dd6376 commit 0192ad1

805 files changed

Lines changed: 1194713 additions & 244943 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/api/alerting/list_rule_types.asciidoc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
<titleabbrev>List rule types</titleabbrev>
55
++++
66

7-
Retrieve a list of alerting rule types.
7+
Retrieve a list of alerting rule types that the user is authorized to access.
8+
9+
Each rule type includes a list of consumer features. Within these features, users are authorized to perform either `read` or `all` operations on rules of that type. This helps determine which rule types users can read, but not create or modify.
10+
11+
NOTE: Some rule types are limited to specific features. These rule types are not available when <<defining-alerts, defining rules>> in <<management,Stack Management>>.
812

913
[[list-rule-types-api-request]]
1014
==== Request

docs/developer/getting-started/monorepo-packages.asciidoc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,12 @@ yarn kbn watch-bazel
6262
=== List of Already Migrated Packages to Bazel
6363

6464
- @elastic/datemath
65+
- @elastic/safer-lodash-set
6566
- @kbn/apm-utils
67+
- @kbn/babel-code-parser
6668
- @kbn/babel-preset
6769
- @kbn/config-schema
70+
- @kbn/expect
6871
- @kbn/std
6972
- @kbn/tinymath
7073
- @kbn/utility-types

docs/developer/plugin-list.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ Failure to have auth enabled in Kibana will make for a broken UI. UI-based error
343343
344344
|{kib-repo}blob/{branch}/x-pack/plugins/cloud/README.md[cloud]
345345
|The cloud plugin adds cloud specific features to Kibana.
346+
The client-side plugin configures following values:
346347
347348
348349
|{kib-repo}blob/{branch}/x-pack/plugins/console_extensions/README.md[consoleExtensions]
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-public](./kibana-plugin-core-public.md) &gt; [APP\_WRAPPER\_CLASS](./kibana-plugin-core-public.app_wrapper_class.md)
4+
5+
## APP\_WRAPPER\_CLASS variable
6+
7+
The class name for top level \*and\* nested application wrappers to ensure proper layout
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
APP_WRAPPER_CLASS = "kbnAppWrapper"
13+
```

docs/development/core/public/kibana-plugin-core-public.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@ The plugin integrates with the core system via lifecycle events: `setup`<!-- -->
138138

139139
| Variable | Description |
140140
| --- | --- |
141+
| [APP\_WRAPPER\_CLASS](./kibana-plugin-core-public.app_wrapper_class.md) | The class name for top level \*and\* nested application wrappers to ensure proper layout |
141142
| [URL\_MAX\_LENGTH](./kibana-plugin-core-public.url_max_length.md) | The max URL length allowed by the current browser. Should be used to display warnings to users when query parameters cause URL to exceed this limit. |
142143

143144
## Type Aliases
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [APP\_WRAPPER\_CLASS](./kibana-plugin-core-server.app_wrapper_class.md)
4+
5+
## APP\_WRAPPER\_CLASS variable
6+
7+
The class name for top level \*and\* nested application wrappers to ensure proper layout
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
APP_WRAPPER_CLASS = "kbnAppWrapper"
13+
```
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [CustomHttpResponseOptions](./kibana-plugin-core-server.customhttpresponseoptions.md) &gt; [bypassErrorFormat](./kibana-plugin-core-server.customhttpresponseoptions.bypasserrorformat.md)
4+
5+
## CustomHttpResponseOptions.bypassErrorFormat property
6+
7+
Bypass the default error formatting
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
bypassErrorFormat?: boolean;
13+
```

docs/development/core/server/kibana-plugin-core-server.customhttpresponseoptions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export interface CustomHttpResponseOptions<T extends HttpResponsePayload | Respo
1717
| Property | Type | Description |
1818
| --- | --- | --- |
1919
| [body](./kibana-plugin-core-server.customhttpresponseoptions.body.md) | <code>T</code> | HTTP message to send to the client |
20+
| [bypassErrorFormat](./kibana-plugin-core-server.customhttpresponseoptions.bypasserrorformat.md) | <code>boolean</code> | Bypass the default error formatting |
2021
| [headers](./kibana-plugin-core-server.customhttpresponseoptions.headers.md) | <code>ResponseHeaders</code> | HTTP Headers with additional information about response |
2122
| [statusCode](./kibana-plugin-core-server.customhttpresponseoptions.statuscode.md) | <code>number</code> | |
2223

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [HttpResponseOptions](./kibana-plugin-core-server.httpresponseoptions.md) &gt; [bypassErrorFormat](./kibana-plugin-core-server.httpresponseoptions.bypasserrorformat.md)
4+
5+
## HttpResponseOptions.bypassErrorFormat property
6+
7+
Bypass the default error formatting
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
bypassErrorFormat?: boolean;
13+
```

docs/development/core/server/kibana-plugin-core-server.httpresponseoptions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,6 @@ export interface HttpResponseOptions
1717
| Property | Type | Description |
1818
| --- | --- | --- |
1919
| [body](./kibana-plugin-core-server.httpresponseoptions.body.md) | <code>HttpResponsePayload</code> | HTTP message to send to the client |
20+
| [bypassErrorFormat](./kibana-plugin-core-server.httpresponseoptions.bypasserrorformat.md) | <code>boolean</code> | Bypass the default error formatting |
2021
| [headers](./kibana-plugin-core-server.httpresponseoptions.headers.md) | <code>ResponseHeaders</code> | HTTP Headers with additional information about response |
2122

0 commit comments

Comments
 (0)