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/Eql.php
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -160,6 +160,10 @@ public function getStatus(?array $params = null)
160
160
* keep_alive?: int|string, // Update the time interval in which the results (partial or final) for this search will be available
161
161
* allow_partial_search_results?: bool, // Control whether the query should keep running in case of shard failures, and return partial results
162
162
* allow_partial_sequence_results?: bool, // Control whether a sequence query should return partial results or no results at all in case of shard failures. This option has effect only if [allow_partial_search_results] is true.
163
+
* ccs_minimize_roundtrips?: bool, // Indicates whether network round-trips should be minimized as part of cross-cluster search requests execution
164
+
* ignore_unavailable?: bool, // Whether specified concrete indices should be ignored when unavailable (missing or closed)
165
+
* allow_no_indices?: bool, // Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
166
+
* expand_wildcards?: string, // Whether to expand wildcard expression to concrete indices that are open, closed or both.
163
167
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
164
168
* human?: bool, // Return human readable values for statistics. (DEFAULT: true)
165
169
* error_trace?: bool, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -182,7 +186,7 @@ public function search(?array $params = null)
Copy file name to clipboardExpand all lines: src/Endpoints/Esql.php
+89-3Lines changed: 89 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,10 @@ 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
44
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
41
45
* human?: bool, // Return human readable values for statistics. (DEFAULT: true)
42
46
* error_trace?: bool, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -58,7 +62,7 @@ public function asyncQuery(?array $params = null)
@@ -114,6 +118,7 @@ public function asyncQueryDelete(?array $params = null)
114
118
*
115
119
* @param array{
116
120
* id: string, // (REQUIRED) The async query ID
121
+
* format?: string, // a short version of the Accept header, e.g. json, yaml
117
122
* wait_for_completion_timeout?: int|string, // Specify the time that the request should block waiting for the final response
118
123
* keep_alive?: int|string, // Specify the time interval in which the results (partial or final) for this search will be available
119
124
* 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.
@@ -138,7 +143,7 @@ public function asyncQueryGet(?array $params = null)
@@ -196,6 +278,10 @@ public function asyncQueryStop(?array $params = null)
196
278
* format?: string, // a short version of the Accept header, e.g. json, yaml
197
279
* delimiter?: string, // The character to use between values within a CSV row. Only valid for the csv format.
198
280
* 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.
199
285
* pretty?: bool, // Pretty format the returned JSON response. (DEFAULT: false)
200
286
* human?: bool, // Return human readable values for statistics. (DEFAULT: true)
201
287
* error_trace?: bool, // Include the stack trace of returned errors. (DEFAULT: false)
@@ -217,7 +303,7 @@ public function query(?array $params = null)
0 commit comments