Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions output/openapi/elasticsearch-openapi.json

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

10 changes: 7 additions & 3 deletions output/openapi/elasticsearch-serverless-openapi.json

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

24 changes: 14 additions & 10 deletions output/schema/schema.json

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

1 change: 1 addition & 0 deletions specification/_global/info/RootNodeInfoRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import { RequestBase } from '@_types/Base'
/**
* Get cluster info.
* Get basic build, version, and cluster information.
* ::: In Serverless, this API is retained for backward compatibility only. Some response fields, such as the version number, do not reflect the actual runtime state.
* @rest_spec_name info
* @availability stack stability=stable
* @availability serverless stability=stable visibility=public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ description: A successful response from `GET /`s.
value:
name: instance-0000000000
cluster_name: my_test_cluster
cluster_uuid: 5QaxoN0pRZuOmWSxstBBwQ
cluster_uuid: zk-HjQtYQGyL3NFSSu7InA
version:
build_date: '2024-02-01T13:07:13.727175297Z'
minimum_wire_compatibility_version: 7.17.0
build_hash: 6185ba65d27469afabc9bc951cded6c17c21e3f3
number: 8.12.1
lucene_version: 9.9.2
minimum_index_compatibility_version: 7.0.0
number: 9.1.0
build_flavor: default
build_snapshot: false
build_type: docker
build_hash: 00000000
build_date: 2025-07-09T22:10:13.578182715Z
build_snapshot: false
lucene_version: 10.2.2
minimum_wire_compatibility_version: 8.19.0
minimum_index_compatibility_version: 8.0.0
tagline: 'You Know, for Search'
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# summary: ''
description: A successful response from `GET /` on Serverless.
# type: response
# response_code: 200
value:
name: serverless
cluster_name: my_test_serverless_cluster
cluster_uuid: 8xx0pi24Squnf4PFDOAtwg
version:
number: 8.11.0
build_flavor: serverless
build_type: docker
build_hash: 00000000
build_date: 2023-10-31
build_snapshot: false
lucene_version: 9.7.0
minimum_wire_compatibility_version: 8.11.0
minimum_index_compatibility_version: 8.11.0
tagline: 'You Know, for Search'
4 changes: 4 additions & 0 deletions specification/_types/Base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ export class ElasticsearchVersionInfo {
minimum_wire_compatibility_version: VersionString
/**
* The Elasticsearch version number.
*
* ::: In Serverless deployments, this value is always `8.11.0`, regardless of the actual runtime version.
* This static value exists for backward compatibility with legacy clients.
* Serverless environments are automatically upgraded, so this value can be safely ignored.
*/
number: string
}
Expand Down