Skip to content

Commit

Permalink
Merge branch 'main' into doc-tag
Browse files Browse the repository at this point in the history
  • Loading branch information
lcawl authored Oct 3, 2024
2 parents a3b903c + df2dbc1 commit 5aedcdc
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
3 changes: 3 additions & 0 deletions .github/download-artifacts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ async function downloadArtifacts (opts) {
}

async function resolve (branch) {
if (branch == 'main') {
branch = 'master'
}
const url = `https://artifacts-snapshot.elastic.co/elasticsearch/latest/${branch}.json`
const response = await fetch(url)
if (!response.ok) {
Expand Down
10 changes: 5 additions & 5 deletions output/openapi/elasticsearch-openapi.json

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

4 changes: 2 additions & 2 deletions output/schema/schema.json

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

2 changes: 1 addition & 1 deletion output/typescript/types.ts

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

4 changes: 2 additions & 2 deletions specification/_json_spec/cluster.stats.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@
]
},
"params": {
"flat_settings": {
"include_remotes": {
"type": "boolean",
"description": "Return settings in flat format (default: false)"
"description": "Include remote cluster data into the response (default: false)"
},
"timeout": {
"type": "time",
Expand Down
4 changes: 2 additions & 2 deletions specification/cluster/stats/ClusterStatsRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ export interface Request extends RequestBase {
}
query_parameters: {
/**
* If `true`, returns settings in flat format.
* Include remote cluster data into the response
* @server_default false
*/
flat_settings?: boolean
include_remotes?: boolean
/**
* Period to wait for each node to respond.
* If a node does not respond before its timeout expires, the response does not include its stats.
Expand Down

0 comments on commit 5aedcdc

Please sign in to comment.