Skip to content

Commit 2b5910f

Browse files
committed
[API] Update version in source code docs url
1 parent c663ce9 commit 2b5910f

File tree

403 files changed

+403
-403
lines changed

Some content is hidden

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

403 files changed

+403
-403
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module Actions
2424
# @option arguments [String] :id The async search ID
2525
# @option arguments [Hash] :headers Custom HTTP headers
2626
#
27-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
27+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/async-search.html
2828
#
2929
def delete(arguments = {})
3030
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [Boolean] :typed_keys Specify whether aggregation and suggester names should be prefixed by their respective types in the response
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.2/async-search.html
3131
#
3232
def get(arguments = {})
3333
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module Actions
2424
# @option arguments [String] :id The async search ID
2525
# @option arguments [Hash] :headers Custom HTTP headers
2626
#
27-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
27+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/async-search.html
2828
#
2929
def status(arguments = {})
3030
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ module Actions
6666
# @option arguments [Hash] :headers Custom HTTP headers
6767
# @option arguments [Hash] :body The search definition using the Query DSL
6868
#
69-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
69+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/async-search.html
7070
#
7171
def submit(arguments = {})
7272
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module Actions
2424
# @option arguments [String] :name the name of the autoscaling policy
2525
# @option arguments [Hash] :headers Custom HTTP headers
2626
#
27-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-delete-autoscaling-policy.html
27+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/autoscaling-delete-autoscaling-policy.html
2828
#
2929
def delete_autoscaling_policy(arguments = {})
3030
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module Actions
2323
#
2424
# @option arguments [Hash] :headers Custom HTTP headers
2525
#
26-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-get-autoscaling-capacity.html
26+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/autoscaling-get-autoscaling-capacity.html
2727
#
2828
def get_autoscaling_capacity(arguments = {})
2929
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module Actions
2424
# @option arguments [String] :name the name of the autoscaling policy
2525
# @option arguments [Hash] :headers Custom HTTP headers
2626
#
27-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-get-autoscaling-policy.html
27+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/autoscaling-get-autoscaling-policy.html
2828
#
2929
def get_autoscaling_policy(arguments = {})
3030
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module Actions
2525
# @option arguments [Hash] :headers Custom HTTP headers
2626
# @option arguments [Hash] :body the specification of the autoscaling policy (*Required*)
2727
#
28-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-put-autoscaling-policy.html
28+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/autoscaling-put-autoscaling-policy.html
2929
#
3030
def put_autoscaling_policy(arguments = {})
3131
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]

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

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

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @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)
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-alias.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-alias.html
3535
#
3636
def aliases(arguments = {})
3737
arguments = arguments.clone

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

+1-1
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/master/cat-allocation.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-allocation.html
3636
#
3737
def allocation(arguments = {})
3838
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @option arguments [Boolean] :v Verbose mode. Display column headers
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-compoentn-templates.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-compoentn-templates.html
3535
#
3636
def component_templates(arguments = {})
3737
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module Actions
2929
# @option arguments [Boolean] :v Verbose mode. Display column headers
3030
# @option arguments [Hash] :headers Custom HTTP headers
3131
#
32-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-count.html
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-count.html
3333
#
3434
def count(arguments = {})
3535
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module Actions
3030
# @option arguments [Boolean] :v Verbose mode. Display column headers
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-fielddata.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-fielddata.html
3434
#
3535
def fielddata(arguments = {})
3636
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module Actions
3030
# @option arguments [Boolean] :v Verbose mode. Display column headers
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-health.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-health.html
3434
#
3535
def health(arguments = {})
3636
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module Actions
2525
# @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
2626
# @option arguments [Hash] :headers Custom HTTP headers
2727
#
28-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat.html
28+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat.html
2929
#
3030
def help(arguments = {})
3131
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ module Actions
3636
# @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)
3737
# @option arguments [Hash] :headers Custom HTTP headers
3838
#
39-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-indices.html
39+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-indices.html
4040
#
4141
def indices(arguments = {})
4242
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module Actions
3030
# @option arguments [Boolean] :v Verbose mode. Display column headers
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-master.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-master.html
3434
#
3535
def master(arguments = {})
3636
arguments = arguments.clone

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

+1-1
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 http://www.elastic.co/guide/en/elasticsearch/reference/current/cat-dfanalytics.html
35+
# @see http://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-dfanalytics.html
3636
#
3737
def ml_data_frame_analytics(arguments = {})
3838
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @option arguments [Boolean] :v Verbose mode. Display column headers
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see http://www.elastic.co/guide/en/elasticsearch/reference/current/cat-datafeeds.html
34+
# @see http://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-datafeeds.html
3535
#
3636
def ml_datafeeds(arguments = {})
3737
arguments = arguments.clone

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

+1-1
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 http://www.elastic.co/guide/en/elasticsearch/reference/current/cat-anomaly-detectors.html
35+
# @see http://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-anomaly-detectors.html
3636
#
3737
def ml_jobs(arguments = {})
3838
arguments = arguments.clone

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

+1-1
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-trained-model.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-trained-model.html
3838
#
3939
def ml_trained_models(arguments = {})
4040
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module Actions
3030
# @option arguments [Boolean] :v Verbose mode. Display column headers
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-nodeattrs.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-nodeattrs.html
3434
#
3535
def nodeattrs(arguments = {})
3636
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module Actions
3333
# @option arguments [Boolean] :include_unloaded_segments If set to true segment stats will include stats for segments that are not currently loaded into memory
3434
# @option arguments [Hash] :headers Custom HTTP headers
3535
#
36-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-nodes.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-nodes.html
3737
#
3838
def nodes(arguments = {})
3939
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @option arguments [Boolean] :v Verbose mode. Display column headers
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-pending-tasks.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-pending-tasks.html
3535
#
3636
def pending_tasks(arguments = {})
3737
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @option arguments [Boolean] :v Verbose mode. Display column headers
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-plugins.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-plugins.html
3535
#
3636
def plugins(arguments = {})
3737
arguments = arguments.clone

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

+1-1
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/master/cat-recovery.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-recovery.html
3737
#
3838
def recovery(arguments = {})
3939
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module Actions
3030
# @option arguments [Boolean] :v Verbose mode. Display column headers
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-repositories.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-repositories.html
3434
#
3535
def repositories(arguments = {})
3636
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module Actions
3030
# @option arguments [Boolean] :v Verbose mode. Display column headers
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-segments.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-segments.html
3434
#
3535
def segments(arguments = {})
3636
arguments = arguments.clone

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

+1-1
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/master/cat-shards.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-shards.html
3636
#
3737
def shards(arguments = {})
3838
arguments = arguments.clone

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

+1-1
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/master/cat-snapshots.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-snapshots.html
3636
#
3737
def snapshots(arguments = {})
3838
arguments = arguments.clone

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

+1-1
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/master/tasks.html
40+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/tasks.html
4141
#
4242
def tasks(arguments = {})
4343
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @option arguments [Boolean] :v Verbose mode. Display column headers
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-templates.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-templates.html
3535
#
3636
def templates(arguments = {})
3737
arguments = arguments.clone

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

+1-1
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/master/cat-thread-pool.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-thread-pool.html
3737
#
3838
def thread_pool(arguments = {})
3939
arguments = arguments.clone

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

+1-1
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-transforms.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cat-transforms.html
3737
#
3838
def transforms(arguments = {})
3939
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ module Actions
2929
# Deprecated since version 7.0.0
3030
#
3131
#
32-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/clear-scroll-api.html
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/clear-scroll-api.html
3333
#
3434
def clear_scroll(arguments = {})
3535
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ module Actions
2323
# @option arguments [Hash] :headers Custom HTTP headers
2424
# @option arguments [Hash] :body a point-in-time id to close
2525
#
26-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/point-in-time-api.html
26+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/point-in-time-api.html
2727
#
2828
def close_point_in_time(arguments = {})
2929
arguments = arguments.clone

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

+1-1
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 The index, shard, and primary flag to explain. Empty means 'explain a randomly-chosen unassigned shard'
2828
#
29-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-allocation-explain.html
29+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/cluster-allocation-explain.html
3030
#
3131
def allocation_explain(arguments = {})
3232
arguments = arguments.clone

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module Actions
2626
# @option arguments [Time] :master_timeout Specify timeout for connection to master
2727
# @option arguments [Hash] :headers Custom HTTP headers
2828
#
29-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-component-template.html
29+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/indices-component-template.html
3030
#
3131
def delete_component_template(arguments = {})
3232
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module Actions
2424
# @option arguments [Boolean] :wait_for_removal Specifies whether to wait for all excluded nodes to be removed from the cluster before clearing the voting configuration exclusions list.
2525
# @option arguments [Hash] :headers Custom HTTP headers
2626
#
27-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/master/voting-config-exclusions.html
27+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.2/voting-config-exclusions.html
2828
#
2929
def delete_voting_config_exclusions(arguments = {})
3030
arguments = arguments.clone

0 commit comments

Comments
 (0)