Skip to content

Commit a8be55d

Browse files
committed
[API] Updates source code docs and API version
1 parent dec668e commit a8be55d

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

elasticsearch-api/lib/elasticsearch/api/actions/esql/async_query.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ module Actions
3232
# It is valid only for the CSV format.
3333
# @option arguments [Boolean] :drop_null_columns Indicates whether columns that are entirely `null` will be removed from the `columns` and `values` portion of the results.
3434
# If `true`, the response will include an extra section under the name `all_columns` which has the name of all the columns.
35-
# @option arguments [String] :format A short version of the Accept header, for example `json` or `yaml`.
35+
# @option arguments [String] :format A short version of the Accept header, e.g. json, yaml.`csv`, `tsv`, and `txt` formats will return results in a tabular format, excluding other metadata fields from the response.For async requests, nothing will be returned if the async query doesn't finish within the timeout.
36+
# The query ID and running status are available in the `X-Elasticsearch-Async-Id` and `X-Elasticsearch-Async-Is-Running` HTTP headers of the response, respectively.
3637
# @option arguments [Boolean] :error_trace When set to `true` Elasticsearch will include the full stack trace of errors
3738
# when they occur.
3839
# @option arguments [String, Array<String>] :filter_path Comma-separated list of filters in dot notation which reduce the response

elasticsearch-api/lib/elasticsearch/api/actions/esql/query.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module Actions
2828
# minor version, meaning that your referencing code may break when this
2929
# library is upgraded.
3030
#
31-
# @option arguments [String] :format A short version of the Accept header, e.g. json, yaml.
31+
# @option arguments [String] :format A short version of the Accept header, e.g. json, yaml.`csv`, `tsv`, and `txt` formats will return results in a tabular format, excluding other metadata fields from the response.
3232
# @option arguments [String] :delimiter The character to use between values within a CSV row. Only valid for the CSV format.
3333
# @option arguments [Boolean] :drop_null_columns Should columns that are entirely `null` be removed from the `columns` and `values` portion of the results?
3434
# Defaults to `false`. If `true` then the response will include an extra section under the name `all_columns` which has the name of all columns.

elasticsearch-api/lib/elasticsearch/api/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@
1818
module Elasticsearch
1919
module API
2020
VERSION = '9.1.0'.freeze
21-
ES_SPECIFICATION_COMMIT = '4f3be59696b7f349bfd270a485fe538fc75e4cd6'.freeze
21+
ES_SPECIFICATION_COMMIT = '93d1b5e58d7f47ac3591df5f085b50f0e472b2eb'.freeze
2222
end
2323
end

0 commit comments

Comments
 (0)