Skip to content

Commit f095dbc

Browse files
committed
[API] Changes stability in tasks
1 parent a3e87a4 commit f095dbc

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

elasticsearch-api/lib/elasticsearch/api/actions/tasks/cancel.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ module API
2020
module Tasks
2121
module Actions
2222
# Cancels a task, if it can be cancelled through an API.
23+
# This functionality is Experimental and may be changed or removed
24+
# completely in a future release. Elastic will take a best effort approach
25+
# to fix any issues, but experimental features are not subject to the
26+
# support SLA of official GA features.
2327
#
2428
# @option arguments [String] :task_id Cancel the task with specified task id (node_id:task_number)
2529
# @option arguments [List] :nodes A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes

elasticsearch-api/lib/elasticsearch/api/actions/tasks/get.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ module API
2020
module Tasks
2121
module Actions
2222
# Returns information about a task.
23+
# This functionality is Experimental and may be changed or removed
24+
# completely in a future release. Elastic will take a best effort approach
25+
# to fix any issues, but experimental features are not subject to the
26+
# support SLA of official GA features.
2327
#
2428
# @option arguments [String] :task_id Return the task with specified id (node_id:task_number)
2529
# @option arguments [Boolean] :wait_for_completion Wait for the matching tasks to complete (default: false)

elasticsearch-api/lib/elasticsearch/api/actions/tasks/list.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ module API
2020
module Tasks
2121
module Actions
2222
# Returns a list of tasks.
23+
# This functionality is Experimental and may be changed or removed
24+
# completely in a future release. Elastic will take a best effort approach
25+
# to fix any issues, but experimental features are not subject to the
26+
# support SLA of official GA features.
2327
#
2428
# @option arguments [List] :nodes A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
2529
# @option arguments [List] :actions A comma-separated list of actions that should be returned. Leave empty to return all.

0 commit comments

Comments
 (0)