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: rest-api-spec/src/main/resources/rest-api-spec/api/eql.search.json
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -51,6 +51,31 @@
51
51
"type":"boolean",
52
52
"description":"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.",
53
53
"default":false
54
+
},
55
+
"ccs_minimize_roundtrips":{
56
+
"type":"boolean",
57
+
"description":"Indicates whether network round-trips should be minimized as part of cross-cluster search requests execution",
58
+
"default":true
59
+
},
60
+
"ignore_unavailable":{
61
+
"type":"boolean",
62
+
"description":"Whether specified concrete indices should be ignored when unavailable (missing or closed)"
63
+
},
64
+
"allow_no_indices":{
65
+
"type":"boolean",
66
+
"description":"Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)"
67
+
},
68
+
"expand_wildcards":{
69
+
"type":"enum",
70
+
"options":[
71
+
"open",
72
+
"closed",
73
+
"hidden",
74
+
"none",
75
+
"all"
76
+
],
77
+
"default":"open",
78
+
"description":"Whether to expand wildcard expression to concrete indices that are open, closed or both."
0 commit comments