From d4c7b072f0771cce427ebb94be364a342d3bdb84 Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Tue, 4 Nov 2025 17:03:57 +0400 Subject: [PATCH] rest-api-spec: add missing expand_wildcards parameter (#137561) --- .../api/indices.data_streams_stats.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/rest-api-spec/src/main/resources/rest-api-spec/api/indices.data_streams_stats.json b/rest-api-spec/src/main/resources/rest-api-spec/api/indices.data_streams_stats.json index 765f82163415a..46b137061f489 100644 --- a/rest-api-spec/src/main/resources/rest-api-spec/api/indices.data_streams_stats.json +++ b/rest-api-spec/src/main/resources/rest-api-spec/api/indices.data_streams_stats.json @@ -32,6 +32,20 @@ } } ] + }, + "params": { + "expand_wildcards": { + "type": "list", + "description": "Whether to expand wildcard expressions to concrete data stream names that are open, closed or both.", + "default": "open,closed", + "options": [ + "all", + "closed", + "hidden", + "none", + "open" + ] + } } } }