Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,7 @@ export interface Request extends RequestBase {
slices?: Slices
/**
* A comma-separated list of `<field>:<direction>` pairs.
* @deprecated 9.0.0 This query parameter is not supported and will be removed in a future version
*/
sort?: string[]
/**
Expand Down
1 change: 1 addition & 0 deletions specification/_global/msearch/MultiSearchRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export interface Request extends RequestBase {
expand_wildcards?: ExpandWildcards
/**
* If true, concrete, expanded or aliased indices are ignored when frozen.
* @deprecated 7.16.0 This parameter is deprecated because frozen indices have been deprecated.
* @server_default false
*/
ignore_throttled?: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export interface Request extends RequestBase {
/**
* If true, the request retrieves information from the local node only.
* Defaults to false, which means information is retrieved from the master node.
* @deprecated 9.0.0 This parameter has no effect, is now deprecated, and will be removed in a future version.
* @server_default false
*/
local?: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export interface Request extends RequestBase {
/**
* If `true`, the request retrieves information from the local node only.
* If `false`, information is retrieved from the master node.
* @deprecated 9.0.0 This parameter has no effect, is now deprecated, and will be removed in a future version.
* @server_default false
*/
local?: boolean
Expand Down
10 changes: 8 additions & 2 deletions specification/cluster/state/ClusterStateRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,15 @@ export interface Request extends RequestBase {
flat_settings?: boolean
/** @server_default false */
ignore_unavailable?: boolean
/** @server_default false */
/**
* @deprecated 9.0.0 This parameter has no effect, is now deprecated, and will be removed in a future version.
* @server_default false
*/
local?: boolean
/** @server_default 30s */
/**
* Timeout for waiting for new cluster state in case it is blocked
* @server_default 30s
* */
master_timeout?: Duration
wait_for_metadata_version?: VersionNumber
wait_for_timeout?: Duration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export interface Request extends RequestBase {
flat_settings?: boolean
/**
* Indicates whether to get information from the local node only.
* @deprecated 9.0.0 This parameter has no effect, is now deprecated, and will be removed in a future version.
* @server_default false
*/
local?: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export interface Request extends RequestBase {
query_parameters: {
/**
* If true, the request retrieves information from the local node only. Defaults to false, which means information is retrieved from the master node.
* @deprecated 9.0.0 This parameter has no effect, is now deprecated, and will be removed in a future version.
* @server_default false
*/
local?: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ export interface Request extends RequestBase {
/**
* If `true`, the request retrieves information from the local node only. If
* `false`, information is retrieved from the master node.
* @deprecated 9.1.0 This parameter is a no-op and settings are always retrieved locally.
* @server_default false
*/
local?: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ export interface Request extends RequestBase {
flat_settings?: boolean
/**
* If `true`, the request retrieves information from the local node only.
* @deprecated 9.0.0 This parameter is a no-op and templates are always retrieved locally.
* @server_default false
*/
local?: boolean
Expand Down
3 changes: 3 additions & 0 deletions specification/xpack/info/XPackInfoRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ export interface Request extends RequestBase {
* For example, `build,license,features`.
*/
categories?: XPackCategory[]
/**
* @deprecated 8.0.0 Supported for backwards compatibility with 7.x
*/
accept_enterprise?: boolean
/**
* Defines whether additional human-readable information is included in the response.
Expand Down