elasticsearch-api 7.4.0 → 7.5.0.pre.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (185) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +16 -23
  3. data/lib/elasticsearch/api/actions/abort_benchmark.rb +1 -2
  4. data/lib/elasticsearch/api/actions/benchmark.rb +2 -3
  5. data/lib/elasticsearch/api/actions/bulk.rb +35 -68
  6. data/lib/elasticsearch/api/actions/cat/aliases.rb +30 -52
  7. data/lib/elasticsearch/api/actions/cat/allocation.rb +36 -50
  8. data/lib/elasticsearch/api/actions/cat/count.rb +25 -46
  9. data/lib/elasticsearch/api/actions/cat/fielddata.rb +31 -33
  10. data/lib/elasticsearch/api/actions/cat/health.rb +27 -37
  11. data/lib/elasticsearch/api/actions/cat/help.rb +14 -10
  12. data/lib/elasticsearch/api/actions/cat/indices.rb +45 -62
  13. data/lib/elasticsearch/api/actions/cat/master.rb +24 -34
  14. data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +20 -16
  15. data/lib/elasticsearch/api/actions/cat/nodes.rb +34 -46
  16. data/lib/elasticsearch/api/actions/cat/params_registry.rb +0 -1
  17. data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +29 -35
  18. data/lib/elasticsearch/api/actions/cat/plugins.rb +21 -18
  19. data/lib/elasticsearch/api/actions/cat/recovery.rb +40 -56
  20. data/lib/elasticsearch/api/actions/cat/repositories.rb +21 -24
  21. data/lib/elasticsearch/api/actions/cat/segments.rb +29 -22
  22. data/lib/elasticsearch/api/actions/cat/shards.rb +38 -59
  23. data/lib/elasticsearch/api/actions/cat/snapshots.rb +32 -27
  24. data/lib/elasticsearch/api/actions/cat/tasks.rb +25 -19
  25. data/lib/elasticsearch/api/actions/cat/templates.rb +26 -18
  26. data/lib/elasticsearch/api/actions/cat/thread_pool.rb +36 -46
  27. data/lib/elasticsearch/api/actions/clear_scroll.rb +21 -8
  28. data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +15 -13
  29. data/lib/elasticsearch/api/actions/cluster/get_settings.rb +18 -18
  30. data/lib/elasticsearch/api/actions/cluster/health.rb +42 -44
  31. data/lib/elasticsearch/api/actions/cluster/params_registry.rb +0 -1
  32. data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +15 -17
  33. data/lib/elasticsearch/api/actions/cluster/put_settings.rb +20 -17
  34. data/lib/elasticsearch/api/actions/cluster/remote_info.rb +8 -6
  35. data/lib/elasticsearch/api/actions/cluster/reroute.rb +25 -37
  36. data/lib/elasticsearch/api/actions/cluster/state.rb +37 -41
  37. data/lib/elasticsearch/api/actions/cluster/stats.rb +20 -12
  38. data/lib/elasticsearch/api/actions/count.rb +52 -39
  39. data/lib/elasticsearch/api/actions/create.rb +25 -26
  40. data/lib/elasticsearch/api/actions/delete.rb +43 -36
  41. data/lib/elasticsearch/api/actions/delete_by_query.rb +74 -62
  42. data/lib/elasticsearch/api/actions/delete_by_query_rethrottle.rb +39 -0
  43. data/lib/elasticsearch/api/actions/delete_by_rethrottle.rb +4 -3
  44. data/lib/elasticsearch/api/actions/delete_script.rb +19 -13
  45. data/lib/elasticsearch/api/actions/exists.rb +44 -34
  46. data/lib/elasticsearch/api/actions/exists_source.rb +43 -25
  47. data/lib/elasticsearch/api/actions/explain.rb +46 -51
  48. data/lib/elasticsearch/api/actions/field_caps.rb +27 -20
  49. data/lib/elasticsearch/api/actions/get.rb +42 -41
  50. data/lib/elasticsearch/api/actions/get_script.rb +19 -14
  51. data/lib/elasticsearch/api/actions/get_source.rb +38 -44
  52. data/lib/elasticsearch/api/actions/index.rb +60 -89
  53. data/lib/elasticsearch/api/actions/indices/analyze.rb +19 -48
  54. data/lib/elasticsearch/api/actions/indices/clear_cache.rb +29 -41
  55. data/lib/elasticsearch/api/actions/indices/clone.rb +21 -21
  56. data/lib/elasticsearch/api/actions/indices/close.rb +28 -32
  57. data/lib/elasticsearch/api/actions/indices/create.rb +22 -70
  58. data/lib/elasticsearch/api/actions/indices/delete.rb +23 -35
  59. data/lib/elasticsearch/api/actions/indices/delete_alias.rb +24 -20
  60. data/lib/elasticsearch/api/actions/indices/delete_template.rb +18 -20
  61. data/lib/elasticsearch/api/actions/indices/exists.rb +32 -34
  62. data/lib/elasticsearch/api/actions/indices/exists_alias.rb +33 -29
  63. data/lib/elasticsearch/api/actions/indices/exists_template.rb +21 -16
  64. data/lib/elasticsearch/api/actions/indices/exists_type.rb +29 -29
  65. data/lib/elasticsearch/api/actions/indices/flush.rb +28 -28
  66. data/lib/elasticsearch/api/actions/indices/flush_synced.rb +23 -12
  67. data/lib/elasticsearch/api/actions/indices/forcemerge.rb +26 -41
  68. data/lib/elasticsearch/api/actions/indices/freeze.rb +7 -8
  69. data/lib/elasticsearch/api/actions/indices/get.rb +25 -19
  70. data/lib/elasticsearch/api/actions/indices/get_alias.rb +31 -23
  71. data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +42 -38
  72. data/lib/elasticsearch/api/actions/indices/get_mapping.rb +39 -31
  73. data/lib/elasticsearch/api/actions/indices/get_settings.rb +34 -37
  74. data/lib/elasticsearch/api/actions/indices/get_template.rb +21 -23
  75. data/lib/elasticsearch/api/actions/indices/get_upgrade.rb +48 -0
  76. data/lib/elasticsearch/api/actions/indices/open.rb +24 -21
  77. data/lib/elasticsearch/api/actions/indices/params_registry.rb +0 -1
  78. data/lib/elasticsearch/api/actions/indices/put_alias.rb +25 -27
  79. data/lib/elasticsearch/api/actions/indices/put_mapping.rb +40 -39
  80. data/lib/elasticsearch/api/actions/indices/put_settings.rb +30 -37
  81. data/lib/elasticsearch/api/actions/indices/put_template.rb +23 -23
  82. data/lib/elasticsearch/api/actions/indices/recovery.rb +20 -23
  83. data/lib/elasticsearch/api/actions/indices/refresh.rb +22 -26
  84. data/lib/elasticsearch/api/actions/indices/rollover.rb +28 -19
  85. data/lib/elasticsearch/api/actions/indices/segments.rb +24 -17
  86. data/lib/elasticsearch/api/actions/indices/shard_stores.rb +27 -15
  87. data/lib/elasticsearch/api/actions/indices/shrink.rb +23 -17
  88. data/lib/elasticsearch/api/actions/indices/split.rb +23 -17
  89. data/lib/elasticsearch/api/actions/indices/stats.rb +53 -104
  90. data/lib/elasticsearch/api/actions/indices/unfreeze.rb +7 -7
  91. data/lib/elasticsearch/api/actions/indices/update_aliases.rb +15 -32
  92. data/lib/elasticsearch/api/actions/indices/upgrade.rb +26 -16
  93. data/lib/elasticsearch/api/actions/indices/validate_query.rb +46 -59
  94. data/lib/elasticsearch/api/actions/info.rb +9 -6
  95. data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +18 -12
  96. data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +21 -11
  97. data/lib/elasticsearch/api/actions/ingest/params_registry.rb +0 -1
  98. data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +12 -13
  99. data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +19 -14
  100. data/lib/elasticsearch/api/actions/ingest/simulate.rb +23 -13
  101. data/lib/elasticsearch/api/actions/mget.rb +37 -44
  102. data/lib/elasticsearch/api/actions/msearch.rb +54 -54
  103. data/lib/elasticsearch/api/actions/msearch_template.rb +46 -35
  104. data/lib/elasticsearch/api/actions/mtermvectors.rb +39 -35
  105. data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +30 -25
  106. data/lib/elasticsearch/api/actions/nodes/info.rb +29 -63
  107. data/lib/elasticsearch/api/actions/nodes/params_registry.rb +0 -1
  108. data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +24 -22
  109. data/lib/elasticsearch/api/actions/nodes/shutdown.rb +4 -4
  110. data/lib/elasticsearch/api/actions/nodes/stats.rb +43 -36
  111. data/lib/elasticsearch/api/actions/nodes/usage.rb +31 -10
  112. data/lib/elasticsearch/api/actions/params_registry.rb +0 -1
  113. data/lib/elasticsearch/api/actions/ping.rb +12 -13
  114. data/lib/elasticsearch/api/actions/put_script.rb +26 -30
  115. data/lib/elasticsearch/api/actions/rank_eval.rb +24 -15
  116. data/lib/elasticsearch/api/actions/reindex.rb +25 -48
  117. data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +18 -12
  118. data/lib/elasticsearch/api/actions/remote/info.rb +1 -2
  119. data/lib/elasticsearch/api/actions/render_search_template.rb +17 -15
  120. data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +8 -6
  121. data/lib/elasticsearch/api/actions/scroll.rb +28 -51
  122. data/lib/elasticsearch/api/actions/search.rb +104 -165
  123. data/lib/elasticsearch/api/actions/search_shards.rb +31 -28
  124. data/lib/elasticsearch/api/actions/search_template.rb +48 -40
  125. data/lib/elasticsearch/api/actions/snapshot/cleanup_repository.rb +44 -0
  126. data/lib/elasticsearch/api/actions/snapshot/create.rb +22 -29
  127. data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +19 -24
  128. data/lib/elasticsearch/api/actions/snapshot/delete.rb +20 -22
  129. data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +16 -18
  130. data/lib/elasticsearch/api/actions/snapshot/get.rb +22 -31
  131. data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +21 -25
  132. data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +0 -1
  133. data/lib/elasticsearch/api/actions/snapshot/restore.rb +21 -32
  134. data/lib/elasticsearch/api/actions/snapshot/status.rb +23 -24
  135. data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +18 -13
  136. data/lib/elasticsearch/api/actions/tasks/cancel.rb +19 -13
  137. data/lib/elasticsearch/api/actions/tasks/get.rb +16 -13
  138. data/lib/elasticsearch/api/actions/tasks/list.rb +20 -18
  139. data/lib/elasticsearch/api/actions/tasks/params_registry.rb +0 -1
  140. data/lib/elasticsearch/api/actions/termvectors.rb +52 -70
  141. data/lib/elasticsearch/api/actions/update.rb +53 -98
  142. data/lib/elasticsearch/api/actions/update_by_query.rb +77 -66
  143. data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +17 -11
  144. data/lib/elasticsearch/api/version.rb +1 -1
  145. data/spec/elasticsearch/api/actions/cat/segments_spec.rb +9 -11
  146. data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +1 -1
  147. data/spec/elasticsearch/api/actions/count_spec.rb +8 -8
  148. data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +12 -7
  149. data/spec/elasticsearch/api/actions/delete_script_spec.rb +0 -14
  150. data/spec/elasticsearch/api/actions/exists_document_spec.rb +1 -1
  151. data/spec/elasticsearch/api/actions/get_document_source_spec.rb +1 -1
  152. data/spec/elasticsearch/api/actions/index_document_spec.rb +6 -15
  153. data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +0 -4
  154. data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +1 -5
  155. data/spec/elasticsearch/api/actions/indices/clone_spec.rb +1 -1
  156. data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +2 -2
  157. data/spec/elasticsearch/api/actions/indices/get_spec.rb +0 -11
  158. data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +3 -3
  159. data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +3 -3
  160. data/spec/elasticsearch/api/actions/indices/stats_spec.rb +0 -1
  161. data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +3 -3
  162. data/spec/elasticsearch/api/actions/put_script_spec.rb +20 -15
  163. data/spec/elasticsearch/api/actions/render_search_template_spec.rb +23 -7
  164. data/spec/elasticsearch/api/actions/scroll_spec.rb +37 -0
  165. data/spec/elasticsearch/api/actions/search_spec.rb +0 -15
  166. data/spec/elasticsearch/api/actions/tasks/list_spec.rb +0 -11
  167. data/spec/elasticsearch/api/actions/update_document_spec.rb +3 -7
  168. data/spec/rest_yaml_tests_helper.rb +12 -0
  169. data/utils/Gemfile +1 -0
  170. data/utils/Thorfile +0 -1
  171. data/utils/thor/generate_source.rb +192 -85
  172. data/utils/thor/generator/endpoint_specifics.rb +157 -0
  173. data/utils/thor/generator/files_helper.rb +37 -0
  174. data/utils/thor/lister.rb +3 -4
  175. data/utils/thor/templates/_documentation_top.erb +27 -0
  176. data/utils/thor/templates/_method_setup.erb +35 -0
  177. data/utils/thor/templates/_params_registry.erb +12 -0
  178. data/utils/thor/templates/_perform_request.erb +37 -0
  179. data/utils/thor/templates/method.erb +59 -0
  180. data/utils/thor/templates/{ruby/test.erb → test.erb} +0 -0
  181. data/utils/thor/templates/{ruby/test_helper.rb → test_helper.rb} +0 -0
  182. metadata +19 -11
  183. data/spec/elasticsearch/api/actions/scoll_spec.rb +0 -21
  184. data/utils/thor/generate_api.rb +0 -193
  185. data/utils/thor/templates/ruby/method.erb +0 -62
@@ -2,7 +2,6 @@ module Elasticsearch
2
2
  module API
3
3
  module Indices
4
4
  module Actions
5
-
6
5
  # In order to keep indices available and queryable for a longer period but at the same time reduce their
7
6
  # hardware requirements they can be transitioned into a frozen state. Once an index is frozen, all of its
8
7
  # transient shard memory (aside from mappings and analyzers) is moved to persistent storage.
@@ -17,12 +16,13 @@ module Elasticsearch
17
16
  raise ArgumentError, "Required argument 'index' missing" unless arguments[:index]
18
17
 
19
18
  valid_params = [
20
- :timeout,
21
- :master_timeout,
22
- :ignore_unavailable,
23
- :allow_no_indices,
24
- :expand_wildcards,
25
- :wait_for_active_shards]
19
+ :timeout,
20
+ :master_timeout,
21
+ :ignore_unavailable,
22
+ :allow_no_indices,
23
+ :expand_wildcards,
24
+ :wait_for_active_shards
25
+ ]
26
26
 
27
27
  arguments = arguments.clone
28
28
  index = arguments.delete(:index)
@@ -6,53 +6,36 @@ module Elasticsearch
6
6
  module API
7
7
  module Indices
8
8
  module Actions
9
-
10
- # Perform multiple operation on index aliases in a single request.
11
- #
12
- # Pass the `actions` (add, remove) in the `body` argument.
13
- #
14
- # @example Add multiple indices to a single alias
15
- #
16
- # client.indices.update_aliases body: {
17
- # actions: [
18
- # { add: { index: 'logs-2013-06', alias: 'year-2013' } },
19
- # { add: { index: 'logs-2013-05', alias: 'year-2013' } }
20
- # ]
21
- # }
9
+ # Updates index aliases.
22
10
  #
23
- # @example Swap an alias (atomic operation)
24
- #
25
- # client.indices.update_aliases body: {
26
- # actions: [
27
- # { remove: { index: 'logs-2013-06', alias: 'current-month' } },
28
- # { add: { index: 'logs-2013-07', alias: 'current-month' } }
29
- # ]
30
- # }
31
- #
32
- # @option arguments [Hash] :body The definition of `actions` to perform (*Required*)
33
11
  # @option arguments [Time] :timeout Request timeout
34
12
  # @option arguments [Time] :master_timeout Specify timeout for connection to master
13
+
14
+ # @option arguments [Hash] :body The definition of `actions` to perform (*Required*)
35
15
  #
36
- # @see https://www.elastic.co/guide/reference/api/admin-indices-aliases/
16
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/indices-aliases.html
37
17
  #
38
- def update_aliases(arguments={})
18
+ def update_aliases(arguments = {})
39
19
  raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
40
- method = HTTP_POST
41
- path = "_aliases"
42
20
 
21
+ arguments = arguments.clone
22
+
23
+ method = Elasticsearch::API::HTTP_POST
24
+ path = "_aliases"
43
25
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
44
- body = arguments[:body]
45
26
 
27
+ body = arguments[:body]
46
28
  perform_request(method, path, params, body).body
47
29
  end
48
30
 
49
31
  # Register this action with its valid params when the module is loaded.
50
32
  #
51
- # @since 6.1.1
33
+ # @since 6.2.0
52
34
  ParamsRegistry.register(:update_aliases, [
53
- :timeout,
54
- :master_timeout ].freeze)
35
+ :timeout,
36
+ :master_timeout
37
+ ].freeze)
38
+ end
55
39
  end
56
- end
57
40
  end
58
41
  end
@@ -6,38 +6,48 @@ module Elasticsearch
6
6
  module API
7
7
  module Indices
8
8
  module Actions
9
-
10
- # Upgrade the index or indices to the latest Lucene format.
9
+ # The _upgrade API is no longer useful and will be removed.
11
10
  #
12
11
  # @option arguments [List] :index A comma-separated list of index names; use `_all` or empty string to perform the operation on all indices
13
12
  # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
14
- # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
13
+ # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
14
+ # (options: open,closed,none,all)
15
+
15
16
  # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
16
17
  # @option arguments [Boolean] :wait_for_completion Specify whether the request should block until the all segments are upgraded (default: false)
17
18
  # @option arguments [Boolean] :only_ancient_segments If true, only ancient (an older Lucene major release) segments will be upgraded
19
+
18
20
  #
19
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-upgrade.html
21
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/indices-upgrade.html
20
22
  #
21
- def upgrade(arguments={})
22
- method = HTTP_POST
23
- path = "_upgrade"
23
+ def upgrade(arguments = {})
24
+ arguments = arguments.clone
25
+
26
+ _index = arguments.delete(:index)
27
+
28
+ method = Elasticsearch::API::HTTP_POST
29
+ path = if _index
30
+ "#{Utils.__listify(_index)}/_upgrade"
31
+ else
32
+ "_upgrade"
33
+ end
24
34
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
25
- body = nil
26
35
 
36
+ body = nil
27
37
  perform_request(method, path, params, body).body
28
38
  end
29
39
 
30
40
  # Register this action with its valid params when the module is loaded.
31
41
  #
32
- # @since 6.1.1
42
+ # @since 6.2.0
33
43
  ParamsRegistry.register(:upgrade, [
34
- :index,
35
- :allow_no_indices,
36
- :expand_wildcards,
37
- :ignore_unavailable,
38
- :wait_for_completion,
39
- :only_ancient_segments ].freeze)
44
+ :allow_no_indices,
45
+ :expand_wildcards,
46
+ :ignore_unavailable,
47
+ :wait_for_completion,
48
+ :only_ancient_segments
49
+ ].freeze)
50
+ end
40
51
  end
41
- end
42
52
  end
43
53
  end
@@ -6,88 +6,75 @@ module Elasticsearch
6
6
  module API
7
7
  module Indices
8
8
  module Actions
9
-
10
- # Validate a query
11
- #
12
- # @example Validate a simple query string query
13
- #
14
- # client.indices.validate_query index: 'myindex', q: 'title:foo AND body:bar'
15
- #
16
- # @example Validate an invalid query (with explanation)
17
- #
18
- # client.indices.validate_query index: 'myindex', q: '[[[ BOOM! ]]]', explain: true
19
- #
20
- # @example Validate a DSL query (with explanation and rewrite). With rewrite set to true, the
21
- # explanation is more detailed showing the actual Lucene query that will
22
- # be executed.
23
- #
24
- # client.indices.validate_query index: 'myindex',
25
- # rewrite: true,
26
- # explain: true,
27
- # body: {
28
- # filtered: {
29
- # query: {
30
- # match: {
31
- # title: 'foo'
32
- # }
33
- # },
34
- # filter: {
35
- # range: {
36
- # published_at: {
37
- # from: '2013-06-01'
38
- # }
39
- # }
40
- # }
41
- # }
42
- # }
9
+ # Allows a user to validate a potentially expensive query without executing it.
43
10
  #
44
11
  # @option arguments [List] :index A comma-separated list of index names to restrict the operation; use `_all` or empty string to perform the operation on all indices
45
- # @option arguments [List] :type A comma-separated list of document types to restrict the operation; leave empty to perform the operation on all types
46
- # @option arguments [Hash] :body The query definition specified with the Query DSL
12
+ # @option arguments [List] :type A comma-separated list of document types to restrict the operation; leave empty to perform the operation on all types *Deprecated*
47
13
  # @option arguments [Boolean] :explain Return detailed information about the error
48
14
  # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
49
15
  # @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
50
- # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
16
+ # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
17
+ # (options: open,closed,none,all)
18
+
51
19
  # @option arguments [String] :q Query in the Lucene query string syntax
52
20
  # @option arguments [String] :analyzer The analyzer to use for the query string
53
21
  # @option arguments [Boolean] :analyze_wildcard Specify whether wildcard and prefix queries should be analyzed (default: false)
54
- # @option arguments [String] :default_operator The default operator for query string query (AND or OR) (options: AND, OR)
22
+ # @option arguments [String] :default_operator The default operator for query string query (AND or OR)
23
+ # (options: AND,OR)
24
+
55
25
  # @option arguments [String] :df The field to use as default where no field prefix is given in the query string
56
26
  # @option arguments [Boolean] :lenient Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
57
27
  # @option arguments [Boolean] :rewrite Provide a more detailed explanation showing the actual Lucene query that will be executed.
58
28
  # @option arguments [Boolean] :all_shards Execute validation on all shards instead of one random shard per index
29
+
30
+ # @option arguments [Hash] :body The query definition specified with the Query DSL
31
+ #
32
+ # *Deprecation notice*:
33
+ # Specifying types in urls has been deprecated
34
+ # Deprecated since version 7.0.0
35
+ #
59
36
  #
60
- # @see https://www.elastic.co/guide/reference/api/validate/
37
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/search-validate.html
61
38
  #
62
- def validate_query(arguments={})
63
- method = HTTP_GET
64
- path = Utils.__pathify Utils.__listify(arguments[:index]),
65
- Utils.__listify(arguments[:type]),
66
- '_validate/query'
39
+ def validate_query(arguments = {})
40
+ arguments = arguments.clone
67
41
 
42
+ _index = arguments.delete(:index)
43
+
44
+ _type = arguments.delete(:type)
45
+
46
+ method = Elasticsearch::API::HTTP_GET
47
+ path = if _index && _type
48
+ "#{Utils.__listify(_index)}/#{Utils.__listify(_type)}/_validate/query"
49
+ elsif _index
50
+ "#{Utils.__listify(_index)}/_validate/query"
51
+ else
52
+ "_validate/query"
53
+ end
68
54
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
69
- body = arguments[:body]
70
55
 
56
+ body = arguments[:body]
71
57
  perform_request(method, path, params, body).body
72
58
  end
73
59
 
74
60
  # Register this action with its valid params when the module is loaded.
75
61
  #
76
- # @since 6.1.1
62
+ # @since 6.2.0
77
63
  ParamsRegistry.register(:validate_query, [
78
- :explain,
79
- :ignore_unavailable,
80
- :allow_no_indices,
81
- :expand_wildcards,
82
- :q,
83
- :analyzer,
84
- :analyze_wildcard,
85
- :default_operator,
86
- :df,
87
- :lenient,
88
- :rewrite,
89
- :all_shards ].freeze)
64
+ :explain,
65
+ :ignore_unavailable,
66
+ :allow_no_indices,
67
+ :expand_wildcards,
68
+ :q,
69
+ :analyzer,
70
+ :analyze_wildcard,
71
+ :default_operator,
72
+ :df,
73
+ :lenient,
74
+ :rewrite,
75
+ :all_shards
76
+ ].freeze)
77
+ end
90
78
  end
91
- end
92
79
  end
93
80
  end
@@ -5,19 +5,22 @@
5
5
  module Elasticsearch
6
6
  module API
7
7
  module Actions
8
+ # Returns basic information about the cluster.
9
+ #
8
10
 
9
- # Return simple information about the cluster (name, version).
10
11
  #
11
- # @see http://elasticsearch.org/guide/
12
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/index.html
12
13
  #
13
- def info(arguments={})
14
- method = HTTP_GET
14
+ def info(arguments = {})
15
+ arguments = arguments.clone
16
+
17
+ method = Elasticsearch::API::HTTP_GET
15
18
  path = ""
16
19
  params = {}
17
- body = nil
18
20
 
21
+ body = nil
19
22
  perform_request(method, path, params, body).body
20
23
  end
21
24
  end
22
- end
25
+ end
23
26
  end
@@ -6,32 +6,38 @@ module Elasticsearch
6
6
  module API
7
7
  module Ingest
8
8
  module Actions
9
-
10
- # Delete a speficied pipeline
9
+ # Deletes a pipeline.
11
10
  #
12
- # @option arguments [String] :id Pipeline ID (*Required*)
11
+ # @option arguments [String] :id Pipeline ID
13
12
  # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
14
13
  # @option arguments [Time] :timeout Explicit operation timeout
14
+
15
15
  #
16
- # @see https://www.elastic.co/guide/en/elasticsearch/plugins/master/ingest.html
16
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/delete-pipeline-api.html
17
17
  #
18
- def delete_pipeline(arguments={})
18
+ def delete_pipeline(arguments = {})
19
19
  raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
20
- method = 'DELETE'
21
- path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id])
20
+
21
+ arguments = arguments.clone
22
+
23
+ _id = arguments.delete(:id)
24
+
25
+ method = Elasticsearch::API::HTTP_DELETE
26
+ path = "_ingest/pipeline/#{Utils.__listify(_id)}"
22
27
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
23
- body = nil
24
28
 
29
+ body = nil
25
30
  perform_request(method, path, params, body).body
26
31
  end
27
32
 
28
33
  # Register this action with its valid params when the module is loaded.
29
34
  #
30
- # @since 6.1.1
35
+ # @since 6.2.0
31
36
  ParamsRegistry.register(:delete_pipeline, [
32
- :master_timeout,
33
- :timeout ].freeze)
37
+ :master_timeout,
38
+ :timeout
39
+ ].freeze)
40
+ end
34
41
  end
35
- end
36
42
  end
37
43
  end
@@ -6,28 +6,38 @@ module Elasticsearch
6
6
  module API
7
7
  module Ingest
8
8
  module Actions
9
-
10
- # Return a specified pipeline
9
+ # Returns a pipeline.
11
10
  #
12
- # @option arguments [String] :id Comma separated list of pipeline ids (wildcards supported).
11
+ # @option arguments [String] :id Comma separated list of pipeline ids. Wildcards supported
13
12
  # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
13
+
14
14
  #
15
- # @see https://www.elastic.co/guide/en/elasticsearch/plugins/master/ingest.html
15
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/get-pipeline-api.html
16
16
  #
17
- def get_pipeline(arguments={})
18
- method = 'GET'
19
- path = Utils.__pathify "_ingest/pipeline", Utils.__escape(arguments[:id])
17
+ def get_pipeline(arguments = {})
18
+ arguments = arguments.clone
19
+
20
+ _id = arguments.delete(:id)
21
+
22
+ method = Elasticsearch::API::HTTP_GET
23
+ path = if _id
24
+ "_ingest/pipeline/#{Utils.__listify(_id)}"
25
+ else
26
+ "_ingest/pipeline"
27
+ end
20
28
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
21
- body = nil
22
29
 
30
+ body = nil
23
31
  perform_request(method, path, params, body).body
24
32
  end
25
33
 
26
34
  # Register this action with its valid params when the module is loaded.
27
35
  #
28
- # @since 6.1.1
29
- ParamsRegistry.register(:get_pipeline, [ :master_timeout ].freeze)
36
+ # @since 6.2.0
37
+ ParamsRegistry.register(:get_pipeline, [
38
+ :master_timeout
39
+ ].freeze)
40
+ end
30
41
  end
31
- end
32
42
  end
33
43
  end
@@ -7,7 +7,6 @@ module Elasticsearch
7
7
  module Ingest
8
8
  module Actions
9
9
  module ParamsRegistry
10
-
11
10
  extend self
12
11
 
13
12
  # A Mapping of all the actions to their list of valid params.
@@ -1,29 +1,28 @@
1
+ # Licensed to Elasticsearch B.V under one or more agreements.
2
+ # Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
3
+ # See the LICENSE file in the project root for more information
4
+
1
5
  module Elasticsearch
2
6
  module API
3
7
  module Ingest
4
8
  module Actions
5
-
6
- # Extracts structured fields out of a single text field within a document. You choose which field to extract
7
- # matched fields from, as well as the grok pattern you expect will match.
9
+ # Returns a list of the built-in patterns.
8
10
  #
11
+
9
12
  #
10
- # @see https://www.elastic.co/guide/en/elasticsearch/plugins/current/ingest.html
13
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/grok-processor.html#grok-processor-rest-get
11
14
  #
12
- def processor_grok(arguments={})
15
+ def processor_grok(arguments = {})
16
+ arguments = arguments.clone
17
+
13
18
  method = Elasticsearch::API::HTTP_GET
14
19
  path = "_ingest/processor/grok"
15
20
  params = {}
16
- body = nil
17
21
 
22
+ body = nil
18
23
  perform_request(method, path, params, body).body
19
24
  end
20
-
21
- # Register this action with its valid params when the module is loaded.
22
- #
23
- # @since 6.2.0
24
- ParamsRegistry.register(:processor_grok, [
25
- ].freeze)
25
+ end
26
26
  end
27
- end
28
27
  end
29
28
  end