Skip to content

Commit 5d09dfc

Browse files
Auto-generated API code
1 parent 43a1ed2 commit 5d09dfc

File tree

549 files changed

+948
-791
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

549 files changed

+948
-791
lines changed

elasticsearch-api/lib/elasticsearch/api/actions/async_search/delete.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module Elasticsearch
2222
module API
2323
module AsyncSearch
2424
module Actions
25-
# Deletes an async search by ID. If the search is still running, the search request will be cancelled. Otherwise, the saved search results are deleted.
25+
# Delete an async search
2626
#
2727
# @option arguments [String] :id The async search ID
2828
# @option arguments [Hash] :headers Custom HTTP headers

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module Elasticsearch
2222
module API
2323
module AsyncSearch
2424
module Actions
25-
# Retrieves the results of a previously submitted async search request given its ID.
25+
# Get async search results
2626
#
2727
# @option arguments [String] :id The async search ID
2828
# @option arguments [Time] :wait_for_completion_timeout Specify the time that the request should block waiting for the final response

elasticsearch-api/lib/elasticsearch/api/actions/async_search/status.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module Elasticsearch
2222
module API
2323
module AsyncSearch
2424
module Actions
25-
# Retrieves the status of a previously submitted async search request given its ID.
25+
# Get the async search status
2626
#
2727
# @option arguments [String] :id The async search ID
2828
# @option arguments [Time] :keep_alive Specify the time interval in which the results (partial or final) for this search will be available

elasticsearch-api/lib/elasticsearch/api/actions/async_search/submit.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module Elasticsearch
2222
module API
2323
module AsyncSearch
2424
module Actions
25-
# Executes a search request asynchronously.
25+
# Run an async search
2626
#
2727
# @option arguments [List] :index A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices
2828
# @option arguments [Time] :wait_for_completion_timeout Specify the time that the request should block waiting for the final response

elasticsearch-api/lib/elasticsearch/api/actions/autoscaling/delete_autoscaling_policy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module Elasticsearch
2222
module API
2323
module Autoscaling
2424
module Actions
25-
# Deletes an autoscaling policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported.
25+
# Delete an autoscaling policy
2626
#
2727
# @option arguments [String] :name the name of the autoscaling policy
2828
# @option arguments [Time] :master_timeout Timeout for processing on master node

elasticsearch-api/lib/elasticsearch/api/actions/autoscaling/get_autoscaling_capacity.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module Elasticsearch
2222
module API
2323
module Autoscaling
2424
module Actions
25-
# Gets the current autoscaling capacity based on the configured autoscaling policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported.
25+
# Get the autoscaling capacity
2626
#
2727
# @option arguments [Time] :master_timeout Timeout for processing on master node
2828
# @option arguments [Hash] :headers Custom HTTP headers

elasticsearch-api/lib/elasticsearch/api/actions/autoscaling/get_autoscaling_policy.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ module Elasticsearch
2222
module API
2323
module Autoscaling
2424
module Actions
25-
# Retrieves an autoscaling policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported.
25+
# Get an autoscaling policy
2626
#
2727
# @option arguments [String] :name the name of the autoscaling policy
2828
# @option arguments [Time] :master_timeout Timeout for processing on master node
2929
# @option arguments [Hash] :headers Custom HTTP headers
3030
#
31-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.19/autoscaling-get-autoscaling-policy.html
31+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.19/autoscaling-get-autoscaling-capacity.html
3232
#
3333
def get_autoscaling_policy(arguments = {})
3434
request_opts = { endpoint: arguments[:endpoint] || 'autoscaling.get_autoscaling_policy' }

elasticsearch-api/lib/elasticsearch/api/actions/autoscaling/put_autoscaling_policy.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module Elasticsearch
2222
module API
2323
module Autoscaling
2424
module Actions
25-
# Creates a new autoscaling policy. Designed for indirect use by ECE/ESS and ECK. Direct use is not supported.
25+
# Create or update an autoscaling policy
2626
#
2727
# @option arguments [String] :name the name of the autoscaling policy
2828
# @option arguments [Time] :master_timeout Timeout for processing on master node

elasticsearch-api/lib/elasticsearch/api/actions/bulk.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
module Elasticsearch
2222
module API
2323
module Actions
24-
# Allows to perform multiple index/update/delete operations in a single request.
24+
# Bulk index or delete documents
2525
#
2626
# @option arguments [String] :index Default index for items which don't provide one
2727
# @option arguments [String] :wait_for_active_shards Sets the number of shard copies that must be active before proceeding with the bulk operation. Defaults to 1, meaning the primary shard only. Set to `all` for all shard copies, otherwise set to any non-negative value less than or equal to the total number of copies for the shard (number of replicas + 1)

elasticsearch-api/lib/elasticsearch/api/actions/cat/aliases.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module Elasticsearch
2222
module API
2323
module Cat
2424
module Actions
25-
# Shows information about currently configured aliases to indices including filter and routing infos.
25+
# Get aliases
2626
#
2727
# @option arguments [List] :name A comma-separated list of alias names to return
2828
# @option arguments [String] :format a short version of the Accept header, e.g. json, yaml

0 commit comments

Comments
 (0)