Skip to content

Commit d276837

Browse files
elasticmachinepicandocodigo
authored andcommitted
Auto-generated API code
1 parent e6dff40 commit d276837

File tree

436 files changed

+437
-437
lines changed

Some content is hidden

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

436 files changed

+437
-437
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [String] :id The async search ID
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.9/async-search.html
3131
#
3232
def delete(arguments = {})
3333
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]

elasticsearch-api/lib/elasticsearch/api/actions/async_search/get.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] :typed_keys Specify whether aggregation and suggester names should be prefixed by their respective types in the response
3131
# @option arguments [Hash] :headers Custom HTTP headers
3232
#
33-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
33+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/async-search.html
3434
#
3535
def get(arguments = {})
3636
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ module Actions
2727
# @option arguments [String] :id The async search ID
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.9/async-search.html
3131
#
3232
def status(arguments = {})
3333
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ module Actions
6969
# @option arguments [Hash] :headers Custom HTTP headers
7070
# @option arguments [Hash] :body The search definition using the Query DSL
7171
#
72-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/async-search.html
72+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/async-search.html
7373
#
7474
def submit(arguments = {})
7575
arguments = arguments.clone

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module Actions
2626
#
2727
# @option arguments [Hash] :headers Custom HTTP headers
2828
#
29-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-get-autoscaling-capacity.html
29+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/autoscaling-get-autoscaling-capacity.html
3030
#
3131
def get_autoscaling_capacity(arguments = {})
3232
arguments = arguments.clone

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

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module Actions
2828
# @option arguments [Hash] :headers Custom HTTP headers
2929
# @option arguments [Hash] :body the specification of the autoscaling policy (*Required*)
3030
#
31-
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/autoscaling-put-autoscaling-policy.html
31+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/autoscaling-put-autoscaling-policy.html
3232
#
3333
def put_autoscaling_policy(arguments = {})
3434
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]

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/current/docs-bulk.html
41+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/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/current/cat-alias.html
37+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/8.9/cat-alias.html
3838
#
3939
def aliases(arguments = {})
4040
arguments = arguments.clone

0 commit comments

Comments
 (0)