Skip to content

[8.19] [DOCS] Add link for cluster settings (#4491) #4501

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 9, 2025
Merged
Show file tree
Hide file tree
Changes from all 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
11 changes: 11 additions & 0 deletions output/openapi/elasticsearch-openapi.json

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

15 changes: 12 additions & 3 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/_doc_ids/table.csv
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ eql-sequences,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/e
eql-missing-events,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/eql-syntax.html#eql-missing-events
eql-syntax,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/eql-syntax.html
eql,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/eql.html
es-settings,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/settings.html
esql,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/esql.html
esql-async-query,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/esql-async-query-api.html
esql-async-query-delete,https://www.elastic.co/guide/en/elasticsearch/reference/{branch}/esql-async-query-delete-api.html
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { Duration } from '@_types/Time'
* @availability serverless stability=stable visibility=private
* @cluster_privileges monitor
* @doc_id cluster-get-settings
* @ext_doc_id es-settings
*/
export interface Request extends RequestBase {
urls: [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ import { UserDefinedValue } from '@spec_utils/UserDefinedValue'

export class Response {
body: {
/** The settings that persist after the cluster restarts. */
persistent: Dictionary<string, UserDefinedValue>
/** The settings that do not persist after the cluster restarts. */
transient: Dictionary<string, UserDefinedValue>
/** The default setting values. */
defaults?: Dictionary<string, UserDefinedValue>
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ import { UserDefinedValue } from '@spec_utils/UserDefinedValue'
* @availability stack stability=stable
* @availability serverless stability=stable visibility=private
* @doc_id cluster-update-settings
* @ext_doc_id es-settings
*/
export interface Request extends RequestBase {
urls: [
Expand All @@ -62,7 +63,9 @@ export interface Request extends RequestBase {
timeout?: Duration
}
body: {
/** The settings that persist after the cluster restarts. */
persistent?: Dictionary<string, UserDefinedValue>
/** The settings that do not persist after the cluster restarts. */
transient?: Dictionary<string, UserDefinedValue>
}
}