From 78557bef982bbbe8833fdb4e4e2bfb14bdbfaecd Mon Sep 17 00:00:00 2001 From: "Daniel (dB.) Doubrovkine" Date: Wed, 3 Jul 2024 09:43:35 -0400 Subject: [PATCH] Fix: expand_wildcards in _refresh API. (#7620) Signed-off-by: dblock Signed-off-by: leanne.laceybyrne@eliatra.com --- _api-reference/index-apis/refresh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_api-reference/index-apis/refresh.md b/_api-reference/index-apis/refresh.md index b72a6c7470..4d75060087 100644 --- a/_api-reference/index-apis/refresh.md +++ b/_api-reference/index-apis/refresh.md @@ -45,7 +45,7 @@ The following table lists the available query parameters. All query parameters a | :--- | :--- | :--- | | `ignore_unavailable` | Boolean | When `false`, the request returns an error when it targets a missing or closed index. Default is `false`. | `allow_no_indices` | Boolean | When `false`, the Refresh Index API returns an error when a wildcard expression, index alias, or `_all` targets only closed or missing indexes, even when the request is made against open indexes. Default is `true`. | -| `expand_wildcard` | String | The type of index that the wildcard patterns can match. If the request targets data streams, this argument determines whether the wildcard expressions match any hidden data streams. Supports comma-separated values, such as `open,hidden`. Valid values are `all`, `open`, `closed`, `hidden`, and `none`. +| `expand_wildcards` | String | The type of index that the wildcard patterns can match. If the request targets data streams, this argument determines whether the wildcard expressions match any hidden data streams. Supports comma-separated values, such as `open,hidden`. Valid values are `all`, `open`, `closed`, `hidden`, and `none`.