Skip to content

Commit

Permalink
Remove deprecated local parameter from alias APIs (#3059)
Browse files Browse the repository at this point in the history
  • Loading branch information
PeteGillinElastic authored Nov 5, 2024
1 parent 67f118c commit 30a4739
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 157 deletions.
38 changes: 0 additions & 38 deletions output/openapi/elasticsearch-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 0 additions & 38 deletions output/openapi/elasticsearch-serverless-openapi.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 2 additions & 28 deletions output/schema/schema-serverless.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 2 additions & 28 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion output/schema/validation-errors.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions specification/_json_spec/cat.aliases.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@
"type": "string",
"description": "a short version of the Accept header, e.g. json, yaml"
},
"local": {
"type": "boolean",
"description": "Return local information, do not retrieve the state from master node (default: false)"
},
"h": {
"type": "list",
"description": "Comma-separated list of column names to display"
Expand Down
4 changes: 0 additions & 4 deletions specification/_json_spec/indices.exists_alias.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@
"options": ["open", "closed", "hidden", "none", "all"],
"default": "all",
"description": "Whether to expand wildcard expression to concrete indices that are open, closed or both."
},
"local": {
"type": "boolean",
"description": "Return local information, do not retrieve the state from master node (default: false)"
}
}
}
Expand Down
4 changes: 0 additions & 4 deletions specification/_json_spec/indices.get_alias.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,6 @@
"options": ["open", "closed", "hidden", "none", "all"],
"default": "all",
"description": "Whether to expand wildcard expression to concrete indices that are open, closed or both."
},
"local": {
"type": "boolean",
"description": "Return local information, do not retrieve the state from master node (default: false)"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,5 @@ export interface Request extends RequestBase {
* @server_default false
*/
ignore_unavailable?: boolean
/**
* If `true`, the request retrieves information from the local node only.
* @server_default false
*/
local?: boolean
}
}
5 changes: 0 additions & 5 deletions specification/indices/get_alias/IndicesGetAliasRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,5 @@ export interface Request extends RequestBase {
* @server_default false
*/
ignore_unavailable?: boolean
/**
* If `true`, the request retrieves information from the local node only.
* @server_default false
*/
local?: boolean
}
}

0 comments on commit 30a4739

Please sign in to comment.