Skip to content

Commit 1c3aea4

Browse files
committed
Add missing index parameter to _cat/recovery (#3811)
1 parent 19bb9bf commit 1c3aea4

File tree

4 files changed

+33
-2
lines changed

4 files changed

+33
-2
lines changed

output/openapi/elasticsearch-openapi.json

+16
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

+13-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

-1
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@
118118
},
119119
"cat.recovery": {
120120
"request": [
121-
"Request: missing json spec query parameter 'index'",
122121
"request definition cat.recovery:Request / body - A request with inherited properties must have a PropertyBody"
123122
],
124123
"response": []

specification/cat/recovery/CatRecoveryRequest.ts

+4
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ export interface Request extends CatRequestBase {
6868
* @server_default false
6969
*/
7070
detailed?: boolean
71+
/**
72+
* Comma-separated list or wildcard expression of index names to limit the returned information
73+
*/
74+
index?: Indices
7175
/**
7276
* List of columns to appear in the response. Supports simple wildcards.
7377
*/

0 commit comments

Comments
 (0)