lib/elasticsearch/api/actions/esql/query.rb in elasticsearch-api-8.13.0 vs lib/elasticsearch/api/actions/esql/query.rb in elasticsearch-api-8.14.0

- old
+ new

@@ -21,21 +21,17 @@ module Elasticsearch module API module Esql module Actions # Executes an ESQL request - # This functionality is Experimental and may be changed or removed - # completely in a future release. Elastic will take a best effort approach - # to fix any issues, but experimental features are not subject to the - # support SLA of official GA features. # # @option arguments [String] :format a short version of the Accept header, e.g. json, yaml # @option arguments [String] :delimiter The character to use between values within a CSV row. Only valid for the csv format. # @option arguments [Boolean] :drop_null_columns Should entirely null columns be removed from the results? Their name and type will be returning in a new `all_columns` section. # @option arguments [Hash] :headers Custom HTTP headers # @option arguments [Hash] :body Use the `query` element to start a query. Use `columnar` to format the answer. (*Required*) # - # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.13/esql-query-api.html + # @see https://www.elastic.co/guide/en/elasticsearch/reference/8.14/esql-query-api.html # def query(arguments = {}) request_opts = { endpoint: arguments[:endpoint] || 'esql.query' } raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]