Skip to content

Commit 7334127

Browse files
committed
Merge remote-tracking branch 'origin/main' into automated/rest-api-spec-update-main
2 parents 0e6502d + f000bd7 commit 7334127

File tree

7 files changed

+154
-9
lines changed

7 files changed

+154
-9
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 44 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/openapi/elasticsearch-serverless-openapi.json

Lines changed: 44 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 27 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 27 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,6 @@
5656
],
5757
"response": []
5858
},
59-
"bulk": {
60-
"request": [
61-
"Request: missing json spec query parameter 'require_data_stream'",
62-
"Request: missing json spec query parameter 'list_executed_pipelines'"
63-
],
64-
"response": []
65-
},
6659
"capabilities": {
6760
"request": [
6861
"Missing request & response"

output/typescript/types.ts

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/_global/bulk/BulkRequest.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ export interface Request<TDocument, TPartialDocument> extends RequestBase {
4848
index?: IndexName
4949
}
5050
query_parameters: {
51+
/**
52+
* If `true`, the response will include the ingest pipelines that were executed for each index or create.
53+
* @server_default false
54+
*/
55+
list_executed_pipelines?: boolean
5156
/**
5257
* ID of the pipeline to use to preprocess incoming documents.
5358
* If the index has a default ingest pipeline specified, then setting the value to `_none` disables the default ingest pipeline for this request.
@@ -92,6 +97,11 @@ export interface Request<TDocument, TPartialDocument> extends RequestBase {
9297
* @server_default false
9398
*/
9499
require_alias?: boolean
100+
/**
101+
* If `true`, the request's actions must target a data stream (existing or to-be-created).
102+
* @server_default false
103+
*/
104+
require_data_stream?: boolean
95105
}
96106
/**
97107
* The request body contains a newline-delimited list of `create`, `delete`, `index`, and `update` actions and their associated source data.

0 commit comments

Comments
 (0)