Skip to content

Commit f9deb29

Browse files
committed
[API] Update docs links
1 parent f11ba03 commit f9deb29

File tree

145 files changed

+145
-145
lines changed

Some content is hidden

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

145 files changed

+145
-145
lines changed

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

Lines changed: 1 addition & 1 deletion
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/7.x/docs-bulk.html
38+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/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

Lines changed: 1 addition & 1 deletion
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/7.x/cat-alias.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-alias.html
3535
#
3636
def aliases(arguments = {})
3737
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/allocation.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/7.x/cat-allocation.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-allocation.html
3636
#
3737
def allocation(arguments = {})
3838
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
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/7.x/cat-count.html
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-count.html
3333
#
3434
def count(arguments = {})
3535
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module Actions
3131
# @option arguments [List] :fields A comma-separated list of fields to return in the output
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
#
34-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/cat-fielddata.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-fielddata.html
3535
#
3636
def fielddata(arguments = {})
3737
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/health.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] :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/7.x/cat-health.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-health.html
3434
#
3535
def health(arguments = {})
3636
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
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/7.x/cat.html
28+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat.html
2929
#
3030
def help(arguments = {})
3131
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module Actions
3737
# @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)
3838
# @option arguments [Hash] :headers Custom HTTP headers
3939
#
40-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/cat-indices.html
40+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-indices.html
4141
#
4242
def indices(arguments = {})
4343
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/master.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] :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/7.x/cat-master.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-master.html
3434
#
3535
def master(arguments = {})
3636
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/nodeattrs.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] :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/7.x/cat-nodeattrs.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-nodeattrs.html
3434
#
3535
def nodeattrs(arguments = {})
3636
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/nodes.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/7.x/cat-nodes.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-nodes.html
3737
#
3838
def nodes(arguments = {})
3939
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
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/7.x/cat-pending-tasks.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-pending-tasks.html
3535
#
3636
def pending_tasks(arguments = {})
3737
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/plugins.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] :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/7.x/cat-plugins.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-plugins.html
3434
#
3535
def plugins(arguments = {})
3636
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/recovery.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/7.x/cat-recovery.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-recovery.html
3838
#
3939
def recovery(arguments = {})
4040
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/repositories.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] :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/7.x/cat-repositories.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-repositories.html
3434
#
3535
def repositories(arguments = {})
3636
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/segments.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] :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/7.x/cat-segments.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-segments.html
3434
#
3535
def segments(arguments = {})
3636
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/shards.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/7.x/cat-shards.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-shards.html
3737
#
3838
def shards(arguments = {})
3939
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/snapshots.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/7.x/cat-snapshots.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-snapshots.html
3636
#
3737
def snapshots(arguments = {})
3838
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/tasks.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/7.x/tasks.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/tasks.html
3737
#
3838
def tasks(arguments = {})
3939
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
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/7.x/cat-templates.html
34+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-templates.html
3535
#
3636
def templates(arguments = {})
3737
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cat/thread_pool.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/7.x/cat-thread-pool.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cat-thread-pool.html
3737
#
3838
def thread_pool(arguments = {})
3939
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
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/7.x/clear-scroll-api.html
32+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/clear-scroll-api.html
3333
#
3434
def clear_scroll(arguments = {})
3535
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cluster/allocation_explain.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 The index, shard, and primary flag to explain. Empty means 'explain the first unassigned shard'
2828
#
29-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/cluster-allocation-explain.html
29+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cluster-allocation-explain.html
3030
#
3131
def allocation_explain(arguments = {})
3232
headers = arguments.delete(:headers) || {}

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
@@ -30,7 +30,7 @@ module Actions
3030
# @option arguments [Time] :master_timeout Specify timeout for connection to master
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/indices-component-template.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/indices-component-template.html
3434
#
3535
def delete_component_template(arguments = {})
3636
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
@@ -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/7.x/voting-config-exclusions.html
27+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/voting-config-exclusions.html
2828
#
2929
def delete_voting_config_exclusions(arguments = {})
3030
headers = arguments.delete(:headers) || {}

elasticsearch-api/lib/elasticsearch/api/actions/cluster/exists_component_template.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] :local Return local information, do not retrieve the state from master node (default: false)
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/indices-component-template.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/indices-component-template.html
3434
#
3535
def exists_component_template(arguments = {})
3636
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

elasticsearch-api/lib/elasticsearch/api/actions/cluster/get_component_template.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] :local Return local information, do not retrieve the state from master node (default: false)
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/indices-component-template.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/indices-component-template.html
3434
#
3535
def get_component_template(arguments = {})
3636
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [Boolean] :include_defaults Whether to return all default clusters setting.
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
#
30-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/cluster-update-settings.html
30+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cluster-update-settings.html
3131
#
3232
def get_settings(arguments = {})
3333
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module Actions
3535
# @option arguments [String] :wait_for_status Wait until cluster is in a specific state (options: green, yellow, red)
3636
# @option arguments [Hash] :headers Custom HTTP headers
3737
#
38-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/cluster-health.html
38+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cluster-health.html
3939
#
4040
def health(arguments = {})
4141
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
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/7.x/cluster-pending.html
29+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cluster-pending.html
3030
#
3131
def pending_tasks(arguments = {})
3232
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module Actions
2626
# @option arguments [Time] :timeout Explicit operation timeout
2727
# @option arguments [Hash] :headers Custom HTTP headers
2828
#
29-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/voting-config-exclusions.html
29+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/voting-config-exclusions.html
3030
#
3131
def post_voting_config_exclusions(arguments = {})
3232
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ module Actions
3232
# @option arguments [Hash] :headers Custom HTTP headers
3333
# @option arguments [Hash] :body The template definition (*Required*)
3434
#
35-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/indices-component-template.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/indices-component-template.html
3636
#
3737
def put_component_template(arguments = {})
3838
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [Hash] :headers Custom HTTP headers
2828
# @option arguments [Hash] :body The settings to be updated. Can be either `transient` or `persistent` (survives cluster restart). (*Required*)
2929
#
30-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/cluster-update-settings.html
30+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cluster-update-settings.html
3131
#
3232
def put_settings(arguments = {})
3333
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]

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

Lines changed: 1 addition & 1 deletion
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/7.x/cluster-remote-info.html
26+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cluster-remote-info.html
2727
#
2828
def remote_info(arguments = {})
2929
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module Actions
3030
# @option arguments [Hash] :headers Custom HTTP headers
3131
# @option arguments [Hash] :body The definition of `commands` to perform (`move`, `cancel`, `allocate`)
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/cluster-reroute.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cluster-reroute.html
3434
#
3535
def reroute(arguments = {})
3636
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ module Actions
3333
# @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)
3434
# @option arguments [Hash] :headers Custom HTTP headers
3535
#
36-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/cluster-state.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cluster-state.html
3737
#
3838
def state(arguments = {})
3939
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module Actions
2626
# @option arguments [Time] :timeout Explicit operation timeout
2727
# @option arguments [Hash] :headers Custom HTTP headers
2828
#
29-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/cluster-stats.html
29+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cluster-stats.html
3030
#
3131
def stats(arguments = {})
3232
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ module Actions
4444
# Deprecated since version 7.0.0
4545
#
4646
#
47-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/search-count.html
47+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/search-count.html
4848
#
4949
def count(arguments = {})
5050
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ module Actions
4040
# Deprecated since version 7.0.0
4141
#
4242
#
43-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/docs-index_.html
43+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/docs-index_.html
4444
#
4545
def create(arguments = {})
4646
if arguments[:id]

elasticsearch-api/lib/elasticsearch/api/actions/dangling_indices/delete_dangling_index.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [Time] :master_timeout Specify timeout for connection to master
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
#
30-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/modules-gateway-dangling-indices.html
30+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/modules-gateway-dangling-indices.html
3131
#
3232
def delete_dangling_index(arguments = {})
3333
raise ArgumentError, "Required argument 'index_uuid' missing" unless arguments[:index_uuid]

0 commit comments

Comments
 (0)