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
@@ -6,43 +6,50 @@ module Elasticsearch
6
6
  module API
7
7
  module Cat
8
8
  module Actions
9
-
10
- # Display information about the segments in the shards of an index
11
- #
12
- # @example Display information for all indices
13
- #
14
- # puts client.cat.segments
9
+ # Provides low-level information about the segments in the shards of an index.
15
10
  #
16
11
  # @option arguments [List] :index A comma-separated list of index names to limit the returned information
17
- # @option arguments [String] :bytes The unit in which to display byte values (options: b, k, m, g)
12
+ # @option arguments [String] :format a short version of the Accept header, e.g. json, yaml
13
+ # @option arguments [String] :bytes The unit in which to display byte values
14
+ # (options: b,k,kb,m,mb,g,gb,t,tb,p,pb)
15
+
18
16
  # @option arguments [List] :h Comma-separated list of column names to display
19
17
  # @option arguments [Boolean] :help Return help information
20
- # @option arguments [Boolean] :v Verbose mode. Display column headers
21
18
  # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
19
+ # @option arguments [Boolean] :v Verbose mode. Display column headers
20
+
22
21
  #
23
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-segments.html
22
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/cat-segments.html
24
23
  #
25
- def segments(arguments={})
26
- method = 'GET'
27
- path = "_cat/segments"
24
+ def segments(arguments = {})
25
+ arguments = arguments.clone
26
+
27
+ _index = arguments.delete(:index)
28
+
29
+ method = Elasticsearch::API::HTTP_GET
30
+ path = if _index
31
+ "_cat/segments/#{Utils.__listify(_index)}"
32
+ else
33
+ "_cat/segments"
34
+ end
28
35
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
29
- body = nil
30
36
 
37
+ body = nil
31
38
  perform_request(method, path, params, body).body
32
39
  end
33
40
 
34
41
  # Register this action with its valid params when the module is loaded.
35
42
  #
36
- # @since 6.1.1
43
+ # @since 6.2.0
37
44
  ParamsRegistry.register(:segments, [
38
- :index,
39
- :format,
40
- :bytes,
41
- :h,
42
- :help,
43
- :s,
44
- :v ].freeze)
45
+ :format,
46
+ :bytes,
47
+ :h,
48
+ :help,
49
+ :s,
50
+ :v
51
+ ].freeze)
52
+ end
45
53
  end
46
- end
47
54
  end
48
55
  end
@@ -6,80 +6,59 @@ module Elasticsearch
6
6
  module API
7
7
  module Cat
8
8
  module Actions
9
-
10
- # Display shard allocation across nodes
11
- #
12
- # @example Display information for all indices
13
- #
14
- # puts client.cat.shards
15
- #
16
- # @example Display information for a specific index
17
- #
18
- # puts client.cat.shards index: 'index-a'
19
- #
20
- # @example Display information for a list of indices
21
- #
22
- # puts client.cat.shards index: ['index-a', 'index-b']
23
- #
24
- # @example Display header names in the output
25
- #
26
- # puts client.cat.shards v: true
27
- #
28
- # @example Display shard size in choice of units
29
- #
30
- # puts client.cat.shards bytes: 'b'
31
- #
32
- # @example Display only specific columns in the output (see the `help` parameter)
33
- #
34
- # puts client.cat.shards h: ['node', 'index', 'shard', 'prirep', 'docs', 'store', 'merges.total']
35
- #
36
- # @example Display only specific columns in the output, using the short names
37
- #
38
- # puts client.cat.shards h: 'n,i,s,p,d,sto,mt'
39
- #
40
- # @example Return the information as Ruby objects
41
- #
42
- # client.cat.shards format: 'json'
9
+ # Provides a detailed view of shard allocation on nodes.
43
10
  #
44
11
  # @option arguments [List] :index A comma-separated list of index names to limit the returned information
45
- # @option arguments [String] :bytes The unit in which to display byte values (options: b, k, m, g)
46
- # @option arguments [List] :h Comma-separated list of column names to display -- see the `help` argument
47
- # @option arguments [Boolean] :v Display column headers as part of the output
48
- # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
49
- # @option arguments [String] :format The output format. Options: 'text', 'json'; default: 'text'
50
- # @option arguments [Boolean] :help Return information about headers
51
- # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node
52
- # (default: false)
12
+ # @option arguments [String] :format a short version of the Accept header, e.g. json, yaml
13
+ # @option arguments [String] :bytes The unit in which to display byte values
14
+ # (options: b,k,kb,m,mb,g,gb,t,tb,p,pb)
15
+
16
+ # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false)
53
17
  # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
18
+ # @option arguments [List] :h Comma-separated list of column names to display
19
+ # @option arguments [Boolean] :help Return help information
20
+ # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
21
+ # @option arguments [String] :time The unit in which to display time values
22
+ # (options: d (Days),h (Hours),m (Minutes),s (Seconds),ms (Milliseconds),micros (Microseconds),nanos (Nanoseconds))
23
+
24
+ # @option arguments [Boolean] :v Verbose mode. Display column headers
25
+
54
26
  #
55
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-shards.html
27
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/cat-shards.html
56
28
  #
57
- def shards(arguments={})
58
- index = arguments.delete(:index)
59
- method = HTTP_GET
60
- path = Utils.__pathify '_cat/shards', Utils.__listify(index)
29
+ def shards(arguments = {})
30
+ arguments = arguments.clone
31
+
32
+ _index = arguments.delete(:index)
61
33
 
34
+ method = Elasticsearch::API::HTTP_GET
35
+ path = if _index
36
+ "_cat/shards/#{Utils.__listify(_index)}"
37
+ else
38
+ "_cat/shards"
39
+ end
62
40
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
63
41
  params[:h] = Utils.__listify(params[:h]) if params[:h]
64
42
 
65
- body = nil
66
-
43
+ body = nil
67
44
  perform_request(method, path, params, body).body
68
45
  end
69
46
 
70
47
  # Register this action with its valid params when the module is loaded.
71
48
  #
72
- # @since 6.1.1
49
+ # @since 6.2.0
73
50
  ParamsRegistry.register(:shards, [
74
- :format,
75
- :bytes,
76
- :local,
77
- :master_timeout,
78
- :h,
79
- :help,
80
- :s,
81
- :v ].freeze)
51
+ :format,
52
+ :bytes,
53
+ :local,
54
+ :master_timeout,
55
+ :h,
56
+ :help,
57
+ :s,
58
+ :time,
59
+ :v
60
+ ].freeze)
61
+ end
82
62
  end
83
- end
84
63
  end
85
64
  end
@@ -6,49 +6,54 @@ module Elasticsearch
6
6
  module API
7
7
  module Cat
8
8
  module Actions
9
-
10
- # Shows all snapshots that belong to a specific repository
11
- #
12
- # @example Return snapshots for 'my_repository'
13
- #
14
- # client.cat.snapshots repository: 'my_repository'
15
- #
16
- # @example Return id, status and start_epoch for 'my_repository'
17
- #
18
- # client.cat.snapshots repository: 'my_repository', h: 'id,status,start_epoch'
9
+ # Returns all snapshots in a specific repository.
19
10
  #
11
+ # @option arguments [List] :repository Name of repository from which to fetch the snapshot information
12
+ # @option arguments [String] :format a short version of the Accept header, e.g. json, yaml
13
+ # @option arguments [Boolean] :ignore_unavailable Set to true to ignore unavailable snapshots
20
14
  # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
21
15
  # @option arguments [List] :h Comma-separated list of column names to display
22
16
  # @option arguments [Boolean] :help Return help information
23
- # @option arguments [Boolean] :v Verbose mode. Display column headers
24
17
  # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
18
+ # @option arguments [String] :time The unit in which to display time values
19
+ # (options: d (Days),h (Hours),m (Minutes),s (Seconds),ms (Milliseconds),micros (Microseconds),nanos (Nanoseconds))
20
+
21
+ # @option arguments [Boolean] :v Verbose mode. Display column headers
22
+
25
23
  #
26
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-snapshots.html
24
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/cat-snapshots.html
27
25
  #
28
- def snapshots(arguments={})
29
- repository = arguments.delete(:repository)
26
+ def snapshots(arguments = {})
27
+ arguments = arguments.clone
28
+
29
+ _repository = arguments.delete(:repository)
30
30
 
31
- method = HTTP_GET
32
- path = Utils.__pathify "_cat/snapshots", Utils.__escape(repository)
31
+ method = Elasticsearch::API::HTTP_GET
32
+ path = if _repository
33
+ "_cat/snapshots/#{Utils.__listify(_repository)}"
34
+ else
35
+ "_cat/snapshots"
36
+ end
33
37
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
34
- body = nil
35
38
 
39
+ body = nil
36
40
  perform_request(method, path, params, body).body
37
41
  end
38
42
 
39
43
  # Register this action with its valid params when the module is loaded.
40
44
  #
41
- # @since 6.1.1
45
+ # @since 6.2.0
42
46
  ParamsRegistry.register(:snapshots, [
43
- :format,
44
- :ignore_unavailable,
45
- :master_timeout,
46
- :h,
47
- :help,
48
- :s,
49
- :v ].freeze)
47
+ :format,
48
+ :ignore_unavailable,
49
+ :master_timeout,
50
+ :h,
51
+ :help,
52
+ :s,
53
+ :time,
54
+ :v
55
+ ].freeze)
56
+ end
50
57
  end
51
- end
52
58
  end
53
59
  end
54
-
@@ -6,45 +6,51 @@ module Elasticsearch
6
6
  module API
7
7
  module Cat
8
8
  module Actions
9
-
10
- # Return currently running tasks
9
+ # Returns information about the tasks currently executing on one or more nodes in the cluster.
11
10
  #
12
11
  # @option arguments [String] :format a short version of the Accept header, e.g. json, yaml
13
12
  # @option arguments [List] :node_id A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
14
13
  # @option arguments [List] :actions A comma-separated list of actions that should be returned. Leave empty to return all.
15
14
  # @option arguments [Boolean] :detailed Return detailed task information (default: false)
16
- # @option arguments [String] :parent_node Return tasks with specified parent node.
17
15
  # @option arguments [Number] :parent_task Return tasks with specified parent task id. Set to -1 to return all.
18
16
  # @option arguments [List] :h Comma-separated list of column names to display
19
17
  # @option arguments [Boolean] :help Return help information
20
- # @option arguments [Boolean] :v Verbose mode. Display column headers
21
18
  # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
19
+ # @option arguments [String] :time The unit in which to display time values
20
+ # (options: d (Days),h (Hours),m (Minutes),s (Seconds),ms (Milliseconds),micros (Microseconds),nanos (Nanoseconds))
21
+
22
+ # @option arguments [Boolean] :v Verbose mode. Display column headers
23
+
22
24
  #
23
- # @see http://www.elastic.co/guide/en/elasticsearch/reference/master/tasks.html
25
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/tasks.html
24
26
  #
25
- def tasks(arguments={})
26
- method = 'GET'
27
+ def tasks(arguments = {})
28
+ arguments = arguments.clone
29
+
30
+ method = Elasticsearch::API::HTTP_GET
27
31
  path = "_cat/tasks"
28
32
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
29
- body = nil
30
33
 
34
+ body = nil
31
35
  perform_request(method, path, params, body).body
32
36
  end
33
37
 
34
38
  # Register this action with its valid params when the module is loaded.
35
39
  #
36
- # @since 6.1.1
40
+ # @since 6.2.0
37
41
  ParamsRegistry.register(:tasks, [
38
- :format,
39
- :node_id,
40
- :actions,
41
- :detailed,
42
- :parent_task,
43
- :h,
44
- :help,
45
- :s,
46
- :v ].freeze)
42
+ :format,
43
+ :node_id,
44
+ :actions,
45
+ :detailed,
46
+ :parent_task,
47
+ :h,
48
+ :help,
49
+ :s,
50
+ :time,
51
+ :v
52
+ ].freeze)
53
+ end
47
54
  end
48
- end
49
55
  end
50
56
  end
@@ -6,8 +6,7 @@ module Elasticsearch
6
6
  module API
7
7
  module Cat
8
8
  module Actions
9
-
10
- # Returns information about existing templates
9
+ # Returns information about existing templates.
11
10
  #
12
11
  # @option arguments [String] :name A pattern that returned template names must match
13
12
  # @option arguments [String] :format a short version of the Accept header, e.g. json, yaml
@@ -15,33 +14,42 @@ module Elasticsearch
15
14
  # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
16
15
  # @option arguments [List] :h Comma-separated list of column names to display
17
16
  # @option arguments [Boolean] :help Return help information
18
- # @option arguments [Boolean] :v Verbose mode. Display column headers
19
17
  # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
18
+ # @option arguments [Boolean] :v Verbose mode. Display column headers
19
+
20
20
  #
21
- # @see http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-templates.html
21
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/cat-templates.html
22
22
  #
23
- def templates(arguments={})
24
- method = HTTP_GET
25
- path = "_cat/templates"
23
+ def templates(arguments = {})
24
+ arguments = arguments.clone
25
+
26
+ _name = arguments.delete(:name)
27
+
28
+ method = Elasticsearch::API::HTTP_GET
29
+ path = if _name
30
+ "_cat/templates/#{Utils.__listify(_name)}"
31
+ else
32
+ "_cat/templates"
33
+ end
26
34
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
27
- body = nil
28
35
 
36
+ body = nil
29
37
  perform_request(method, path, params, body).body
30
38
  end
31
39
 
32
40
  # Register this action with its valid params when the module is loaded.
33
41
  #
34
- # @since 6.1.1
42
+ # @since 6.2.0
35
43
  ParamsRegistry.register(:templates, [
36
- :name,
37
- :format,
38
- :local,
39
- :master_timeout,
40
- :h,
41
- :help,
42
- :s,
43
- :v ].freeze)
44
+ :format,
45
+ :local,
46
+ :master_timeout,
47
+ :h,
48
+ :help,
49
+ :s,
50
+ :v
51
+ ].freeze)
52
+ end
44
53
  end
45
- end
46
54
  end
47
55
  end
@@ -6,66 +6,56 @@ module Elasticsearch
6
6
  module API
7
7
  module Cat
8
8
  module Actions
9
-
10
- # Display thread pool statistics across nodes (use the `help` parameter to display a list
11
- # of avaialable thread pools)
12
- #
13
- # @example Display information about all thread pools across nodes
14
- #
15
- # puts client.cat.thread_pool
16
- #
17
- # @example Display header names in the output
18
- #
19
- # puts client.cat.thread_pool v: true
20
- #
21
- # @example Display information about the indexing thread pool
22
- #
23
- # puts client.cat.thread_pool h: %w(h ip index.active index.size index.queue index.rejected), v: true
24
- #
25
- # @example Display information about the indexing and search threads, using the short names
26
- #
27
- # puts client.cat.thread_pool h: 'host,ia,is,iq,ir,sa,ss,sq,sr', v: true
9
+ # Returns cluster-wide thread pool statistics per node.
10
+ # By default the active, queue and rejected statistics are returned for all thread pools.
28
11
  #
29
- # @option arguments [Boolean] :full_id Display the complete node ID
12
+ # @option arguments [List] :thread_pool_patterns A comma-separated list of regular-expressions to filter the thread pools in the output
13
+ # @option arguments [String] :format a short version of the Accept header, e.g. json, yaml
30
14
  # @option arguments [String] :size The multiplier in which to display values
31
- # (Options: k, m, g, t, p)
32
- # @option arguments [List] :thread_pool_patterns A comma-separated list of regular expressions to filter
33
- # the thread pools in the output
34
- # @option arguments [List] :h Comma-separated list of column names to display -- see the `help` argument
35
- # @option arguments [Boolean] :v Display column headers as part of the output
36
- # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
37
- # @option arguments [String] :format The output format. Options: 'text', 'json'; default: 'text'
38
- # @option arguments [Boolean] :help Return information about headers
39
- # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node
40
- # (default: false)
15
+ # (options: ,k,m,g,t,p)
16
+
17
+ # @option arguments [Boolean] :local Return local information, do not retrieve the state from master node (default: false)
41
18
  # @option arguments [Time] :master_timeout Explicit operation timeout for connection to master node
19
+ # @option arguments [List] :h Comma-separated list of column names to display
20
+ # @option arguments [Boolean] :help Return help information
21
+ # @option arguments [List] :s Comma-separated list of column names or column aliases to sort by
22
+ # @option arguments [Boolean] :v Verbose mode. Display column headers
23
+
42
24
  #
43
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-thread-pool.html
25
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.5/cat-thread-pool.html
44
26
  #
45
- def thread_pool(arguments={})
46
- method = HTTP_GET
47
- path = "_cat/thread_pool"
27
+ def thread_pool(arguments = {})
28
+ arguments = arguments.clone
29
+
30
+ _thread_pool_patterns = arguments.delete(:thread_pool_patterns)
31
+
32
+ method = Elasticsearch::API::HTTP_GET
33
+ path = if _thread_pool_patterns
34
+ "_cat/thread_pool/#{Utils.__listify(_thread_pool_patterns)}"
35
+ else
36
+ "_cat/thread_pool"
37
+ end
48
38
  params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
49
39
  params[:h] = Utils.__listify(params[:h]) if params[:h]
50
- body = nil
51
40
 
41
+ body = nil
52
42
  perform_request(method, path, params, body).body
53
43
  end
54
44
 
55
45
  # Register this action with its valid params when the module is loaded.
56
46
  #
57
- # @since 6.1.1
47
+ # @since 6.2.0
58
48
  ParamsRegistry.register(:thread_pool, [
59
- :format,
60
- :size,
61
- :local,
62
- :master_timeout,
63
- :h,
64
- :help,
65
- :s,
66
- :v,
67
- :thread_pool_patterns].freeze)
49
+ :format,
50
+ :size,
51
+ :local,
52
+ :master_timeout,
53
+ :h,
54
+ :help,
55
+ :s,
56
+ :v
57
+ ].freeze)
58
+ end
68
59
  end
69
- end
70
60
  end
71
61
  end