Skip to content

Commit 891e6c8

Browse files
committed
[API] Updates 7.x to 7.16
1 parent aaf81f5 commit 891e6c8

File tree

157 files changed

+160
-160
lines changed

Some content is hidden

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

157 files changed

+160
-160
lines changed

elasticsearch-api/elasticsearch-api.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ Gem::Specification.new do |s|
2626
s.authors = ['Karel Minarik']
2727
s.email = ['[email protected]']
2828
s.summary = 'Ruby API for Elasticsearch.'
29-
s.homepage = 'https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/7.x/index.html'
29+
s.homepage = 'https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/7.16/index.html'
3030
s.license = 'Apache-2.0'
3131
s.metadata = {
32-
'homepage_uri' => 'https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/7.x/index.html',
33-
'changelog_uri' => 'https://github.com/elastic/elasticsearch-ruby/blob/7.x/CHANGELOG.md',
34-
'source_code_uri' => 'https://github.com/elastic/elasticsearch-ruby/tree/7.x/elasticsearch-api',
32+
'homepage_uri' => 'https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/7.16/index.html',
33+
'changelog_uri' => 'https://github.com/elastic/elasticsearch-ruby/blob/7.16/CHANGELOG.md',
34+
'source_code_uri' => 'https://github.com/elastic/elasticsearch-ruby/tree/7.16/elasticsearch-api',
3535
'bug_tracker_uri' => 'https://github.com/elastic/elasticsearch-ruby/issues'
3636
}
3737
s.files = `git ls-files`.split($/)

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

0 commit comments

Comments
 (0)