Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 28 additions & 8 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion specification/esql/async_query/AsyncQueryRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,16 @@ export interface Request extends RequestBase {
* object with information about the clusters that participated in the search along with info such as shards
* count.
* @server_default false
* @aliases include_execution_metadata
*/
include_ccs_metadata?: boolean
/**
* When set to `true`, the response will include an extra `_clusters`
* object with information about the clusters that participated in the search along with info such as shards
* count.
* This is similar to `include_ccs_metadata`, but it also returns metadata when the query is not CCS/CPS
* @server_default false
*/
include_execution_metadata?: boolean
/**
* The period to wait for the request to finish.
* By default, the request waits for 1 second for the query results.
Expand Down
9 changes: 8 additions & 1 deletion specification/esql/query/QueryRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,15 @@ export interface Request extends RequestBase {
* object with information about the clusters that participated in the search along with info such as shards
* count.
* @server_default false
* @aliases include_execution_metadata
*/
include_ccs_metadata?: boolean
/**
* When set to `true`, the response will include an extra `_clusters`
* object with information about the clusters that participated in the search along with info such as shards
* count.
* This is similar to `include_ccs_metadata`, but it also returns metadata when the query is not CCS/CPS
* @server_default false
*/
include_execution_metadata?: boolean
}
}