Skip to content

Commit d276837

Browse files
elasticmachinepicandocodigo
authored andcommitted
Auto-generated API code
1 parent e6dff40 commit d276837

File tree

436 files changed

+437
-437
lines changed

Some content is hidden

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

436 files changed

+437
-437
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
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [String] :id The async search ID
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
#
30-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
30+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/async-search.html
3131
#
3232
def delete(arguments = {})
3333
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module Actions
3030
# @option arguments [Boolean] :typed_keys Specify whether aggregation and suggester names should be prefixed by their respective types in the response
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/async-search.html
3434
#
3535
def get(arguments = {})
3636
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [String] :id The async search ID
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
#
30-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
30+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/async-search.html
3131
#
3232
def status(arguments = {})
3333
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ module Actions
6969
# @option arguments [Hash] :headers Custom HTTP headers
7070
# @option arguments [Hash] :body The search definition using the Query DSL
7171
#
72-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
72+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/async-search.html
7373
#
7474
def submit(arguments = {})
7575
arguments = arguments.clone

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
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [String] :name the name of the autoscaling policy
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
#
30-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-delete-autoscaling-policy.html
30+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/autoscaling-delete-autoscaling-policy.html
3131
#
3232
def delete_autoscaling_policy(arguments = {})
3333
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

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
@@ -26,7 +26,7 @@ module Actions
2626
#
2727
# @option arguments [Hash] :headers Custom HTTP headers
2828
#
29-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-get-autoscaling-capacity.html
29+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/autoscaling-get-autoscaling-capacity.html
3030
#
3131
def get_autoscaling_capacity(arguments = {})
3232
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [String] :name the name of the autoscaling policy
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
#
30-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-get-autoscaling-policy.html
30+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/autoscaling-get-autoscaling-policy.html
3131
#
3232
def get_autoscaling_policy(arguments = {})
3333
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

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
@@ -28,7 +28,7 @@ module Actions
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
# @option arguments [Hash] :body the specification of the autoscaling policy (*Required*)
3030
#
31-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-put-autoscaling-policy.html
31+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/autoscaling-put-autoscaling-policy.html
3232
#
3333
def put_autoscaling_policy(arguments = {})
3434
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ module Actions
3838
# @option arguments [String|Array] :body The operation definition and data (action-data pairs), separated by newlines. Array of Strings, Header/Data pairs,
3939
# or the conveniency "combined" format can be passed, refer to Elasticsearch::API::Utils.__bulkify documentation.
4040
#
41-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html
41+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/docs-bulk.html
4242
#
4343
def bulk(arguments = {})
4444
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module Actions
3434
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, hidden, none, all)
3535
# @option arguments [Hash] :headers Custom HTTP headers
3636
#
37-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-alias.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-alias.html
3838
#
3939
def aliases(arguments = {})
4040
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module Actions
3535
# @option arguments [Boolean] :v Verbose mode. Display column headers
3636
# @option arguments [Hash] :headers Custom HTTP headers
3737
#
38-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-allocation.html
38+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-allocation.html
3939
#
4040
def allocation(arguments = {})
4141
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module Actions
3434
# @option arguments [Boolean] :v Verbose mode. Display column headers
3535
# @option arguments [Hash] :headers Custom HTTP headers
3636
#
37-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-component-templates.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-component-templates.html
3838
#
3939
def component_templates(arguments = {})
4040
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# @option arguments [Boolean] :v Verbose mode. Display column headers
3333
# @option arguments [Hash] :headers Custom HTTP headers
3434
#
35-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-count.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-count.html
3636
#
3737
def count(arguments = {})
3838
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module Actions
3333
# @option arguments [Boolean] :v Verbose mode. Display column headers
3434
# @option arguments [Hash] :headers Custom HTTP headers
3535
#
36-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-fielddata.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-fielddata.html
3737
#
3838
def fielddata(arguments = {})
3939
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module Actions
3333
# @option arguments [Boolean] :v Verbose mode. Display column headers
3434
# @option arguments [Hash] :headers Custom HTTP headers
3535
#
36-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-health.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-health.html
3737
#
3838
def health(arguments = {})
3939
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module Actions
2828
# @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
2929
# @option arguments [Hash] :headers Custom HTTP headers
3030
#
31-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat.html
31+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat.html
3232
#
3333
def help(arguments = {})
3434
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module Actions
3939
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, hidden, none, all)
4040
# @option arguments [Hash] :headers Custom HTTP headers
4141
#
42-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-indices.html
42+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-indices.html
4343
#
4444
def indices(arguments = {})
4545
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module Actions
3333
# @option arguments [Boolean] :v Verbose mode. Display column headers
3434
# @option arguments [Hash] :headers Custom HTTP headers
3535
#
36-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-master.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-master.html
3737
#
3838
def master(arguments = {})
3939
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module Actions
3535
# @option arguments [Boolean] :v Verbose mode. Display column headers
3636
# @option arguments [Hash] :headers Custom HTTP headers
3737
#
38-
# @see http://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html
38+
# @see http://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-dfanalytics.html
3939
#
4040
def ml_data_frame_analytics(arguments = {})
4141
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module Actions
3434
# @option arguments [Boolean] :v Verbose mode. Display column headers
3535
# @option arguments [Hash] :headers Custom HTTP headers
3636
#
37-
# @see http://www.elastic.co/guide/en/elasticsearch/reference/current/cat-datafeeds.html
37+
# @see http://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-datafeeds.html
3838
#
3939
def ml_datafeeds(arguments = {})
4040
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module Actions
3535
# @option arguments [Boolean] :v Verbose mode. Display column headers
3636
# @option arguments [Hash] :headers Custom HTTP headers
3737
#
38-
# @see http://www.elastic.co/guide/en/elasticsearch/reference/current/cat-anomaly-detectors.html
38+
# @see http://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-anomaly-detectors.html
3939
#
4040
def ml_jobs(arguments = {})
4141
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module Actions
3737
# @option arguments [Boolean] :v Verbose mode. Display column headers
3838
# @option arguments [Hash] :headers Custom HTTP headers
3939
#
40-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-trained-model.html
40+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-trained-model.html
4141
#
4242
def ml_trained_models(arguments = {})
4343
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module Actions
3333
# @option arguments [Boolean] :v Verbose mode. Display column headers
3434
# @option arguments [Hash] :headers Custom HTTP headers
3535
#
36-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-nodeattrs.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-nodeattrs.html
3737
#
3838
def nodeattrs(arguments = {})
3939
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module Actions
3636
# @option arguments [Boolean] :include_unloaded_segments If set to true segment stats will include stats for segments that are not currently loaded into memory
3737
# @option arguments [Hash] :headers Custom HTTP headers
3838
#
39-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-nodes.html
39+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-nodes.html
4040
#
4141
def nodes(arguments = {})
4242
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module Actions
3434
# @option arguments [Boolean] :v Verbose mode. Display column headers
3535
# @option arguments [Hash] :headers Custom HTTP headers
3636
#
37-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-pending-tasks.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-pending-tasks.html
3838
#
3939
def pending_tasks(arguments = {})
4040
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module Actions
3434
# @option arguments [Boolean] :v Verbose mode. Display column headers
3535
# @option arguments [Hash] :headers Custom HTTP headers
3636
#
37-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-plugins.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-plugins.html
3838
#
3939
def plugins(arguments = {})
4040
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module Actions
3636
# @option arguments [Boolean] :v Verbose mode. Display column headers
3737
# @option arguments [Hash] :headers Custom HTTP headers
3838
#
39-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-recovery.html
39+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-recovery.html
4040
#
4141
def recovery(arguments = {})
4242
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module Actions
3333
# @option arguments [Boolean] :v Verbose mode. Display column headers
3434
# @option arguments [Hash] :headers Custom HTTP headers
3535
#
36-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-repositories.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-repositories.html
3737
#
3838
def repositories(arguments = {})
3939
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module Actions
3333
# @option arguments [Boolean] :v Verbose mode. Display column headers
3434
# @option arguments [Hash] :headers Custom HTTP headers
3535
#
36-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-segments.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-segments.html
3737
#
3838
def segments(arguments = {})
3939
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module Actions
3535
# @option arguments [Boolean] :v Verbose mode. Display column headers
3636
# @option arguments [Hash] :headers Custom HTTP headers
3737
#
38-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-shards.html
38+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-shards.html
3939
#
4040
def shards(arguments = {})
4141
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module Actions
3535
# @option arguments [Boolean] :v Verbose mode. Display column headers
3636
# @option arguments [Hash] :headers Custom HTTP headers
3737
#
38-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-snapshots.html
38+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-snapshots.html
3939
#
4040
def snapshots(arguments = {})
4141
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module Actions
4040
# @option arguments [Boolean] :v Verbose mode. Display column headers
4141
# @option arguments [Hash] :headers Custom HTTP headers
4242
#
43-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/tasks.html
43+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/tasks.html
4444
#
4545
def tasks(arguments = {})
4646
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ module Actions
3434
# @option arguments [Boolean] :v Verbose mode. Display column headers
3535
# @option arguments [Hash] :headers Custom HTTP headers
3636
#
37-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-templates.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-templates.html
3838
#
3939
def templates(arguments = {})
4040
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module Actions
3636
# @option arguments [Boolean] :v Verbose mode. Display column headers
3737
# @option arguments [Hash] :headers Custom HTTP headers
3838
#
39-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-thread-pool.html
39+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-thread-pool.html
4040
#
4141
def thread_pool(arguments = {})
4242
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module Actions
3636
# @option arguments [Boolean] :v Verbose mode. Display column headers
3737
# @option arguments [Hash] :headers Custom HTTP headers
3838
#
39-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-transforms.html
39+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-transforms.html
4040
#
4141
def transforms(arguments = {})
4242
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# Deprecated since version 7.0.0
3333
#
3434
#
35-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/clear-scroll-api.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/clear-scroll-api.html
3636
#
3737
def clear_scroll(arguments = {})
3838
arguments = arguments.clone

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module Actions
2626
# @option arguments [Hash] :headers Custom HTTP headers
2727
# @option arguments [Hash] :body a point-in-time id to close
2828
#
29-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/point-in-time-api.html
29+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/point-in-time-api.html
3030
#
3131
def close_point_in_time(arguments = {})
3232
arguments = arguments.clone

elasticsearch-api/lib/elasticsearch/api/actions/cluster/allocation_explain.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module Actions
2929
# @option arguments [Hash] :headers Custom HTTP headers
3030
# @option arguments [Hash] :body The index, shard, and primary flag to explain. Empty means 'explain a randomly-chosen unassigned shard'
3131
#
32-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-allocation-explain.html
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cluster-allocation-explain.html
3333
#
3434
def allocation_explain(arguments = {})
3535
arguments = arguments.clone

elasticsearch-api/lib/elasticsearch/api/actions/cluster/delete_component_template.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module Actions
2929
# @option arguments [Time] :master_timeout Specify timeout for connection to master
3030
# @option arguments [Hash] :headers Custom HTTP headers
3131
#
32-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-component-template.html
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/indices-component-template.html
3333
#
3434
def delete_component_template(arguments = {})
3535
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

elasticsearch-api/lib/elasticsearch/api/actions/cluster/delete_voting_config_exclusions.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module Actions
2828
# @option arguments [Time] :master_timeout Timeout for submitting request to master
2929
# @option arguments [Hash] :headers Custom HTTP headers
3030
#
31-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/voting-config-exclusions.html
31+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/voting-config-exclusions.html
3232
#
3333
def delete_voting_config_exclusions(arguments = {})
3434
arguments = arguments.clone

0 commit comments

Comments
 (0)