Skip to content

Commit aaf81f5

Browse files
committed
[XPACK] Updates 7.x to 7.16
1 parent 6be5fe0 commit aaf81f5

File tree

246 files changed

+249
-249
lines changed

Some content is hidden

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

246 files changed

+249
-249
lines changed

elasticsearch-xpack/elasticsearch-xpack.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ Gem::Specification.new do |spec|
2828

2929
spec.summary = 'Ruby integrations for the X-Pack extensions for Elasticsearch'
3030
spec.description = 'Ruby integrations for the X-Pack extensions for Elasticsearch'
31-
spec.homepage = 'https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/7.x/index.html'
31+
spec.homepage = 'https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/7.16/index.html'
3232
spec.license = 'Apache-2.0'
3333
spec.metadata = {
34-
'homepage_uri' => 'https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/7.x/index.html',
35-
'changelog_uri' => 'https://github.com/elastic/elasticsearch-ruby/blob/7.x/CHANGELOG.md',
36-
'source_code_uri' => 'https://github.com/elastic/elasticsearch-ruby/tree/7.x/elasticsearch-xpack',
34+
'homepage_uri' => 'https://www.elastic.co/guide/en/elasticsearch/client/ruby-api/7.16/index.html',
35+
'changelog_uri' => 'https://github.com/elastic/elasticsearch-ruby/blob/7.16/CHANGELOG.md',
36+
'source_code_uri' => 'https://github.com/elastic/elasticsearch-ruby/tree/7.16/elasticsearch-xpack',
3737
'bug_tracker_uri' => 'https://github.com/elastic/elasticsearch-ruby/issues'
3838
}
3939
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module Actions
2525
# @option arguments [String] :id The async search ID
2626
# @option arguments [Hash] :headers Custom HTTP headers
2727
#
28-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/async-search.html
28+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.16/async-search.html
2929
#
3030
def delete(arguments = {})
3131
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]

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

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

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ module Actions
6767
# @option arguments [Hash] :headers Custom HTTP headers
6868
# @option arguments [Hash] :body The search definition using the Query DSL
6969
#
70-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/async-search.html
70+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.16/async-search.html
7171
#
7272
def submit(arguments = {})
7373
headers = arguments.delete(:headers) || {}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module Actions
2525
# @option arguments [String] :name the name of the autoscaling policy
2626
# @option arguments [Hash] :headers Custom HTTP headers
2727
#
28-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/autoscaling-delete-autoscaling-policy.html
28+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.16/autoscaling-delete-autoscaling-policy.html
2929
#
3030
def delete_autoscaling_policy(arguments = {})
3131
raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ module Actions
2424
#
2525
# @option arguments [Hash] :headers Custom HTTP headers
2626
#
27-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/autoscaling-get-autoscaling-capacity.html
27+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.16/autoscaling-get-autoscaling-capacity.html
2828
#
2929
def get_autoscaling_capacity(arguments = {})
3030
headers = arguments.delete(:headers) || {}

elasticsearch-xpack/lib/elasticsearch/xpack/api/actions/autoscaling/get_autoscaling_decision.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module Actions
2828
#
2929
# @option arguments [Hash] :headers Custom HTTP headers
3030
#
31-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/autoscaling-get-autoscaling-decision.html
31+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.16/autoscaling-get-autoscaling-decision.html
3232
#
3333
def get_autoscaling_decision(arguments = {})
3434
headers = arguments.delete(:headers) || {}

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

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

elasticsearch-xpack/lib/elasticsearch/xpack/api/actions/autoscaling/put_autoscaling_policy.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 specification of the autoscaling policy (*Required*)
2828
#
29-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.x/autoscaling-put-autoscaling-policy.html
29+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/7.16/autoscaling-put-autoscaling-policy.html
3030
#
3131
def put_autoscaling_policy(arguments = {})
3232
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]

0 commit comments

Comments
 (0)