From 11ccfa812a2854fbf502d305a0aaf96d45acbcba Mon Sep 17 00:00:00 2001 From: Quentin Pradet Date: Tue, 4 Nov 2025 14:11:48 +0400 Subject: [PATCH] rest-api-spec: add missing expand_wildcards parameter --- .../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" + ] + } } } }