Skip to content

Commit c842a01

Browse files
Merge branch '7.x' into backport/7.x/pr-85066
2 parents 6dfa283 + 315721c commit c842a01

File tree

534 files changed

+20602
-11405
lines changed

Some content is hidden

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

534 files changed

+20602
-11405
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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; [OverlayFlyoutOpenOptions](./kibana-plugin-core-public.overlayflyoutopenoptions.md) &gt; [maxWidth](./kibana-plugin-core-public.overlayflyoutopenoptions.maxwidth.md)
4+
5+
## OverlayFlyoutOpenOptions.maxWidth property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
maxWidth?: boolean | number | string;
11+
```

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,7 @@ export interface OverlayFlyoutOpenOptions
1818
| ["data-test-subj"](./kibana-plugin-core-public.overlayflyoutopenoptions._data-test-subj_.md) | <code>string</code> | |
1919
| [className](./kibana-plugin-core-public.overlayflyoutopenoptions.classname.md) | <code>string</code> | |
2020
| [closeButtonAriaLabel](./kibana-plugin-core-public.overlayflyoutopenoptions.closebuttonarialabel.md) | <code>string</code> | |
21+
| [maxWidth](./kibana-plugin-core-public.overlayflyoutopenoptions.maxwidth.md) | <code>boolean &#124; number &#124; string</code> | |
2122
| [ownFocus](./kibana-plugin-core-public.overlayflyoutopenoptions.ownfocus.md) | <code>boolean</code> | |
23+
| [size](./kibana-plugin-core-public.overlayflyoutopenoptions.size.md) | <code>EuiFlyoutSize</code> | |
2224

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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; [OverlayFlyoutOpenOptions](./kibana-plugin-core-public.overlayflyoutopenoptions.md) &gt; [size](./kibana-plugin-core-public.overlayflyoutopenoptions.size.md)
4+
5+
## OverlayFlyoutOpenOptions.size property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
size?: EuiFlyoutSize;
11+
```

docs/development/core/server/kibana-plugin-core-server.savedobjectsserializer.generaterawid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Given a saved object type and id, generates the compound id that is stored in th
99
<b>Signature:</b>
1010

1111
```typescript
12-
generateRawId(namespace: string | undefined, type: string, id?: string): string;
12+
generateRawId(namespace: string | undefined, type: string, id: string): string;
1313
```
1414

1515
## Parameters
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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; [SavedObjectsUtils](./kibana-plugin-core-server.savedobjectsutils.md) &gt; [generateId](./kibana-plugin-core-server.savedobjectsutils.generateid.md)
4+
5+
## SavedObjectsUtils.generateId() method
6+
7+
Generates a random ID for a saved objects.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
static generateId(): string;
13+
```
14+
<b>Returns:</b>
15+
16+
`string`
17+
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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; [SavedObjectsUtils](./kibana-plugin-core-server.savedobjectsutils.md) &gt; [isRandomId](./kibana-plugin-core-server.savedobjectsutils.israndomid.md)
4+
5+
## SavedObjectsUtils.isRandomId() method
6+
7+
Validates that a saved object ID matches UUID format.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
static isRandomId(id: string | undefined): boolean;
13+
```
14+
15+
## Parameters
16+
17+
| Parameter | Type | Description |
18+
| --- | --- | --- |
19+
| id | <code>string &#124; undefined</code> | |
20+
21+
<b>Returns:</b>
22+
23+
`boolean`
24+

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,10 @@ export declare class SavedObjectsUtils
1919
| [namespaceIdToString](./kibana-plugin-core-server.savedobjectsutils.namespaceidtostring.md) | <code>static</code> | <code>(namespace?: string &#124; undefined) =&gt; string</code> | Converts a given saved object namespace ID to its string representation. All namespace IDs have an identical string representation, with the exception of the <code>undefined</code> namespace ID (which has a namespace string of <code>'default'</code>). |
2020
| [namespaceStringToId](./kibana-plugin-core-server.savedobjectsutils.namespacestringtoid.md) | <code>static</code> | <code>(namespace: string) =&gt; string &#124; undefined</code> | Converts a given saved object namespace string to its ID representation. All namespace strings have an identical ID representation, with the exception of the <code>'default'</code> namespace string (which has a namespace ID of <code>undefined</code>). |
2121

22+
## Methods
23+
24+
| Method | Modifiers | Description |
25+
| --- | --- | --- |
26+
| [generateId()](./kibana-plugin-core-server.savedobjectsutils.generateid.md) | <code>static</code> | Generates a random ID for a saved objects. |
27+
| [isRandomId(id)](./kibana-plugin-core-server.savedobjectsutils.israndomid.md) | <code>static</code> | Validates that a saved object ID matches UUID format. |
28+

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpatterns.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ indexPatterns: {
1616
isFilterable: typeof isFilterable;
1717
isNestedField: typeof isNestedField;
1818
validate: typeof validateIndexPattern;
19-
getFromSavedObject: typeof getFromSavedObject;
2019
flattenHitWrapper: typeof flattenHitWrapper;
2120
formatHitProvider: typeof formatHitProvider;
2221
}

docs/user/security/audit-logging.asciidoc

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,14 @@ Refer to the corresponding {es} logs for potential write errors.
8484
| `unknown` | User is creating a saved object.
8585
| `failure` | User is not authorized to create a saved object.
8686

87+
.2+| `connector_create`
88+
| `unknown` | User is creating a connector.
89+
| `failure` | User is not authorized to create a connector.
90+
91+
.2+| `alert_create`
92+
| `unknown` | User is creating an alert rule.
93+
| `failure` | User is not authorized to create an alert rule.
94+
8795

8896
3+a|
8997
====== Type: change
@@ -108,6 +116,42 @@ Refer to the corresponding {es} logs for potential write errors.
108116
| `unknown` | User is removing references to a saved object.
109117
| `failure` | User is not authorized to remove references to a saved object.
110118

119+
.2+| `connector_update`
120+
| `unknown` | User is updating a connector.
121+
| `failure` | User is not authorized to update a connector.
122+
123+
.2+| `alert_update`
124+
| `unknown` | User is updating an alert rule.
125+
| `failure` | User is not authorized to update an alert rule.
126+
127+
.2+| `alert_update_api_key`
128+
| `unknown` | User is updating the API key of an alert rule.
129+
| `failure` | User is not authorized to update the API key of an alert rule.
130+
131+
.2+| `alert_enable`
132+
| `unknown` | User is enabling an alert rule.
133+
| `failure` | User is not authorized to enable an alert rule.
134+
135+
.2+| `alert_disable`
136+
| `unknown` | User is disabling an alert rule.
137+
| `failure` | User is not authorized to disable an alert rule.
138+
139+
.2+| `alert_mute`
140+
| `unknown` | User is muting an alert rule.
141+
| `failure` | User is not authorized to mute an alert rule.
142+
143+
.2+| `alert_unmute`
144+
| `unknown` | User is unmuting an alert rule.
145+
| `failure` | User is not authorized to unmute an alert rule.
146+
147+
.2+| `alert_instance_mute`
148+
| `unknown` | User is muting an alert instance.
149+
| `failure` | User is not authorized to mute an alert instance.
150+
151+
.2+| `alert_instance_unmute`
152+
| `unknown` | User is unmuting an alert instance.
153+
| `failure` | User is not authorized to unmute an alert instance.
154+
111155

112156
3+a|
113157
====== Type: deletion
@@ -120,6 +164,14 @@ Refer to the corresponding {es} logs for potential write errors.
120164
| `unknown` | User is deleting a saved object.
121165
| `failure` | User is not authorized to delete a saved object.
122166

167+
.2+| `connector_delete`
168+
| `unknown` | User is deleting a connector.
169+
| `failure` | User is not authorized to delete a connector.
170+
171+
.2+| `alert_delete`
172+
| `unknown` | User is deleting an alert rule.
173+
| `failure` | User is not authorized to delete an alert rule.
174+
123175
3+a|
124176
====== Type: access
125177

@@ -135,6 +187,22 @@ Refer to the corresponding {es} logs for potential write errors.
135187
| `success` | User has accessed a saved object as part of a search operation.
136188
| `failure` | User is not authorized to search for saved objects.
137189

190+
.2+| `connector_get`
191+
| `success` | User has accessed a connector.
192+
| `failure` | User is not authorized to access a connector.
193+
194+
.2+| `connector_find`
195+
| `success` | User has accessed a connector as part of a search operation.
196+
| `failure` | User is not authorized to search for connectors.
197+
198+
.2+| `alert_get`
199+
| `success` | User has accessed an alert rule.
200+
| `failure` | User is not authorized to access an alert rule.
201+
202+
.2+| `alert_find`
203+
| `success` | User has accessed an alert rule as part of a search operation.
204+
| `failure` | User is not authorized to search for alert rules.
205+
138206

139207
3+a|
140208
===== Category: web

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@
346346
"@cypress/webpack-preprocessor": "^5.4.10",
347347
"@elastic/apm-rum": "^5.6.1",
348348
"@elastic/apm-rum-react": "^1.2.5",
349-
"@elastic/charts": "24.2.0",
349+
"@elastic/charts": "24.3.0",
350350
"@elastic/eslint-config-kibana": "link:packages/elastic-eslint-config-kibana",
351351
"@elastic/eslint-plugin-eui": "0.0.2",
352352
"@elastic/github-checks-reporter": "0.0.20b3",

0 commit comments

Comments
 (0)