Skip to content

Commit 2e65bca

Browse files
authored
Add missing query parameters to eql.search rest-api-spec (#130719) (#131266)
1 parent 46f9f5c commit 2e65bca

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

rest-api-spec/src/main/resources/rest-api-spec/api/eql.search.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,31 @@
5151
"type":"boolean",
5252
"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.",
5353
"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."
5479
}
5580
},
5681
"body":{

0 commit comments

Comments
 (0)