Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions specification/_global/msearch/MultiSearchRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ export interface Request extends RequestBase {
ccs_minimize_roundtrips?: boolean
/**
* Type of index that wildcard expressions can match. If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams.
* @server_default open
*/
expand_wildcards?: ExpandWildcards
/**
Expand Down
3 changes: 3 additions & 0 deletions specification/_global/rank_eval/RankEvalRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@ export interface Request extends RequestBase {
* @server_default true
*/
allow_no_indices?: boolean
/**
* @server_default open
*/
expand_wildcards?: ExpandWildcards
/**
* If `true`, missing or closed indices are not included in the response.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ export interface Request extends RequestBase {
* The 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
*/
expand_wildcards?: ExpandWildcards
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ export interface Request extends RequestBase {
* The 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.
* It supports comma-separated values, such as `open,hidden`.
* @server_default open
*/
expand_wildcards?: ExpandWildcards
/**
Expand Down
3 changes: 3 additions & 0 deletions specification/async_search/submit/AsyncSearchSubmitRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,9 @@ export interface Request extends RequestBase {
default_operator?: Operator
df?: string
docvalue_fields?: Fields
/**
* @server_default open
*/
expand_wildcards?: ExpandWildcards
explain?: boolean
ignore_throttled?: boolean
Expand Down
1 change: 1 addition & 0 deletions specification/cat/aliases/CatAliasesRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ export interface Request extends CatRequestBase {
* The 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.
* It supports comma-separated values, such as `open,hidden`.
* @server_default all
*/
expand_wildcards?: ExpandWildcards
/**
Expand Down
1 change: 1 addition & 0 deletions specification/cat/indices/CatIndicesRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ export interface Request extends CatRequestBase {
query_parameters: {
/**
* The type of index that wildcard patterns can match.
* @server_default all
*/
expand_wildcards?: ExpandWildcards
/** The health status used to limit returned indices. By default, the response includes indices of any health status. */
Expand Down
3 changes: 3 additions & 0 deletions specification/cluster/health/ClusterHealthRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ export interface Request extends RequestBase {
index?: Indices
}
query_parameters: {
/**
* @server_default all
*/
expand_wildcards?: ExpandWildcards
/**
* Can be one of cluster, indices or shards. Controls the details level of the health information returned.
Expand Down
1 change: 1 addition & 0 deletions specification/cluster/state/ClusterStateRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ export interface Request extends RequestBase {
query_parameters: {
/** @server_default true */
allow_no_indices?: boolean
/** @server_default open */
expand_wildcards?: ExpandWildcards
/** @server_default false */
flat_settings?: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export interface Request extends RequestBase {
/**
* Type of data stream that wildcard patterns can match.
* Supports comma-separated values, such as `open,hidden`.
* @server_default open
* @server_default open,closed
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

*/
expand_wildcards?: ExpandWildcards
}
Expand Down
2 changes: 1 addition & 1 deletion specification/indices/delete/IndicesDeleteRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

*/
expand_wildcards?: ExpandWildcards
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ export interface Request extends RequestBase {
name: DataStreamNames
}
query_parameters: {
/**
* @server_default open
*/
expand_wildcards?: ExpandWildcards
/**
* @server_default 30s
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ export interface Request extends RequestBase {
name: DataStreamNames
}
query_parameters: {
/**
* @server_default open
*/
expand_wildcards?: ExpandWildcards
/**
* @server_default 30s
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member Author

*/
expand_wildcards?: ExpandWildcards
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,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
*/
expand_wildcards?: ExpandWildcards
/**
Expand Down
3 changes: 3 additions & 0 deletions specification/indices/forcemerge/IndicesForceMergeRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ export interface Request extends RequestBase {
}
query_parameters: {
allow_no_indices?: boolean
/**
* @server_default open
*/
expand_wildcards?: ExpandWildcards
flush?: boolean
ignore_unavailable?: boolean
Expand Down
2 changes: 1 addition & 1 deletion specification/indices/get_alias/IndicesGetAliasRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same as indices.exist_alias above

*/
expand_wildcards?: ExpandWildcards
/**
Expand Down
2 changes: 1 addition & 1 deletion specification/indices/open/IndicesOpenRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member Author

*/
expand_wildcards?: ExpandWildcards
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ export interface Request extends RequestBase {
}
query_parameters: {
allow_no_indices?: boolean
/** @server_default open */
expand_wildcards?: ExpandWildcards
ignore_unavailable?: boolean
/**
Expand Down
1 change: 1 addition & 0 deletions specification/indices/stats/IndicesStatsRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,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
*/
expand_wildcards?: ExpandWildcards
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export interface Request extends RequestBase {
index?: Indices
}
query_parameters: {
/** @server_default open */
expand_wildcards?: ExpandWildcards
allow_no_indices?: boolean
ignore_unavailable?: boolean
Expand Down