elasticsearch-xpack 7.7.0 → 7.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (260) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +17 -3
  3. data/Rakefile +16 -3
  4. data/elasticsearch-xpack.gemspec +16 -3
  5. data/examples/watcher/error_500.rb +16 -3
  6. data/lib/elasticsearch/xpack.rb +44 -3
  7. data/lib/elasticsearch/xpack/api/actions/async_search/delete.rb +18 -5
  8. data/lib/elasticsearch/xpack/api/actions/async_search/get.rb +18 -5
  9. data/lib/elasticsearch/xpack/api/actions/async_search/params_registry.rb +16 -3
  10. data/lib/elasticsearch/xpack/api/actions/async_search/submit.rb +23 -18
  11. data/lib/elasticsearch/xpack/api/actions/autoscaling/delete_autoscaling_policy.rb +54 -0
  12. data/lib/elasticsearch/xpack/api/actions/autoscaling/get_autoscaling_decision.rb +49 -0
  13. data/lib/elasticsearch/xpack/api/actions/autoscaling/get_autoscaling_policy.rb +54 -0
  14. data/lib/elasticsearch/xpack/api/actions/autoscaling/params_registry.rb +62 -0
  15. data/lib/elasticsearch/xpack/api/actions/autoscaling/put_autoscaling_policy.rb +56 -0
  16. data/lib/elasticsearch/xpack/api/actions/cat/ml_data_frame_analytics.rb +21 -12
  17. data/lib/elasticsearch/xpack/api/actions/cat/ml_datafeeds.rb +20 -9
  18. data/lib/elasticsearch/xpack/api/actions/cat/ml_jobs.rb +21 -12
  19. data/lib/elasticsearch/xpack/api/actions/cat/ml_trained_models.rb +21 -12
  20. data/lib/elasticsearch/xpack/api/actions/cat/params_registry.rb +16 -3
  21. data/lib/elasticsearch/xpack/api/actions/cat/transform.rb +18 -5
  22. data/lib/elasticsearch/xpack/api/actions/cat/transforms.rb +20 -9
  23. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/delete_auto_follow_pattern.rb +50 -0
  24. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/follow.rb +60 -0
  25. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/follow_info.rb +50 -0
  26. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/follow_stats.rb +50 -0
  27. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/forget_follower.rb +52 -0
  28. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/get_auto_follow_pattern.rb +52 -0
  29. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/params_registry.rb +62 -0
  30. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/pause_auto_follow_pattern.rb +50 -0
  31. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/pause_follow.rb +50 -0
  32. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/put_auto_follow_pattern.rb +52 -0
  33. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/resume_auto_follow_pattern.rb +50 -0
  34. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/resume_follow.rb +51 -0
  35. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/stats.rb +45 -0
  36. data/lib/elasticsearch/xpack/api/actions/cross_cluster_replication/unfollow.rb +50 -0
  37. data/lib/elasticsearch/xpack/api/actions/data_frame_transform_deprecated/delete_transform.rb +22 -5
  38. data/lib/elasticsearch/xpack/api/actions/data_frame_transform_deprecated/get_transform.rb +23 -6
  39. data/lib/elasticsearch/xpack/api/actions/data_frame_transform_deprecated/get_transform_stats.rb +22 -5
  40. data/lib/elasticsearch/xpack/api/actions/data_frame_transform_deprecated/params_registry.rb +16 -3
  41. data/lib/elasticsearch/xpack/api/actions/data_frame_transform_deprecated/preview_transform.rb +22 -5
  42. data/lib/elasticsearch/xpack/api/actions/data_frame_transform_deprecated/put_transform.rb +22 -5
  43. data/lib/elasticsearch/xpack/api/actions/data_frame_transform_deprecated/start_transform.rb +22 -5
  44. data/lib/elasticsearch/xpack/api/actions/data_frame_transform_deprecated/stop_transform.rb +22 -5
  45. data/lib/elasticsearch/xpack/api/actions/data_frame_transform_deprecated/update_transform.rb +23 -6
  46. data/lib/elasticsearch/xpack/api/actions/enrich/delete_policy.rb +50 -0
  47. data/lib/elasticsearch/xpack/api/actions/enrich/execute_policy.rb +58 -0
  48. data/lib/elasticsearch/xpack/api/actions/enrich/get_policy.rb +52 -0
  49. data/lib/elasticsearch/xpack/api/actions/enrich/params_registry.rb +62 -0
  50. data/lib/elasticsearch/xpack/api/actions/enrich/put_policy.rb +52 -0
  51. data/lib/elasticsearch/xpack/api/actions/enrich/stats.rb +45 -0
  52. data/lib/elasticsearch/xpack/api/actions/eql/delete.rb +54 -0
  53. data/lib/elasticsearch/xpack/api/actions/eql/get.rb +64 -0
  54. data/lib/elasticsearch/xpack/api/actions/eql/params_registry.rb +62 -0
  55. data/lib/elasticsearch/xpack/api/actions/eql/search.rb +69 -0
  56. data/lib/elasticsearch/xpack/api/actions/graph/explore.rb +29 -11
  57. data/lib/elasticsearch/xpack/api/actions/graph/params_registry.rb +16 -3
  58. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/delete_lifecycle.rb +18 -5
  59. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/delete_policy.rb +16 -3
  60. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/explain.rb +16 -3
  61. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/explain_lifecycle.rb +18 -5
  62. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/get_lifecycle.rb +19 -6
  63. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/get_policy.rb +16 -3
  64. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/get_status.rb +18 -5
  65. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/move_to_step.rb +18 -5
  66. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/params_registry.rb +16 -3
  67. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/put_lifecycle.rb +18 -5
  68. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/put_policy.rb +16 -3
  69. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/remove_policy.rb +18 -5
  70. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/retry.rb +18 -5
  71. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/retry_policy.rb +16 -3
  72. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/start.rb +18 -5
  73. data/lib/elasticsearch/xpack/api/actions/index_lifecycle_management/stop.rb +18 -5
  74. data/lib/elasticsearch/xpack/api/actions/indices/create_data_stream.rb +50 -0
  75. data/lib/elasticsearch/xpack/api/actions/indices/data_streams_stats.rb +52 -0
  76. data/lib/elasticsearch/xpack/api/actions/indices/delete_data_stream.rb +50 -0
  77. data/lib/elasticsearch/xpack/api/actions/indices/freeze.rb +68 -0
  78. data/lib/elasticsearch/xpack/api/actions/indices/get_data_stream.rb +52 -0
  79. data/lib/elasticsearch/xpack/api/actions/indices/params_registry.rb +62 -0
  80. data/lib/elasticsearch/xpack/api/actions/indices/reload_search_analyzers.rb +62 -0
  81. data/lib/elasticsearch/xpack/api/actions/indices/unfreeze.rb +68 -0
  82. data/lib/elasticsearch/xpack/api/actions/info.rb +22 -7
  83. data/lib/elasticsearch/xpack/api/actions/license/delete.rb +18 -5
  84. data/lib/elasticsearch/xpack/api/actions/license/get.rb +18 -5
  85. data/lib/elasticsearch/xpack/api/actions/license/get_basic_status.rb +18 -5
  86. data/lib/elasticsearch/xpack/api/actions/license/get_trial_status.rb +18 -5
  87. data/lib/elasticsearch/xpack/api/actions/license/params_registry.rb +16 -3
  88. data/lib/elasticsearch/xpack/api/actions/license/post.rb +18 -5
  89. data/lib/elasticsearch/xpack/api/actions/license/post_start_basic.rb +18 -5
  90. data/lib/elasticsearch/xpack/api/actions/license/post_start_trial.rb +18 -5
  91. data/lib/elasticsearch/xpack/api/actions/machine_learning/close_job.rb +18 -5
  92. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_calendar.rb +18 -5
  93. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_calendar_event.rb +18 -5
  94. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_calendar_job.rb +18 -5
  95. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_data_frame_analytics.rb +25 -6
  96. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_datafeed.rb +18 -5
  97. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_expired_data.rb +39 -8
  98. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_filter.rb +18 -5
  99. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_forecast.rb +19 -6
  100. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_job.rb +18 -5
  101. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_model_snapshot.rb +18 -5
  102. data/lib/elasticsearch/xpack/api/actions/machine_learning/delete_trained_model.rb +22 -5
  103. data/lib/elasticsearch/xpack/api/actions/machine_learning/estimate_memory_usage.rb +17 -4
  104. data/lib/elasticsearch/xpack/api/actions/machine_learning/estimate_model_memory.rb +18 -5
  105. data/lib/elasticsearch/xpack/api/actions/machine_learning/evaluate_data_frame.rb +22 -5
  106. data/lib/elasticsearch/xpack/api/actions/machine_learning/explain_data_frame_analytics.rb +32 -10
  107. data/lib/elasticsearch/xpack/api/actions/machine_learning/find_file_structure.rb +23 -8
  108. data/lib/elasticsearch/xpack/api/actions/machine_learning/flush_job.rb +18 -5
  109. data/lib/elasticsearch/xpack/api/actions/machine_learning/forecast.rb +21 -6
  110. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_buckets.rb +28 -10
  111. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_calendar_events.rb +18 -5
  112. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_calendars.rb +28 -10
  113. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_categories.rb +31 -11
  114. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_data_frame_analytics.rb +23 -6
  115. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_data_frame_analytics_stats.rb +23 -6
  116. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_datafeed_stats.rb +19 -6
  117. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_datafeeds.rb +19 -6
  118. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_filters.rb +19 -6
  119. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_influencers.rb +25 -7
  120. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_job_stats.rb +19 -6
  121. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_jobs.rb +19 -6
  122. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_model_snapshots.rb +28 -10
  123. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_overall_buckets.rb +25 -7
  124. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_records.rb +25 -7
  125. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_trained_models.rb +26 -7
  126. data/lib/elasticsearch/xpack/api/actions/machine_learning/get_trained_models_stats.rb +23 -6
  127. data/lib/elasticsearch/xpack/api/actions/machine_learning/info.rb +18 -5
  128. data/lib/elasticsearch/xpack/api/actions/machine_learning/open_job.rb +18 -5
  129. data/lib/elasticsearch/xpack/api/actions/machine_learning/params_registry.rb +16 -3
  130. data/lib/elasticsearch/xpack/api/actions/machine_learning/post_calendar_events.rb +18 -5
  131. data/lib/elasticsearch/xpack/api/actions/machine_learning/post_data.rb +18 -5
  132. data/lib/elasticsearch/xpack/api/actions/machine_learning/preview_datafeed.rb +18 -5
  133. data/lib/elasticsearch/xpack/api/actions/machine_learning/put_calendar.rb +18 -5
  134. data/lib/elasticsearch/xpack/api/actions/machine_learning/put_calendar_job.rb +18 -5
  135. data/lib/elasticsearch/xpack/api/actions/machine_learning/put_data_frame_analytics.rb +22 -5
  136. data/lib/elasticsearch/xpack/api/actions/machine_learning/put_datafeed.rb +19 -8
  137. data/lib/elasticsearch/xpack/api/actions/machine_learning/put_filter.rb +18 -5
  138. data/lib/elasticsearch/xpack/api/actions/machine_learning/put_job.rb +18 -5
  139. data/lib/elasticsearch/xpack/api/actions/machine_learning/put_trained_model.rb +22 -5
  140. data/lib/elasticsearch/xpack/api/actions/machine_learning/revert_model_snapshot.rb +18 -5
  141. data/lib/elasticsearch/xpack/api/actions/machine_learning/set_upgrade_mode.rb +18 -5
  142. data/lib/elasticsearch/xpack/api/actions/machine_learning/start_data_frame_analytics.rb +22 -5
  143. data/lib/elasticsearch/xpack/api/actions/machine_learning/start_datafeed.rb +18 -5
  144. data/lib/elasticsearch/xpack/api/actions/machine_learning/stop_data_frame_analytics.rb +22 -5
  145. data/lib/elasticsearch/xpack/api/actions/machine_learning/stop_datafeed.rb +18 -5
  146. data/lib/elasticsearch/xpack/api/actions/machine_learning/update_data_frame_analytics.rb +56 -0
  147. data/lib/elasticsearch/xpack/api/actions/machine_learning/update_datafeed.rb +19 -8
  148. data/lib/elasticsearch/xpack/api/actions/machine_learning/update_filter.rb +18 -5
  149. data/lib/elasticsearch/xpack/api/actions/machine_learning/update_job.rb +18 -5
  150. data/lib/elasticsearch/xpack/api/actions/machine_learning/update_model_snapshot.rb +18 -5
  151. data/lib/elasticsearch/xpack/api/actions/machine_learning/validate.rb +18 -5
  152. data/lib/elasticsearch/xpack/api/actions/machine_learning/validate_detector.rb +18 -5
  153. data/lib/elasticsearch/xpack/api/actions/migration/deprecations.rb +19 -6
  154. data/lib/elasticsearch/xpack/api/actions/migration/params_registry.rb +16 -3
  155. data/lib/elasticsearch/xpack/api/actions/monitoring/bulk.rb +27 -9
  156. data/lib/elasticsearch/xpack/api/actions/monitoring/params_registry.rb +16 -3
  157. data/lib/elasticsearch/xpack/api/actions/params_registry.rb +16 -3
  158. data/lib/elasticsearch/xpack/api/actions/rollup/delete_job.rb +22 -5
  159. data/lib/elasticsearch/xpack/api/actions/rollup/get_jobs.rb +23 -6
  160. data/lib/elasticsearch/xpack/api/actions/rollup/get_rollup_caps.rb +23 -6
  161. data/lib/elasticsearch/xpack/api/actions/rollup/get_rollup_index_caps.rb +22 -5
  162. data/lib/elasticsearch/xpack/api/actions/rollup/params_registry.rb +16 -3
  163. data/lib/elasticsearch/xpack/api/actions/rollup/put_job.rb +22 -5
  164. data/lib/elasticsearch/xpack/api/actions/rollup/rollup_search.rb +25 -8
  165. data/lib/elasticsearch/xpack/api/actions/rollup/start_job.rb +22 -5
  166. data/lib/elasticsearch/xpack/api/actions/rollup/stop_job.rb +22 -5
  167. data/lib/elasticsearch/xpack/api/actions/searchable_snapshots/clear_cache.rb +70 -0
  168. data/lib/elasticsearch/xpack/api/actions/searchable_snapshots/mount.rb +70 -0
  169. data/lib/elasticsearch/xpack/api/actions/searchable_snapshots/params_registry.rb +62 -0
  170. data/lib/elasticsearch/xpack/api/actions/searchable_snapshots/repository_stats.rb +54 -0
  171. data/lib/elasticsearch/xpack/api/actions/searchable_snapshots/stats.rb +56 -0
  172. data/lib/elasticsearch/xpack/api/actions/security/authenticate.rb +18 -5
  173. data/lib/elasticsearch/xpack/api/actions/security/change_password.rb +20 -9
  174. data/lib/elasticsearch/xpack/api/actions/security/clear_cached_privileges.rb +50 -0
  175. data/lib/elasticsearch/xpack/api/actions/security/clear_cached_realms.rb +18 -5
  176. data/lib/elasticsearch/xpack/api/actions/security/clear_cached_roles.rb +18 -5
  177. data/lib/elasticsearch/xpack/api/actions/security/create_api_key.rb +19 -8
  178. data/lib/elasticsearch/xpack/api/actions/security/delete_privileges.rb +19 -8
  179. data/lib/elasticsearch/xpack/api/actions/security/delete_role.rb +19 -8
  180. data/lib/elasticsearch/xpack/api/actions/security/delete_role_mapping.rb +19 -8
  181. data/lib/elasticsearch/xpack/api/actions/security/delete_user.rb +19 -8
  182. data/lib/elasticsearch/xpack/api/actions/security/disable_user.rb +19 -8
  183. data/lib/elasticsearch/xpack/api/actions/security/enable_user.rb +19 -8
  184. data/lib/elasticsearch/xpack/api/actions/security/get_api_key.rb +18 -5
  185. data/lib/elasticsearch/xpack/api/actions/security/get_builtin_privileges.rb +18 -5
  186. data/lib/elasticsearch/xpack/api/actions/security/get_privileges.rb +19 -6
  187. data/lib/elasticsearch/xpack/api/actions/security/get_role.rb +19 -6
  188. data/lib/elasticsearch/xpack/api/actions/security/get_role_mapping.rb +19 -6
  189. data/lib/elasticsearch/xpack/api/actions/security/get_token.rb +18 -5
  190. data/lib/elasticsearch/xpack/api/actions/security/get_user.rb +19 -6
  191. data/lib/elasticsearch/xpack/api/actions/security/get_user_privileges.rb +18 -5
  192. data/lib/elasticsearch/xpack/api/actions/security/has_privileges.rb +20 -7
  193. data/lib/elasticsearch/xpack/api/actions/security/invalidate_api_key.rb +18 -5
  194. data/lib/elasticsearch/xpack/api/actions/security/invalidate_token.rb +18 -5
  195. data/lib/elasticsearch/xpack/api/actions/security/params_registry.rb +16 -3
  196. data/lib/elasticsearch/xpack/api/actions/security/put_privileges.rb +19 -8
  197. data/lib/elasticsearch/xpack/api/actions/security/put_role.rb +19 -8
  198. data/lib/elasticsearch/xpack/api/actions/security/put_role_mapping.rb +19 -8
  199. data/lib/elasticsearch/xpack/api/actions/security/put_user.rb +19 -8
  200. data/lib/elasticsearch/xpack/api/actions/snapshot_lifecycle_management/delete_lifecycle.rb +50 -0
  201. data/lib/elasticsearch/xpack/api/actions/snapshot_lifecycle_management/execute_lifecycle.rb +50 -0
  202. data/lib/elasticsearch/xpack/api/actions/snapshot_lifecycle_management/execute_retention.rb +45 -0
  203. data/lib/elasticsearch/xpack/api/actions/snapshot_lifecycle_management/get_lifecycle.rb +52 -0
  204. data/lib/elasticsearch/xpack/api/actions/snapshot_lifecycle_management/get_stats.rb +45 -0
  205. data/lib/elasticsearch/xpack/api/actions/snapshot_lifecycle_management/get_status.rb +45 -0
  206. data/lib/elasticsearch/xpack/api/actions/snapshot_lifecycle_management/params_registry.rb +62 -0
  207. data/lib/elasticsearch/xpack/api/actions/snapshot_lifecycle_management/put_lifecycle.rb +51 -0
  208. data/lib/elasticsearch/xpack/api/actions/snapshot_lifecycle_management/start.rb +45 -0
  209. data/lib/elasticsearch/xpack/api/actions/snapshot_lifecycle_management/stop.rb +45 -0
  210. data/lib/elasticsearch/xpack/api/actions/sql/clear_cursor.rb +18 -5
  211. data/lib/elasticsearch/xpack/api/actions/sql/params_registry.rb +16 -3
  212. data/lib/elasticsearch/xpack/api/actions/sql/query.rb +18 -5
  213. data/lib/elasticsearch/xpack/api/actions/sql/translate.rb +18 -5
  214. data/lib/elasticsearch/xpack/api/actions/ssl/certificates.rb +18 -5
  215. data/lib/elasticsearch/xpack/api/actions/ssl/params_registry.rb +16 -3
  216. data/lib/elasticsearch/xpack/api/actions/transform/delete_transform.rb +18 -5
  217. data/lib/elasticsearch/xpack/api/actions/transform/get_transform.rb +19 -6
  218. data/lib/elasticsearch/xpack/api/actions/transform/get_transform_stats.rb +18 -5
  219. data/lib/elasticsearch/xpack/api/actions/transform/params_registry.rb +16 -3
  220. data/lib/elasticsearch/xpack/api/actions/transform/preview_transform.rb +18 -5
  221. data/lib/elasticsearch/xpack/api/actions/transform/put_transform.rb +18 -5
  222. data/lib/elasticsearch/xpack/api/actions/transform/start_transform.rb +18 -5
  223. data/lib/elasticsearch/xpack/api/actions/transform/stop_transform.rb +18 -5
  224. data/lib/elasticsearch/xpack/api/actions/transform/update_transform.rb +19 -6
  225. data/lib/elasticsearch/xpack/api/actions/usage.rb +19 -6
  226. data/lib/elasticsearch/xpack/api/actions/watcher/ack_watch.rb +19 -6
  227. data/lib/elasticsearch/xpack/api/actions/watcher/activate_watch.rb +18 -5
  228. data/lib/elasticsearch/xpack/api/actions/watcher/deactivate_watch.rb +18 -5
  229. data/lib/elasticsearch/xpack/api/actions/watcher/delete_watch.rb +18 -5
  230. data/lib/elasticsearch/xpack/api/actions/watcher/execute_watch.rb +19 -6
  231. data/lib/elasticsearch/xpack/api/actions/watcher/get_watch.rb +18 -5
  232. data/lib/elasticsearch/xpack/api/actions/watcher/params_registry.rb +16 -3
  233. data/lib/elasticsearch/xpack/api/actions/watcher/put_watch.rb +18 -5
  234. data/lib/elasticsearch/xpack/api/actions/watcher/start.rb +18 -5
  235. data/lib/elasticsearch/xpack/api/actions/watcher/stats.rb +21 -12
  236. data/lib/elasticsearch/xpack/api/actions/watcher/stop.rb +18 -5
  237. data/lib/elasticsearch/xpack/api/namespace/async_search.rb +16 -4
  238. data/lib/elasticsearch/xpack/api/namespace/autoscaling.rb +34 -0
  239. data/lib/elasticsearch/xpack/api/namespace/cat.rb +16 -3
  240. data/lib/elasticsearch/xpack/api/namespace/cross_cluster_replication.rb +34 -0
  241. data/lib/elasticsearch/xpack/api/namespace/data_frame.rb +16 -3
  242. data/lib/elasticsearch/xpack/api/namespace/enrich.rb +34 -0
  243. data/lib/elasticsearch/xpack/api/namespace/eql.rb +34 -0
  244. data/lib/elasticsearch/xpack/api/namespace/graph.rb +16 -3
  245. data/lib/elasticsearch/xpack/api/namespace/index_lifecycle_management.rb +16 -3
  246. data/lib/elasticsearch/xpack/api/namespace/indices.rb +34 -0
  247. data/lib/elasticsearch/xpack/api/namespace/license.rb +16 -3
  248. data/lib/elasticsearch/xpack/api/namespace/machine_learning.rb +16 -3
  249. data/lib/elasticsearch/xpack/api/namespace/migration.rb +16 -3
  250. data/lib/elasticsearch/xpack/api/namespace/monitoring.rb +16 -3
  251. data/lib/elasticsearch/xpack/api/namespace/rollup.rb +16 -3
  252. data/lib/elasticsearch/xpack/api/namespace/searchable_snapshots.rb +34 -0
  253. data/lib/elasticsearch/xpack/api/namespace/security.rb +16 -3
  254. data/lib/elasticsearch/xpack/api/namespace/snapshot_lifecycle_management.rb +34 -0
  255. data/lib/elasticsearch/xpack/api/namespace/sql.rb +16 -3
  256. data/lib/elasticsearch/xpack/api/namespace/ssl.rb +16 -4
  257. data/lib/elasticsearch/xpack/api/namespace/transform.rb +16 -3
  258. data/lib/elasticsearch/xpack/api/namespace/watcher.rb +16 -3
  259. data/lib/elasticsearch/xpack/version.rb +17 -4
  260. metadata +63 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f7377c083f2cbc053f7b513b9493deb7f4031879e29fa846507be1732b1c736e
4
- data.tar.gz: b98d4a0f75d9032dbe6e5b4dc352e1e747c175b122b49a5ddd1ea1eb3facc5dc
3
+ metadata.gz: acc239580e9c20db9dc0a2030fefa58c88861c9179a881372a03c13d086fdec9
4
+ data.tar.gz: 0d3985f87b6ef7139fa7c369cf8357fdcd7cdf5195b35db0b43a71da7cca04d8
5
5
  SHA512:
6
- metadata.gz: 82b168bf8ede5754a2c81adae45e3a73f0d82922667ab1835f3c5019772d24228de166aa3c272eaa17e654f2a0f9e327a98e399423a978c63ed8694c3244a947
7
- data.tar.gz: 8b673461d671a2ee65b914e3cb971eec8e8ffad0dc3f59b72a96708c85894a6689d6f60d075b1f157a916b23d1620dbf25024ee17ed19783309c95a043202d0b
6
+ metadata.gz: 517ef408851d421d30b34ad8e329f6fb9bf57394c01cfc0055769d1ebd3be0cb79b18b5b48627aa35129d4da544fa2a6174ee8e5ba1245a43411579eeb167f77
7
+ data.tar.gz: 4e1dd5071dddfbef4572595ee6bfdb17fee427c8fc06ce9b7602355f2cc127a840015639dfdad98402afa1b187fc08d7cebe42e6a7759d524522fac6dfb88348
data/Gemfile CHANGED
@@ -1,6 +1,19 @@
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
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
4
17
 
5
18
  source 'https://rubygems.org'
6
19
 
@@ -9,6 +22,7 @@ gemspec
9
22
 
10
23
  group :development do
11
24
  gem 'rspec'
25
+ gem 'rspec_junit_formatter'
12
26
  if defined?(JRUBY_VERSION)
13
27
  gem 'pry-nav'
14
28
  else
data/Rakefile CHANGED
@@ -1,6 +1,19 @@
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
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
4
17
 
5
18
  require 'bundler/gem_tasks'
6
19
 
@@ -1,6 +1,19 @@
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
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
4
17
 
5
18
  # coding: utf-8
6
19
  lib = File.expand_path('../lib', __FILE__)
@@ -1,6 +1,19 @@
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
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
4
17
 
5
18
  # An example of a complex configuration for Elasticsearch Watcher alerting and notification system.
6
19
  #
@@ -1,6 +1,19 @@
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
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
4
17
 
5
18
  require "elasticsearch/api"
6
19
  require "elasticsearch/xpack/version"
@@ -91,6 +104,34 @@ module Elasticsearch
91
104
  def cat
92
105
  @cat ||= xpack.cat
93
106
  end
107
+
108
+ def indices
109
+ @indices ||= xpack.indices
110
+ end
111
+
112
+ def searchable_snapshots
113
+ @searchable_snapshots ||= xpack.searchable_snapshots
114
+ end
115
+
116
+ def cross_cluster_replication
117
+ @cross_cluster_replication ||= xpack.cross_cluster_replication
118
+ end
119
+
120
+ def autoscaling
121
+ @autoscaling ||= xpack.autoscaling
122
+ end
123
+
124
+ def enrich
125
+ @enrich ||= xpack.enrich
126
+ end
127
+
128
+ def eql
129
+ @eql ||= xpack.eql
130
+ end
131
+
132
+ def snapshot_lifecycle_management
133
+ @snapshot_lifecycle_management ||= xpack.snapshot_lifecycle_management
134
+ end
94
135
  end
95
136
  end
96
137
  end if defined?(Elasticsearch::Transport::Client)
@@ -1,6 +1,19 @@
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
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
4
17
 
5
18
  module Elasticsearch
6
19
  module XPack
@@ -12,7 +25,7 @@ module Elasticsearch
12
25
  # @option arguments [String] :id The async search ID
13
26
  # @option arguments [Hash] :headers Custom HTTP headers
14
27
  #
15
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.7/async-search.html
28
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/async-search.html
16
29
  #
17
30
  def delete(arguments = {})
18
31
  raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
@@ -30,8 +43,8 @@ module Elasticsearch
30
43
  body = nil
31
44
  perform_request(method, path, params, body, headers).body
32
45
  end
46
+ end
33
47
  end
34
48
  end
35
- end
36
49
  end
37
50
  end
@@ -1,6 +1,19 @@
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
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
4
17
 
5
18
  module Elasticsearch
6
19
  module XPack
@@ -15,7 +28,7 @@ module Elasticsearch
15
28
  # @option arguments [Boolean] :typed_keys Specify whether aggregation and suggester names should be prefixed by their respective types in the response
16
29
  # @option arguments [Hash] :headers Custom HTTP headers
17
30
  #
18
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.7/async-search.html
31
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/async-search.html
19
32
  #
20
33
  def get(arguments = {})
21
34
  raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
@@ -42,8 +55,8 @@ module Elasticsearch
42
55
  :keep_alive,
43
56
  :typed_keys
44
57
  ].freeze)
58
+ end
45
59
  end
46
60
  end
47
- end
48
61
  end
49
62
  end
@@ -1,6 +1,19 @@
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
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
4
17
 
5
18
  module Elasticsearch
6
19
  module XPack
@@ -1,6 +1,19 @@
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
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
4
17
 
5
18
  module Elasticsearch
6
19
  module XPack
@@ -17,9 +30,7 @@ module Elasticsearch
17
30
  # @option arguments [Boolean] :request_cache Specify if request cache should be used for this request or not, defaults to true
18
31
  # @option arguments [String] :analyzer The analyzer to use for the query string
19
32
  # @option arguments [Boolean] :analyze_wildcard Specify whether wildcard and prefix queries should be analyzed (default: false)
20
- # @option arguments [String] :default_operator The default operator for query string query (AND or OR)
21
- # (options: AND,OR)
22
-
33
+ # @option arguments [String] :default_operator The default operator for query string query (AND or OR) (options: AND, OR)
23
34
  # @option arguments [String] :df The field to use as default where no field prefix is given in the query string
24
35
  # @option arguments [Boolean] :explain Specify whether to return detailed information about score computation as part of a hit
25
36
  # @option arguments [List] :stored_fields A comma-separated list of stored fields to return as part of a hit
@@ -28,16 +39,12 @@ module Elasticsearch
28
39
  # @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
29
40
  # @option arguments [Boolean] :ignore_throttled Whether specified concrete, expanded or aliased indices should be ignored when throttled
30
41
  # @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)
31
- # @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
32
- # (options: open,closed,hidden,none,all)
33
-
42
+ # @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)
34
43
  # @option arguments [Boolean] :lenient Specify whether format-based query failures (such as providing text to a numeric field) should be ignored
35
44
  # @option arguments [String] :preference Specify the node or shard the operation should be performed on (default: random)
36
45
  # @option arguments [String] :q Query in the Lucene query string syntax
37
46
  # @option arguments [List] :routing A comma-separated list of specific routing values
38
- # @option arguments [String] :search_type Search operation type
39
- # (options: query_then_fetch,dfs_query_then_fetch)
40
-
47
+ # @option arguments [String] :search_type Search operation type (options: query_then_fetch, dfs_query_then_fetch)
41
48
  # @option arguments [Number] :size Number of hits to return (default: 10)
42
49
  # @option arguments [List] :sort A comma-separated list of <field>:<direction> pairs
43
50
  # @option arguments [List] :_source True or false to return the _source field or not, or a list of fields to return
@@ -46,9 +53,7 @@ module Elasticsearch
46
53
  # @option arguments [Number] :terminate_after The maximum number of documents to collect for each shard, upon reaching which the query execution will terminate early.
47
54
  # @option arguments [List] :stats Specific 'tag' of the request for logging and statistical purposes
48
55
  # @option arguments [String] :suggest_field Specify which field to use for suggestions
49
- # @option arguments [String] :suggest_mode Specify suggest mode
50
- # (options: missing,popular,always)
51
-
56
+ # @option arguments [String] :suggest_mode Specify suggest mode (options: missing, popular, always)
52
57
  # @option arguments [Number] :suggest_size How many suggestions to return in response
53
58
  # @option arguments [String] :suggest_text The source text for which the suggestions should be returned
54
59
  # @option arguments [Time] :timeout Explicit operation timeout
@@ -62,7 +67,7 @@ module Elasticsearch
62
67
  # @option arguments [Hash] :headers Custom HTTP headers
63
68
  # @option arguments [Hash] :body The search definition using the Query DSL
64
69
  #
65
- # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.7/async-search.html
70
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/async-search.html
66
71
  #
67
72
  def submit(arguments = {})
68
73
  headers = arguments.delete(:headers) || {}
@@ -76,7 +81,7 @@ module Elasticsearch
76
81
  "#{Elasticsearch::API::Utils.__listify(_index)}/_async_search"
77
82
  else
78
83
  "_async_search"
79
- end
84
+ end
80
85
  params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
81
86
 
82
87
  body = arguments[:body]
@@ -129,8 +134,8 @@ module Elasticsearch
129
134
  :seq_no_primary_term,
130
135
  :max_concurrent_shard_requests
131
136
  ].freeze)
137
+ end
132
138
  end
133
139
  end
134
- end
135
140
  end
136
141
  end
@@ -0,0 +1,54 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ module Elasticsearch
19
+ module XPack
20
+ module API
21
+ module Autoscaling
22
+ module Actions
23
+ # Deletes an autoscaling policy.
24
+ # This functionality is Experimental and may be changed or removed
25
+ # completely in a future release. Elastic will take a best effort approach
26
+ # to fix any issues, but experimental features are not subject to the
27
+ # support SLA of official GA features.
28
+ #
29
+ # @option arguments [String] :name the name of the autoscaling policy
30
+ # @option arguments [Hash] :headers Custom HTTP headers
31
+ #
32
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/autoscaling-delete-autoscaling-policy.html
33
+ #
34
+ def delete_autoscaling_policy(arguments = {})
35
+ raise ArgumentError, "Required argument 'name' missing" unless arguments[:name]
36
+
37
+ headers = arguments.delete(:headers) || {}
38
+
39
+ arguments = arguments.clone
40
+
41
+ _name = arguments.delete(:name)
42
+
43
+ method = Elasticsearch::API::HTTP_DELETE
44
+ path = "_autoscaling/policy/#{Elasticsearch::API::Utils.__listify(_name)}"
45
+ params = {}
46
+
47
+ body = nil
48
+ perform_request(method, path, params, body, headers).body
49
+ end
50
+ end
51
+ end
52
+ end
53
+ end
54
+ end
@@ -0,0 +1,49 @@
1
+ # Licensed to Elasticsearch B.V. under one or more contributor
2
+ # license agreements. See the NOTICE file distributed with
3
+ # this work for additional information regarding copyright
4
+ # ownership. Elasticsearch B.V. licenses this file to you under
5
+ # the Apache License, Version 2.0 (the "License"); you may
6
+ # not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing,
12
+ # software distributed under the License is distributed on an
13
+ # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ # KIND, either express or implied. See the License for the
15
+ # specific language governing permissions and limitations
16
+ # under the License.
17
+
18
+ module Elasticsearch
19
+ module XPack
20
+ module API
21
+ module Autoscaling
22
+ module Actions
23
+ # Gets the current autoscaling decision based on the configured autoscaling policy, indicating whether or not autoscaling is needed.
24
+ # This functionality is Experimental and may be changed or removed
25
+ # completely in a future release. Elastic will take a best effort approach
26
+ # to fix any issues, but experimental features are not subject to the
27
+ # support SLA of official GA features.
28
+ #
29
+ # @option arguments [Hash] :headers Custom HTTP headers
30
+ #
31
+ # @see https://www.elastic.co/guide/en/elasticsearch/reference/7.9/autoscaling-get-autoscaling-decision.html
32
+ #
33
+ def get_autoscaling_decision(arguments = {})
34
+ headers = arguments.delete(:headers) || {}
35
+
36
+ arguments = arguments.clone
37
+
38
+ method = Elasticsearch::API::HTTP_GET
39
+ path = "_autoscaling/decision"
40
+ params = {}
41
+
42
+ body = nil
43
+ perform_request(method, path, params, body, headers).body
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end