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
20 changes: 20 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.

10 changes: 10 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.

27 changes: 20 additions & 7 deletions output/schema/schema-serverless.json

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

36 changes: 31 additions & 5 deletions output/schema/schema.json

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

2 changes: 2 additions & 0 deletions output/typescript/types.ts

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

5 changes: 5 additions & 0 deletions specification/_json_spec/esql.async_query.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
"type": "boolean",
"description": "Should entirely null columns be removed from the results? Their name and type will be returning in a new `all_columns` section.",
"default": false
},
"allow_partial_results": {
"type": "boolean",
"description": "If `true`, partial results will be returned if there are shard failures, but\nthe query can continue to execute on other clusters and shards.",
"default": false
}
},
"body": {
Expand Down
5 changes: 5 additions & 0 deletions specification/_json_spec/esql.query.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,11 @@
"type": "boolean",
"description": "Should entirely null columns be removed from the results? Their name and type will be returning in a new `all_columns` section.",
"default": false
},
"allow_partial_results": {
"type": "boolean",
"description": "If `true`, partial results will be returned if there are shard failures, but\nthe query can continue to execute on other clusters and shards.",
"default": false
}
},
"body": {
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/inference.completion.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/post-inference-api.html",
"description": "Perform completion inference"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/inference.delete.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/delete-inference-api.html",
"description": "Delete an inference endpoint"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/inference.get.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/get-inference-api.html",
"description": "Get an inference endpoint"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"]
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/inference.put.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/put-inference-api.html",
"description": "Configure an inference endpoint for use in the Inference API"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["application/json"],
Expand Down
2 changes: 1 addition & 1 deletion specification/_json_spec/inference.stream_completion.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"url": "https://www.elastic.co/guide/en/elasticsearch/reference/master/post-stream-inference-api.html",
"description": "Perform streaming completion inference"
},
"stability": "experimental",
"stability": "stable",
"visibility": "public",
"headers": {
"accept": ["text/event-stream"],
Expand Down
5 changes: 5 additions & 0 deletions specification/esql/async_query/AsyncQueryRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ import { Duration } from '@_types/Time'
*/
export interface Request extends RequestBase {
query_parameters: {
/**
* If `true`, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
* @server_default false
*/
allow_partial_results?: boolean
/**
* The character to use between values within a CSV row.
* It is valid only for the CSV format.
Expand Down
5 changes: 5 additions & 0 deletions specification/esql/query/QueryRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ export interface Request extends RequestBase {
* @server_default false
*/
drop_null_columns?: boolean
/**
* If `true`, partial results will be returned if there are shard failures, but the query can continue to execute on other clusters and shards.
* @server_default false
*/
allow_partial_results?: boolean
}
/**
* Use the `query` element to start a query. Use `time_zone` to specify an execution time zone and `columnar` to format the answer.
Expand Down