From 4eaa366a067596d35cd02ec99b3e732d5feb35a2 Mon Sep 17 00:00:00 2001 From: Fernando Briano Date: Thu, 18 Sep 2025 16:04:11 +0100 Subject: [PATCH] [API] Updates streams namespaces source code documentation --- .../elasticsearch/api/actions/streams/logs_disable.rb | 4 ++-- .../elasticsearch/api/actions/streams/logs_enable.rb | 10 +++++----- .../lib/elasticsearch/api/actions/streams/status.rb | 4 ++-- elasticsearch-api/lib/elasticsearch/api/version.rb | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/streams/logs_disable.rb b/elasticsearch-api/lib/elasticsearch/api/actions/streams/logs_disable.rb index 2166137c4..ebac898c2 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/streams/logs_disable.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/streams/logs_disable.rb @@ -22,8 +22,8 @@ module Elasticsearch module API module Streams module Actions - # Disable logs stream - # This disables the logs stream feature for this cluster. + # Disable logs stream. + # Turn off the logs stream feature for this cluster. # This functionality is Experimental and may be changed or removed # completely in a future release. Elastic will take a best effort approach # to fix any issues, but experimental features are not subject to the diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/streams/logs_enable.rb b/elasticsearch-api/lib/elasticsearch/api/actions/streams/logs_enable.rb index 8fe9cb887..569560de9 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/streams/logs_enable.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/streams/logs_enable.rb @@ -22,11 +22,11 @@ module Elasticsearch module API module Streams module Actions - # Enable logs stream - # This enables the logs stream feature for this cluster. - # Note: To protect existing data, this feature can only be enabled on a cluster if - # it does not have existing indices or data streams matching the pattern `logs|logs.*`. - # If this is the case, a `409 - Conflict` response and error will be returned. + # Enable logs stream. + # Turn on the logs stream feature for this cluster. + # NOTE: To protect existing data, this feature can be turned on only if the + # cluster does not have existing indices or data streams that match the pattern `logs|logs.*`. + # If those indices or data streams exist, a `409 - Conflict` response and error is returned. # This functionality is Experimental and may be changed or removed # completely in a future release. Elastic will take a best effort approach # to fix any issues, but experimental features are not subject to the diff --git a/elasticsearch-api/lib/elasticsearch/api/actions/streams/status.rb b/elasticsearch-api/lib/elasticsearch/api/actions/streams/status.rb index 60b69d08a..2783e78d5 100644 --- a/elasticsearch-api/lib/elasticsearch/api/actions/streams/status.rb +++ b/elasticsearch-api/lib/elasticsearch/api/actions/streams/status.rb @@ -22,8 +22,8 @@ module Elasticsearch module API module Streams module Actions - # Get the status of streams - # Gets the current status of all stream types + # Get the status of streams. + # Get the current status for all types of streams. # This functionality is Experimental and may be changed or removed # completely in a future release. Elastic will take a best effort approach # to fix any issues, but experimental features are not subject to the diff --git a/elasticsearch-api/lib/elasticsearch/api/version.rb b/elasticsearch-api/lib/elasticsearch/api/version.rb index b7fc422b6..3ed7d0c34 100644 --- a/elasticsearch-api/lib/elasticsearch/api/version.rb +++ b/elasticsearch-api/lib/elasticsearch/api/version.rb @@ -18,6 +18,6 @@ module Elasticsearch module API VERSION = '9.2.0'.freeze - ES_SPECIFICATION_COMMIT = 'e22c10134264a91aca0f736153460a3e988c27b5'.freeze + ES_SPECIFICATION_COMMIT = '06148858372b097641efbe3b712259eee63b8e11'.freeze end end