Skip to content

Auto-generated code for 8.19 #2953

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 4, 2025
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
2 changes: 1 addition & 1 deletion docs/reference.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -15204,7 +15204,7 @@ If `false`, Elasticsearch only stores async searches that don't finish before th
** *`page_timeout` (Optional, string | -1 | 0)*: The minimum retention period for the scroll cursor.
After this time period, a pagination request might fail because the scroll cursor is no longer available.
Subsequent scroll requests prolong the lifetime of the scroll cursor by the duration of `page_timeout` in the scroll request.
** *`params` (Optional, Record<string, User-defined value>)*: The values for parameters in the query.
** *`params` (Optional, User-defined value[])*: The values for parameters in the query.
** *`query` (Optional, string)*: The SQL query to run.
** *`request_timeout` (Optional, string | -1 | 0)*: The timeout before the request fails.
** *`runtime_mappings` (Optional, Record<string, { fields, fetch_fields, format, input_field, target_field, target_index, script, type }>)*: One or more runtime fields for the search request.
Expand Down
2 changes: 1 addition & 1 deletion src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21111,7 +21111,7 @@ export interface SqlQueryRequest extends RequestBase {
keep_alive?: Duration
keep_on_completion?: boolean
page_timeout?: Duration
params?: Record<string, any>
params?: any[]
query?: string
request_timeout?: Duration
runtime_mappings?: MappingRuntimeFields
Expand Down
2 changes: 1 addition & 1 deletion src/api/typesWithBodyKey.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21717,7 +21717,7 @@ export interface SqlQueryRequest extends RequestBase {
keep_alive?: Duration
keep_on_completion?: boolean
page_timeout?: Duration
params?: Record<string, any>
params?: any[]
query?: string
request_timeout?: Duration
runtime_mappings?: MappingRuntimeFields
Expand Down
Loading