-
Notifications
You must be signed in to change notification settings - Fork 115
Fix expand_wildcards default values #5599
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -62,7 +62,7 @@ export interface Request extends RequestBase { | |
| * Type of index that wildcard patterns can match. | ||
| * If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. | ||
| * Supports comma-separated values, such as `open,hidden`. | ||
| * @server_default open | ||
| * @server_default open,closed | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| */ | ||
| expand_wildcards?: ExpandWildcards | ||
| /** | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -63,7 +63,7 @@ export interface Request extends RequestBase { | |
| * Type of index that wildcard patterns can match. | ||
| * If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. | ||
| * Supports comma-separated values, such as `open,hidden`. | ||
| * @server_default open | ||
| * @server_default all | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| */ | ||
| expand_wildcards?: ExpandWildcards | ||
| /** | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -74,7 +74,7 @@ export interface Request extends RequestBase { | |
| * Type of index that wildcard patterns can match. | ||
| * If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. | ||
| * Supports comma-separated values, such as `open,hidden`. | ||
| * @server_default open | ||
| * @server_default all | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same as indices.exist_alias above |
||
| */ | ||
| expand_wildcards?: ExpandWildcards | ||
| /** | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -80,7 +80,7 @@ export interface Request extends RequestBase { | |
| * Type of index that wildcard patterns can match. | ||
| * If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams. | ||
| * Supports comma-separated values, such as `open,hidden`. | ||
| * @server_default open | ||
| * @server_default closed | ||
|
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| */ | ||
| expand_wildcards?: ExpandWildcards | ||
| /** | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/elastic/elasticsearch/blob/e1c852bed7a4b13b139d5d4b1d63cd12b15c37d2/server/src/main/java/org/elasticsearch/action/datastreams/DataStreamsStatsAction.java#L46-L52