Skip to content

Commit df3321d

Browse files
committed
Reflect JSON spec changes
1 parent a68989f commit df3321d

File tree

7 files changed

+34
-10
lines changed

7 files changed

+34
-10
lines changed

output/openapi/elasticsearch-openapi.json

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema-serverless.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/schema.json

Lines changed: 15 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

output/schema/validation-errors.json

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,12 +115,6 @@
115115
],
116116
"response": []
117117
},
118-
"ilm.migrate_to_data_tiers": {
119-
"request": [
120-
"Request: missing json spec query parameter 'master_timeout'"
121-
],
122-
"response": []
123-
},
124118
"index": {
125119
"request": [
126120
"Request: missing json spec query parameter 'require_data_stream'"

output/typescript/types.ts

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specification/eql/search/EqlSearchRequest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export interface Request extends RequestBase {
5252
allow_no_indices?: boolean
5353
/**
5454
* If true, returns partial results if there are shard failures. If false, returns an error with no partial results.
55-
* @server_default false
55+
* @server_default true
5656
*/
5757
allow_partial_search_results?: boolean
5858
/**

specification/ilm/migrate_to_data_tiers/Request.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
*/
1919

2020
import { RequestBase } from '@_types/Base'
21+
import { Duration } from '@_types/Time'
2122

2223
/**
2324
* Migrate to data tiers routing.
@@ -53,6 +54,11 @@ export interface Request extends RequestBase {
5354
* @server_default false
5455
*/
5556
dry_run?: boolean
57+
/**
58+
* Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error.
59+
* @server_default 30s
60+
*/
61+
master_timeout?: Duration
5662
}
5763
body: {
5864
legacy_template_to_delete?: string

0 commit comments

Comments
 (0)