You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Endpoints/Esql.php
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -37,10 +37,7 @@ class Esql extends AbstractEndpoint
37
37
* format?: string, // a short version of the Accept header, e.g. json, yaml
38
38
* delimiter?: string, // The character to use between values within a CSV row. Only valid for the csv format.
39
39
* drop_null_columns?: bool, // Should entirely null columns be removed from the results? Their name and type will be returning in a new `all_columns` section.
40
-
* allow_partial_results?: bool, // If `true`, partial results will be returned if there are shard failures, but
41
-
* the query can continue to execute on other clusters and shards.
42
-
* If `false`, the entire query will fail if there are
43
-
* any failures.
40
+
* allow_partial_results?: bool, // If `true`, partial results will be returned if there are shard failures, butthe query can continue to execute on other clusters and shards.If `false`, the entire query will fail if there areany failures.
44
41
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
45
42
* human?: bool, // Return human readable values for statistics. (DEFAULT: true)
46
43
* error_trace?: bool, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -278,10 +275,7 @@ public function listQueries(?array $params = null)
278
275
* format?: string, // a short version of the Accept header, e.g. json, yaml
279
276
* delimiter?: string, // The character to use between values within a CSV row. Only valid for the csv format.
280
277
* drop_null_columns?: bool, // Should entirely null columns be removed from the results? Their name and type will be returning in a new `all_columns` section.
281
-
* allow_partial_results?: bool, // If `true`, partial results will be returned if there are shard failures, but
282
-
* the query can continue to execute on other clusters and shards.
283
-
* If `false`, the entire query will fail if there are
284
-
* any failures.
278
+
* allow_partial_results?: bool, // If `true`, partial results will be returned if there are shard failures, butthe query can continue to execute on other clusters and shards.If `false`, the entire query will fail if there areany failures.
285
279
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
286
280
* human?: bool, // Return human readable values for statistics. (DEFAULT: true)
287
281
* error_trace?: bool, // Include the stack trace of returned errors. (DEFAULT: false)
0 commit comments