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.

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.

14 changes: 13 additions & 1 deletion output/schema/schema.json

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

1 change: 1 addition & 0 deletions output/typescript/types.ts

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

10 changes: 10 additions & 0 deletions specification/async_search/get/AsyncSearchGetRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,15 @@ export interface Request extends RequestBase {
* By default no timeout is set meaning that the currently available results will be returned without any additional wait.
*/
wait_for_completion_timeout?: Duration
/**
* Specifies whether the response should contain intermediate results if the query is still running when the wait_for_completion_timeout
* expires or if no wait_for_completion_timeout is specified.
* If true and the search is still running, the search response
* will include any hits and partial aggregations that are available.
* If false and the search is still running, the search response will not include any hits (but possibly include
* total hits) nor will include any partial aggregations.
* When not specified, the intermediate results are returned for running queries.
*/
return_intermediate_results?: boolean
}
}