Skip to content

Commit 5aedcdc

Browse files
authored
Merge branch 'main' into doc-tag
2 parents a3b903c + df2dbc1 commit 5aedcdc

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

.github/download-artifacts/index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,9 @@ async function downloadArtifacts (opts) {
9595
}
9696

9797
async function resolve (branch) {
98+
if (branch == 'main') {
99+
branch = 'master'
100+
}
98101
const url = `https://artifacts-snapshot.elastic.co/elasticsearch/latest/${branch}.json`
99102
const response = await fetch(url)
100103
if (!response.ok) {

output/openapi/elasticsearch-openapi.json

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

output/schema/schema.json

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

output/typescript/types.ts

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

specification/_json_spec/cluster.stats.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
]
2929
},
3030
"params": {
31-
"flat_settings": {
31+
"include_remotes": {
3232
"type": "boolean",
33-
"description": "Return settings in flat format (default: false)"
33+
"description": "Include remote cluster data into the response (default: false)"
3434
},
3535
"timeout": {
3636
"type": "time",

specification/cluster/stats/ClusterStatsRequest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ export interface Request extends RequestBase {
3737
}
3838
query_parameters: {
3939
/**
40-
* If `true`, returns settings in flat format.
40+
* Include remote cluster data into the response
4141
* @server_default false
4242
*/
43-
flat_settings?: boolean
43+
include_remotes?: boolean
4444
/**
4545
* Period to wait for each node to respond.
4646
* If a node does not respond before its timeout expires, the response does not include its stats.

0 commit comments

Comments
 (0)