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: docs/reference/api-reference.md
+13-2Lines changed: 13 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2852,6 +2852,16 @@ local cluster state. If `false` the list of selected nodes are computed
2852
2852
from the cluster state of the master node. In both cases the coordinating
2853
2853
node will send requests for further information to each selected node.
2854
2854
- **`master_timeout` (Optional, string \| -1 \| 0)**: Period to wait for a connection to the master node.
2855
+
- **`expand_wildcards` (Optional, Enum("all" \| "open" \| "closed" \| "hidden" \| "none") \| Enum("all" \| "open" \| "closed" \| "hidden" \| "none")[])**: Type of index that wildcard expressions can match. If the request can target data streams, this argument
2856
+
determines whether wildcard expressions match hidden data streams. Supports a list of values,
2857
+
such as open,hidden.
2858
+
- **`allow_no_indices` (Optional, boolean)**: If false, the request returns an error if any wildcard expression, index alias, or _all value targets only
2859
+
missing or closed indices. This behavior applies even if the request targets other open indices. For example,
2860
+
a request targeting foo*,bar* returns an error if an index starts with foo but no index starts with bar.
2861
+
- **`ignore_throttled` (Optional, boolean)**: If true, concrete, expanded or aliased indices are ignored when frozen.
2862
+
- **`ignore_unavailable` (Optional, boolean)**: If true, missing or closed indices are not included in the response.
2863
+
- **`allow_closed` (Optional, boolean)**: If true, allow closed indices to be returned in the response otherwise if false, keep the legacy behaviour
2864
+
of throwing an exception if index pattern matches closed indices
2855
2865
2856
2866
## client.cat.shards [_cat.shards]
2857
2867
Get shard information.
@@ -6499,7 +6509,7 @@ To target all data streams use `*` or `_all`.
6499
6509
- **`data_retention` (Optional, string \| -1 \| 0)**: If defined, every document added to this data stream will be stored at least for this time frame.
6500
6510
Any time after this duration the document could be deleted.
6501
6511
When empty, every document in this data stream will be stored indefinitely.
6502
-
- **`downsampling` (Optional, { rounds })**: The downsampling configuration to execute for the managed backing index after rollover.
6512
+
- **`downsampling` (Optional, { after, config }[])**: The downsampling configuration to execute for the managed backing index after rollover.
6503
6513
- **`enabled` (Optional, boolean)**: If defined, it turns data stream lifecycle on/off (`true`/`false`) for this data stream. A data stream lifecycle
6504
6514
that's disabled (enabled: `false`) will have no effect on the data stream.
6505
6515
- **`expand_wildcards` (Optional, Enum("all" \| "open" \| "closed" \| "hidden" \| "none") \| Enum("all" \| "open" \| "closed" \| "hidden" \| "none")[])**: Type of data stream that wildcard patterns can match.
@@ -12868,7 +12878,8 @@ It must not be negative.
12868
12878
By default, you cannot page through more than 10,000 hits using the `from` and `size` parameters.
12869
12879
To page through more hits, use the `search_after` parameter.
0 commit comments