Skip to content

Commit ff34ea9

Browse files
committed
[DOCS] Updates references to Elasticsearch repo and docs
1 parent 83768d6 commit ff34ea9

File tree

185 files changed

+185
-185
lines changed

Some content is hidden

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

185 files changed

+185
-185
lines changed

docs/advanced-config.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ client.search(index: 'myindex', q: 'title:test', headers: {user_agent: "My App"}
159159

160160
The X-Opaque-Id header allows to track certain calls, or associate certain tasks
161161
with the client that started them (refer to
162-
https://www.elastic.co/guide/en/elasticsearch/reference/master/tasks.html#_identifying_running_tasks[the documentation]).
162+
https://www.elastic.co/guide/en/elasticsearch/reference/current/tasks.html#_identifying_running_tasks[the documentation]).
163163
To use this feature, you need to set an id for `opaque_id` on the client on each
164164
request. Example:
165165

elasticsearch-api/api-spec-testing/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ To enable logging, set the environment `QUIET` to false before running the tests
9191

9292
The tests use custom [RSpec Matchers](https://www.rubydoc.info/gems/rspec-expectations/RSpec/Matchers) defined in `api-spec-testing/rspec_matchers.rb`.
9393

94-
From the [Rest API test docs](https://github.com/elastic/elasticsearch/tree/master/rest-api-spec/src/main/resources/rest-api-spec/test#do):
94+
From the [Rest API test docs](https://github.com/elastic/elasticsearch/tree/main/rest-api-spec/src/main/resources/rest-api-spec/test#do):
9595

9696
## `catch`
9797

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/master/docs-bulk.html
41+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/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/master/cat-alias.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/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/master/cat-allocation.html
38+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/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/master/cat-compoentn-templates.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-compoentn-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/master/cat-count.html
35+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/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/master/cat-fielddata.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/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/master/cat-health.html
36+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/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/master/cat.html
31+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat.html
3232
#
3333
def help(arguments = {})
3434
arguments = arguments.clone

0 commit comments

Comments
 (0)