elasticsearch-api 7.11.2 → 8.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (807) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -9
  3. data/README.md +15 -188
  4. data/Rakefile +23 -87
  5. data/api-spec-testing/README.md +118 -0
  6. data/api-spec-testing/custom_cleanup.rb +32 -0
  7. data/api-spec-testing/logging.rb +28 -0
  8. data/api-spec-testing/rspec_matchers.rb +336 -0
  9. data/api-spec-testing/test_file/action.rb +239 -0
  10. data/api-spec-testing/test_file/task_group.rb +340 -0
  11. data/api-spec-testing/test_file/test.rb +296 -0
  12. data/api-spec-testing/test_file.rb +179 -0
  13. data/api-spec-testing/wipe_cluster.rb +424 -0
  14. data/elasticsearch-api.gemspec +19 -14
  15. data/lib/elasticsearch/api/actions/async_search/delete.rb +53 -0
  16. data/lib/elasticsearch/api/actions/async_search/get.rb +56 -0
  17. data/lib/elasticsearch/api/actions/async_search/status.rb +53 -0
  18. data/lib/elasticsearch/api/actions/async_search/submit.rb +97 -0
  19. data/lib/elasticsearch/api/actions/autoscaling/delete_autoscaling_policy.rb +53 -0
  20. data/lib/elasticsearch/api/actions/autoscaling/get_autoscaling_capacity.rb +48 -0
  21. data/lib/elasticsearch/api/actions/autoscaling/get_autoscaling_policy.rb +53 -0
  22. data/lib/elasticsearch/api/actions/autoscaling/put_autoscaling_policy.rb +55 -0
  23. data/lib/elasticsearch/api/actions/bulk.rb +13 -28
  24. data/lib/elasticsearch/api/actions/cat/aliases.rb +11 -19
  25. data/lib/elasticsearch/api/actions/cat/allocation.rb +11 -20
  26. data/lib/elasticsearch/api/actions/cat/component_templates.rb +62 -0
  27. data/lib/elasticsearch/api/actions/cat/count.rb +11 -17
  28. data/lib/elasticsearch/api/actions/cat/fielddata.rb +11 -19
  29. data/lib/elasticsearch/api/actions/cat/health.rb +11 -19
  30. data/lib/elasticsearch/api/actions/cat/help.rb +11 -14
  31. data/lib/elasticsearch/api/actions/cat/indices.rb +11 -26
  32. data/lib/elasticsearch/api/actions/cat/master.rb +11 -19
  33. data/lib/elasticsearch/api/actions/cat/ml_data_frame_analytics.rb +63 -0
  34. data/lib/elasticsearch/api/actions/cat/ml_datafeeds.rb +62 -0
  35. data/lib/elasticsearch/api/actions/cat/ml_jobs.rb +63 -0
  36. data/lib/elasticsearch/api/actions/cat/ml_trained_models.rb +65 -0
  37. data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +11 -19
  38. data/lib/elasticsearch/api/actions/cat/nodes.rb +12 -23
  39. data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +11 -20
  40. data/lib/elasticsearch/api/actions/cat/plugins.rb +12 -19
  41. data/lib/elasticsearch/api/actions/cat/recovery.rb +11 -22
  42. data/lib/elasticsearch/api/actions/cat/repositories.rb +11 -19
  43. data/lib/elasticsearch/api/actions/cat/segments.rb +11 -18
  44. data/lib/elasticsearch/api/actions/cat/shards.rb +11 -22
  45. data/lib/elasticsearch/api/actions/cat/snapshots.rb +11 -20
  46. data/lib/elasticsearch/api/actions/cat/tasks.rb +15 -22
  47. data/lib/elasticsearch/api/actions/cat/templates.rb +11 -19
  48. data/lib/elasticsearch/api/actions/cat/thread_pool.rb +12 -21
  49. data/lib/elasticsearch/api/actions/cat/transforms.rb +64 -0
  50. data/lib/elasticsearch/api/actions/clear_scroll.rb +10 -5
  51. data/lib/elasticsearch/api/actions/close_point_in_time.rb +47 -0
  52. data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +14 -17
  53. data/lib/elasticsearch/api/actions/cluster/delete_component_template.rb +11 -14
  54. data/lib/elasticsearch/api/actions/cluster/delete_voting_config_exclusions.rb +12 -13
  55. data/lib/elasticsearch/api/actions/cluster/exists_component_template.rb +11 -13
  56. data/lib/elasticsearch/api/actions/cluster/get_component_template.rb +11 -14
  57. data/lib/elasticsearch/api/actions/cluster/get_settings.rb +11 -16
  58. data/lib/elasticsearch/api/actions/cluster/health.rb +11 -23
  59. data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +11 -14
  60. data/lib/elasticsearch/api/actions/cluster/post_voting_config_exclusions.rb +12 -15
  61. data/lib/elasticsearch/api/actions/cluster/put_component_template.rb +11 -15
  62. data/lib/elasticsearch/api/actions/cluster/put_settings.rb +11 -15
  63. data/lib/elasticsearch/api/actions/cluster/remote_info.rb +10 -5
  64. data/lib/elasticsearch/api/actions/cluster/reroute.rb +12 -19
  65. data/lib/elasticsearch/api/actions/cluster/state.rb +11 -20
  66. data/lib/elasticsearch/api/actions/cluster/stats.rb +11 -14
  67. data/lib/elasticsearch/api/actions/count.rb +17 -37
  68. data/lib/elasticsearch/api/actions/create.rb +5 -8
  69. data/lib/elasticsearch/api/actions/cross_cluster_replication/delete_auto_follow_pattern.rb +53 -0
  70. data/lib/elasticsearch/api/actions/cross_cluster_replication/follow.rb +56 -0
  71. data/lib/elasticsearch/api/actions/cross_cluster_replication/follow_info.rb +53 -0
  72. data/lib/elasticsearch/api/actions/cross_cluster_replication/follow_stats.rb +53 -0
  73. data/lib/elasticsearch/api/actions/cross_cluster_replication/forget_follower.rb +55 -0
  74. data/lib/elasticsearch/api/actions/cross_cluster_replication/get_auto_follow_pattern.rb +55 -0
  75. data/lib/elasticsearch/api/actions/cross_cluster_replication/pause_auto_follow_pattern.rb +53 -0
  76. data/lib/elasticsearch/api/actions/{indices/freeze.rb → cross_cluster_replication/pause_follow.rb} +20 -23
  77. data/lib/elasticsearch/api/actions/cross_cluster_replication/put_auto_follow_pattern.rb +55 -0
  78. data/lib/elasticsearch/api/actions/cross_cluster_replication/resume_auto_follow_pattern.rb +53 -0
  79. data/lib/elasticsearch/api/actions/cross_cluster_replication/resume_follow.rb +54 -0
  80. data/lib/elasticsearch/api/actions/cross_cluster_replication/stats.rb +48 -0
  81. data/lib/elasticsearch/api/actions/cross_cluster_replication/unfollow.rb +53 -0
  82. data/lib/elasticsearch/api/actions/dangling_indices/delete_dangling_index.rb +11 -15
  83. data/lib/elasticsearch/api/actions/dangling_indices/import_dangling_index.rb +11 -15
  84. data/lib/elasticsearch/api/actions/dangling_indices/list_dangling_indices.rb +10 -5
  85. data/lib/elasticsearch/api/actions/delete.rb +18 -35
  86. data/lib/elasticsearch/api/actions/delete_by_query.rb +14 -64
  87. data/lib/elasticsearch/api/actions/delete_by_query_rethrottle.rb +11 -13
  88. data/lib/elasticsearch/api/actions/delete_script.rb +11 -14
  89. data/lib/elasticsearch/api/actions/enrich/delete_policy.rb +53 -0
  90. data/lib/elasticsearch/api/actions/enrich/execute_policy.rb +54 -0
  91. data/lib/elasticsearch/api/actions/enrich/get_policy.rb +55 -0
  92. data/lib/elasticsearch/api/actions/enrich/put_policy.rb +55 -0
  93. data/lib/elasticsearch/api/actions/enrich/stats.rb +48 -0
  94. data/lib/elasticsearch/api/actions/eql/delete.rb +53 -0
  95. data/lib/elasticsearch/api/actions/eql/get.rb +55 -0
  96. data/lib/elasticsearch/api/actions/eql/get_status.rb +53 -0
  97. data/lib/elasticsearch/api/actions/eql/search.rb +60 -0
  98. data/lib/elasticsearch/api/actions/exists.rb +10 -35
  99. data/lib/elasticsearch/api/actions/exists_source.rb +13 -34
  100. data/lib/elasticsearch/api/actions/explain.rb +13 -38
  101. data/lib/elasticsearch/api/actions/features/get_features.rb +49 -0
  102. data/lib/elasticsearch/api/actions/features/reset_features.rb +52 -0
  103. data/lib/elasticsearch/api/actions/field_caps.rb +19 -23
  104. data/lib/elasticsearch/api/actions/fleet/global_checkpoints.rb +57 -0
  105. data/lib/elasticsearch/api/actions/fleet/msearch.rb +85 -0
  106. data/lib/elasticsearch/api/actions/fleet/search.rb +68 -0
  107. data/lib/elasticsearch/api/actions/get.rb +19 -37
  108. data/lib/elasticsearch/api/actions/get_script.rb +11 -13
  109. data/lib/elasticsearch/api/actions/get_script_context.rb +10 -9
  110. data/lib/elasticsearch/api/actions/get_script_languages.rb +10 -9
  111. data/lib/elasticsearch/api/actions/get_source.rb +13 -35
  112. data/lib/elasticsearch/api/actions/graph/explore.rb +61 -0
  113. data/lib/elasticsearch/api/actions/index.rb +12 -36
  114. data/lib/elasticsearch/api/actions/index_lifecycle_management/delete_lifecycle.rb +53 -0
  115. data/lib/elasticsearch/api/actions/index_lifecycle_management/explain_lifecycle.rb +55 -0
  116. data/lib/elasticsearch/api/actions/index_lifecycle_management/get_lifecycle.rb +55 -0
  117. data/lib/elasticsearch/api/actions/index_lifecycle_management/get_status.rb +48 -0
  118. data/lib/elasticsearch/api/actions/index_lifecycle_management/migrate_to_data_tiers.rb +50 -0
  119. data/lib/elasticsearch/api/actions/index_lifecycle_management/move_to_step.rb +54 -0
  120. data/lib/elasticsearch/api/actions/index_lifecycle_management/put_lifecycle.rb +54 -0
  121. data/lib/elasticsearch/api/actions/index_lifecycle_management/remove_policy.rb +53 -0
  122. data/lib/elasticsearch/api/actions/index_lifecycle_management/retry.rb +53 -0
  123. data/lib/elasticsearch/api/actions/index_lifecycle_management/start.rb +48 -0
  124. data/lib/elasticsearch/api/actions/index_lifecycle_management/stop.rb +48 -0
  125. data/lib/elasticsearch/api/actions/indices/add_block.rb +11 -17
  126. data/lib/elasticsearch/api/actions/indices/analyze.rb +17 -19
  127. data/lib/elasticsearch/api/actions/indices/clear_cache.rb +11 -20
  128. data/lib/elasticsearch/api/actions/indices/clone.rb +11 -15
  129. data/lib/elasticsearch/api/actions/indices/close.rb +11 -18
  130. data/lib/elasticsearch/api/actions/indices/create.rb +11 -17
  131. data/lib/elasticsearch/api/actions/indices/create_data_stream.rb +53 -0
  132. data/lib/elasticsearch/api/actions/indices/data_streams_stats.rb +55 -0
  133. data/lib/elasticsearch/api/actions/indices/delete.rb +17 -19
  134. data/lib/elasticsearch/api/actions/indices/delete_alias.rb +11 -14
  135. data/lib/elasticsearch/api/actions/indices/delete_data_stream.rb +54 -0
  136. data/lib/elasticsearch/api/actions/indices/delete_index_template.rb +11 -14
  137. data/lib/elasticsearch/api/actions/indices/delete_template.rb +16 -15
  138. data/lib/elasticsearch/api/actions/indices/{exists_type.rb → disk_usage.rb} +22 -30
  139. data/lib/elasticsearch/api/actions/indices/downsample.rb +63 -0
  140. data/lib/elasticsearch/api/actions/indices/exists.rb +8 -17
  141. data/lib/elasticsearch/api/actions/indices/exists_alias.rb +8 -15
  142. data/lib/elasticsearch/api/actions/indices/exists_index_template.rb +11 -14
  143. data/lib/elasticsearch/api/actions/indices/exists_template.rb +8 -14
  144. data/lib/elasticsearch/api/actions/indices/{upgrade.rb → field_usage_stats.rb} +24 -34
  145. data/lib/elasticsearch/api/actions/indices/flush.rb +11 -17
  146. data/lib/elasticsearch/api/actions/indices/forcemerge.rb +12 -18
  147. data/lib/elasticsearch/api/actions/indices/get.rb +12 -21
  148. data/lib/elasticsearch/api/actions/indices/get_alias.rb +11 -16
  149. data/lib/elasticsearch/api/actions/indices/get_data_stream.rb +56 -0
  150. data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +12 -32
  151. data/lib/elasticsearch/api/actions/indices/get_index_template.rb +12 -16
  152. data/lib/elasticsearch/api/actions/indices/get_mapping.rb +12 -32
  153. data/lib/elasticsearch/api/actions/indices/get_settings.rb +11 -19
  154. data/lib/elasticsearch/api/actions/indices/get_template.rb +11 -17
  155. data/lib/elasticsearch/api/actions/indices/migrate_to_data_stream.rb +53 -0
  156. data/lib/elasticsearch/api/actions/indices/modify_data_stream.rb +51 -0
  157. data/lib/elasticsearch/api/actions/indices/open.rb +11 -18
  158. data/lib/elasticsearch/api/actions/indices/promote_data_stream.rb +53 -0
  159. data/lib/elasticsearch/api/actions/indices/put_alias.rb +11 -14
  160. data/lib/elasticsearch/api/actions/indices/put_index_template.rb +11 -15
  161. data/lib/elasticsearch/api/actions/indices/put_mapping.rb +13 -35
  162. data/lib/elasticsearch/api/actions/indices/put_settings.rb +11 -19
  163. data/lib/elasticsearch/api/actions/indices/put_template.rb +11 -17
  164. data/lib/elasticsearch/api/actions/indices/recovery.rb +11 -14
  165. data/lib/elasticsearch/api/actions/indices/refresh.rb +11 -15
  166. data/lib/elasticsearch/api/actions/indices/{get_upgrade.rb → reload_search_analyzers.rb} +17 -28
  167. data/lib/elasticsearch/api/actions/indices/resolve_index.rb +11 -17
  168. data/lib/elasticsearch/api/actions/indices/rollover.rb +11 -18
  169. data/lib/elasticsearch/api/actions/indices/segments.rb +12 -17
  170. data/lib/elasticsearch/api/actions/indices/shard_stores.rb +11 -16
  171. data/lib/elasticsearch/api/actions/indices/shrink.rb +11 -17
  172. data/lib/elasticsearch/api/actions/indices/simulate_index_template.rb +11 -15
  173. data/lib/elasticsearch/api/actions/indices/simulate_template.rb +11 -15
  174. data/lib/elasticsearch/api/actions/indices/split.rb +11 -17
  175. data/lib/elasticsearch/api/actions/indices/stats.rb +28 -49
  176. data/lib/elasticsearch/api/actions/indices/unfreeze.rb +28 -20
  177. data/lib/elasticsearch/api/actions/indices/update_aliases.rb +11 -14
  178. data/lib/elasticsearch/api/actions/indices/validate_query.rb +17 -40
  179. data/lib/elasticsearch/api/actions/info.rb +10 -5
  180. data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +11 -14
  181. data/lib/elasticsearch/api/actions/ingest/geo_ip_stats.rb +48 -0
  182. data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +12 -13
  183. data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +10 -5
  184. data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +12 -14
  185. data/lib/elasticsearch/api/actions/ingest/simulate.rb +11 -13
  186. data/lib/elasticsearch/api/actions/knn_search.rb +62 -0
  187. data/lib/elasticsearch/api/actions/license/delete.rb +48 -0
  188. data/lib/elasticsearch/api/actions/license/get.rb +50 -0
  189. data/lib/elasticsearch/api/actions/license/get_basic_status.rb +48 -0
  190. data/lib/elasticsearch/api/actions/license/get_trial_status.rb +48 -0
  191. data/lib/elasticsearch/api/actions/license/post.rb +50 -0
  192. data/lib/elasticsearch/api/actions/license/post_start_basic.rb +49 -0
  193. data/lib/elasticsearch/api/actions/license/post_start_trial.rb +50 -0
  194. data/lib/elasticsearch/api/actions/logstash/delete_pipeline.rb +53 -0
  195. data/lib/elasticsearch/api/actions/logstash/get_pipeline.rb +53 -0
  196. data/lib/elasticsearch/api/actions/logstash/put_pipeline.rb +55 -0
  197. data/lib/elasticsearch/api/actions/machine_learning/clear_trained_model_deployment_cache.rb +57 -0
  198. data/lib/elasticsearch/api/actions/machine_learning/close_job.rb +57 -0
  199. data/lib/elasticsearch/api/actions/machine_learning/delete_calendar.rb +53 -0
  200. data/lib/elasticsearch/api/actions/machine_learning/delete_calendar_event.rb +57 -0
  201. data/lib/elasticsearch/api/actions/machine_learning/delete_calendar_job.rb +57 -0
  202. data/lib/elasticsearch/api/actions/machine_learning/delete_data_frame_analytics.rb +55 -0
  203. data/lib/elasticsearch/api/actions/machine_learning/delete_datafeed.rb +54 -0
  204. data/lib/elasticsearch/api/actions/machine_learning/delete_expired_data.rb +58 -0
  205. data/lib/elasticsearch/api/actions/machine_learning/delete_filter.rb +53 -0
  206. data/lib/elasticsearch/api/actions/machine_learning/delete_forecast.rb +62 -0
  207. data/lib/elasticsearch/api/actions/machine_learning/delete_job.rb +55 -0
  208. data/lib/elasticsearch/api/actions/machine_learning/delete_model_snapshot.rb +57 -0
  209. data/lib/elasticsearch/api/actions/machine_learning/delete_trained_model.rb +55 -0
  210. data/lib/elasticsearch/api/actions/machine_learning/delete_trained_model_alias.rb +57 -0
  211. data/lib/elasticsearch/api/actions/machine_learning/estimate_model_memory.rb +51 -0
  212. data/lib/elasticsearch/api/actions/machine_learning/evaluate_data_frame.rb +51 -0
  213. data/lib/elasticsearch/api/actions/machine_learning/explain_data_frame_analytics.rb +61 -0
  214. data/lib/elasticsearch/api/actions/machine_learning/flush_job.rb +59 -0
  215. data/lib/elasticsearch/api/actions/machine_learning/forecast.rb +57 -0
  216. data/lib/elasticsearch/api/actions/machine_learning/get_buckets.rb +75 -0
  217. data/lib/elasticsearch/api/actions/machine_learning/get_calendar_events.rb +58 -0
  218. data/lib/elasticsearch/api/actions/machine_learning/get_calendars.rb +63 -0
  219. data/lib/elasticsearch/api/actions/machine_learning/get_categories.rb +69 -0
  220. data/lib/elasticsearch/api/actions/machine_learning/get_data_frame_analytics.rb +59 -0
  221. data/lib/elasticsearch/api/actions/machine_learning/get_data_frame_analytics_stats.rb +59 -0
  222. data/lib/elasticsearch/api/actions/machine_learning/get_datafeed_stats.rb +56 -0
  223. data/lib/elasticsearch/api/actions/machine_learning/get_datafeeds.rb +57 -0
  224. data/lib/elasticsearch/api/actions/machine_learning/get_filters.rb +57 -0
  225. data/lib/elasticsearch/api/actions/machine_learning/get_influencers.rb +67 -0
  226. data/lib/elasticsearch/api/actions/machine_learning/get_job_stats.rb +56 -0
  227. data/lib/elasticsearch/api/actions/machine_learning/get_jobs.rb +57 -0
  228. data/lib/elasticsearch/api/actions/machine_learning/get_memory_stats.rb +57 -0
  229. data/lib/elasticsearch/api/actions/machine_learning/get_model_snapshot_upgrade_stats.rb +58 -0
  230. data/lib/elasticsearch/api/actions/machine_learning/get_model_snapshots.rb +72 -0
  231. data/lib/elasticsearch/api/actions/machine_learning/get_overall_buckets.rb +66 -0
  232. data/lib/elasticsearch/api/actions/machine_learning/get_records.rb +67 -0
  233. data/lib/elasticsearch/api/actions/machine_learning/get_trained_models.rb +63 -0
  234. data/lib/elasticsearch/api/actions/machine_learning/get_trained_models_stats.rb +58 -0
  235. data/lib/elasticsearch/api/actions/machine_learning/infer_trained_model.rb +67 -0
  236. data/lib/elasticsearch/api/actions/machine_learning/info.rb +48 -0
  237. data/lib/elasticsearch/api/actions/machine_learning/open_job.rb +54 -0
  238. data/lib/elasticsearch/api/actions/machine_learning/post_calendar_events.rb +55 -0
  239. data/lib/elasticsearch/api/actions/machine_learning/post_data.rb +57 -0
  240. data/lib/elasticsearch/api/actions/machine_learning/preview_data_frame_analytics.rb +61 -0
  241. data/lib/elasticsearch/api/actions/machine_learning/preview_datafeed.rb +63 -0
  242. data/lib/elasticsearch/api/actions/machine_learning/put_calendar.rb +54 -0
  243. data/lib/elasticsearch/api/actions/machine_learning/put_calendar_job.rb +57 -0
  244. data/lib/elasticsearch/api/actions/machine_learning/put_data_frame_analytics.rb +55 -0
  245. data/lib/elasticsearch/api/actions/machine_learning/put_datafeed.rb +59 -0
  246. data/lib/elasticsearch/api/actions/machine_learning/put_filter.rb +55 -0
  247. data/lib/elasticsearch/api/actions/machine_learning/put_job.rb +59 -0
  248. data/lib/elasticsearch/api/actions/machine_learning/put_trained_model.rb +56 -0
  249. data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_alias.rb +58 -0
  250. data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_definition_part.rb +63 -0
  251. data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_vocabulary.rb +59 -0
  252. data/lib/elasticsearch/api/actions/machine_learning/reset_job.rb +54 -0
  253. data/lib/elasticsearch/api/actions/machine_learning/revert_model_snapshot.rb +59 -0
  254. data/lib/elasticsearch/api/actions/machine_learning/set_upgrade_mode.rb +50 -0
  255. data/lib/elasticsearch/api/actions/machine_learning/start_data_frame_analytics.rb +55 -0
  256. data/lib/elasticsearch/api/actions/machine_learning/start_datafeed.rb +57 -0
  257. data/lib/elasticsearch/api/actions/machine_learning/start_trained_model_deployment.rb +64 -0
  258. data/lib/elasticsearch/api/actions/machine_learning/stop_data_frame_analytics.rb +57 -0
  259. data/lib/elasticsearch/api/actions/machine_learning/stop_datafeed.rb +58 -0
  260. data/lib/elasticsearch/api/actions/machine_learning/stop_trained_model_deployment.rb +60 -0
  261. data/lib/elasticsearch/api/actions/machine_learning/update_data_frame_analytics.rb +55 -0
  262. data/lib/elasticsearch/api/actions/machine_learning/update_datafeed.rb +59 -0
  263. data/lib/elasticsearch/api/actions/machine_learning/update_filter.rb +55 -0
  264. data/lib/elasticsearch/api/actions/machine_learning/update_job.rb +55 -0
  265. data/lib/elasticsearch/api/actions/machine_learning/update_model_snapshot.rb +59 -0
  266. data/lib/elasticsearch/api/actions/machine_learning/update_trained_model_deployment.rb +59 -0
  267. data/lib/elasticsearch/api/actions/machine_learning/upgrade_job_snapshot.rb +59 -0
  268. data/lib/elasticsearch/api/actions/machine_learning/validate.rb +51 -0
  269. data/lib/elasticsearch/api/actions/machine_learning/validate_detector.rb +51 -0
  270. data/lib/elasticsearch/api/actions/mget.rb +14 -32
  271. data/lib/elasticsearch/api/actions/migration/deprecations.rb +55 -0
  272. data/lib/elasticsearch/api/actions/migration/get_feature_upgrade_status.rb +48 -0
  273. data/lib/elasticsearch/api/actions/migration/post_feature_upgrade.rb +48 -0
  274. data/lib/elasticsearch/api/actions/monitoring/bulk.rb +74 -0
  275. data/lib/elasticsearch/api/actions/msearch.rb +13 -31
  276. data/lib/elasticsearch/api/actions/msearch_template.rb +13 -29
  277. data/lib/elasticsearch/api/actions/mtermvectors.rb +22 -46
  278. data/lib/elasticsearch/api/actions/nodes/clear_repositories_metering_archive.rb +63 -0
  279. data/lib/elasticsearch/api/actions/nodes/get_repositories_metering_info.rb +57 -0
  280. data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +15 -26
  281. data/lib/elasticsearch/api/actions/nodes/info.rb +12 -15
  282. data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +11 -13
  283. data/lib/elasticsearch/api/actions/nodes/stats.rb +15 -23
  284. data/lib/elasticsearch/api/actions/nodes/usage.rb +11 -13
  285. data/lib/elasticsearch/api/actions/open_point_in_time.rb +56 -0
  286. data/lib/elasticsearch/api/actions/ping.rb +9 -6
  287. data/lib/elasticsearch/api/actions/put_script.rb +11 -15
  288. data/lib/elasticsearch/api/actions/rank_eval.rb +11 -20
  289. data/lib/elasticsearch/api/actions/reindex.rb +11 -20
  290. data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +11 -13
  291. data/lib/elasticsearch/api/actions/render_search_template.rb +16 -11
  292. data/lib/elasticsearch/api/actions/rollup/delete_job.rb +57 -0
  293. data/lib/elasticsearch/api/actions/rollup/get_jobs.rb +59 -0
  294. data/lib/elasticsearch/api/actions/rollup/get_rollup_caps.rb +59 -0
  295. data/lib/elasticsearch/api/actions/rollup/get_rollup_index_caps.rb +57 -0
  296. data/lib/elasticsearch/api/actions/rollup/put_job.rb +59 -0
  297. data/lib/elasticsearch/api/actions/rollup/rollup_search.rb +61 -0
  298. data/lib/elasticsearch/api/actions/rollup/start_job.rb +57 -0
  299. data/lib/elasticsearch/api/actions/rollup/stop_job.rb +59 -0
  300. data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +12 -7
  301. data/lib/elasticsearch/api/actions/scroll.rb +17 -21
  302. data/lib/elasticsearch/api/actions/search.rb +21 -71
  303. data/lib/elasticsearch/api/actions/search_mvt.rb +79 -0
  304. data/lib/elasticsearch/api/actions/search_shards.rb +11 -18
  305. data/lib/elasticsearch/api/actions/search_template.rb +13 -37
  306. data/lib/elasticsearch/api/actions/searchable_snapshots/cache_stats.rb +59 -0
  307. data/lib/elasticsearch/api/actions/{indices/flush_synced.rb → searchable_snapshots/clear_cache.rb} +21 -30
  308. data/lib/elasticsearch/api/actions/searchable_snapshots/mount.rb +62 -0
  309. data/lib/elasticsearch/api/actions/searchable_snapshots/stats.rb +56 -0
  310. data/lib/elasticsearch/api/actions/security/activate_user_profile.rb +51 -0
  311. data/lib/elasticsearch/api/actions/security/authenticate.rb +48 -0
  312. data/lib/elasticsearch/api/actions/security/bulk_update_api_keys.rb +51 -0
  313. data/lib/elasticsearch/api/actions/security/change_password.rb +59 -0
  314. data/lib/elasticsearch/api/actions/security/clear_api_key_cache.rb +53 -0
  315. data/lib/elasticsearch/api/actions/security/clear_cached_privileges.rb +53 -0
  316. data/lib/elasticsearch/api/actions/security/clear_cached_realms.rb +54 -0
  317. data/lib/elasticsearch/api/actions/security/clear_cached_roles.rb +53 -0
  318. data/lib/elasticsearch/api/actions/security/clear_cached_service_tokens.rb +61 -0
  319. data/lib/elasticsearch/api/actions/security/create_api_key.rb +52 -0
  320. data/lib/elasticsearch/api/actions/security/create_service_token.rb +65 -0
  321. data/lib/elasticsearch/api/actions/security/delete_privileges.rb +58 -0
  322. data/lib/elasticsearch/api/actions/security/delete_role.rb +54 -0
  323. data/lib/elasticsearch/api/actions/security/delete_role_mapping.rb +54 -0
  324. data/lib/elasticsearch/api/actions/security/delete_service_token.rb +62 -0
  325. data/lib/elasticsearch/api/actions/security/delete_user.rb +54 -0
  326. data/lib/elasticsearch/api/actions/security/disable_user.rb +54 -0
  327. data/lib/elasticsearch/api/actions/security/disable_user_profile.rb +54 -0
  328. data/lib/elasticsearch/api/actions/security/enable_user.rb +54 -0
  329. data/lib/elasticsearch/api/actions/security/enable_user_profile.rb +54 -0
  330. data/lib/elasticsearch/api/actions/security/enroll_kibana.rb +48 -0
  331. data/lib/elasticsearch/api/actions/security/enroll_node.rb +48 -0
  332. data/lib/elasticsearch/api/actions/security/get_api_key.rb +54 -0
  333. data/lib/elasticsearch/api/actions/security/get_builtin_privileges.rb +48 -0
  334. data/lib/elasticsearch/api/actions/security/get_privileges.rb +60 -0
  335. data/lib/elasticsearch/api/actions/security/get_role.rb +63 -0
  336. data/lib/elasticsearch/api/actions/security/get_role_mapping.rb +55 -0
  337. data/lib/elasticsearch/api/actions/security/get_service_accounts.rb +60 -0
  338. data/lib/elasticsearch/api/actions/security/get_service_credentials.rb +57 -0
  339. data/lib/elasticsearch/api/actions/security/get_token.rb +51 -0
  340. data/lib/elasticsearch/api/actions/security/get_user.rb +64 -0
  341. data/lib/elasticsearch/api/actions/security/get_user_privileges.rb +48 -0
  342. data/lib/elasticsearch/api/actions/security/get_user_profile.rb +54 -0
  343. data/lib/elasticsearch/api/actions/security/grant_api_key.rb +52 -0
  344. data/lib/elasticsearch/api/actions/security/has_privileges.rb +58 -0
  345. data/lib/elasticsearch/api/actions/security/has_privileges_user_profile.rb +51 -0
  346. data/lib/elasticsearch/api/actions/security/invalidate_api_key.rb +51 -0
  347. data/lib/elasticsearch/api/actions/security/invalidate_token.rb +51 -0
  348. data/lib/elasticsearch/api/actions/security/oidc_authenticate.rb +51 -0
  349. data/lib/elasticsearch/api/actions/security/oidc_logout.rb +51 -0
  350. data/lib/elasticsearch/api/actions/security/oidc_prepare_authentication.rb +51 -0
  351. data/lib/elasticsearch/api/actions/security/put_privileges.rb +52 -0
  352. data/lib/elasticsearch/api/actions/security/put_role.rb +56 -0
  353. data/lib/elasticsearch/api/actions/security/put_role_mapping.rb +56 -0
  354. data/lib/elasticsearch/api/actions/security/put_user.rb +56 -0
  355. data/lib/elasticsearch/api/actions/security/query_api_keys.rb +55 -0
  356. data/lib/elasticsearch/api/actions/security/saml_authenticate.rb +51 -0
  357. data/lib/elasticsearch/api/actions/security/saml_complete_logout.rb +51 -0
  358. data/lib/elasticsearch/api/actions/security/saml_invalidate.rb +51 -0
  359. data/lib/elasticsearch/api/actions/security/saml_logout.rb +51 -0
  360. data/lib/elasticsearch/api/actions/security/saml_prepare_authentication.rb +51 -0
  361. data/lib/elasticsearch/api/actions/security/saml_service_provider_metadata.rb +53 -0
  362. data/lib/elasticsearch/api/actions/security/suggest_user_profiles.rb +55 -0
  363. data/lib/elasticsearch/api/actions/security/update_api_key.rb +54 -0
  364. data/lib/elasticsearch/api/actions/security/update_user_profile_data.rb +58 -0
  365. data/lib/elasticsearch/api/actions/shutdown/delete_node.rb +53 -0
  366. data/lib/elasticsearch/api/actions/shutdown/get_node.rb +55 -0
  367. data/lib/elasticsearch/api/actions/shutdown/put_node.rb +55 -0
  368. data/lib/elasticsearch/api/actions/snapshot/cleanup_repository.rb +11 -14
  369. data/lib/elasticsearch/api/actions/snapshot/clone.rb +11 -13
  370. data/lib/elasticsearch/api/actions/snapshot/create.rb +11 -14
  371. data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +11 -15
  372. data/lib/elasticsearch/api/actions/snapshot/delete.rb +18 -16
  373. data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +16 -15
  374. data/lib/elasticsearch/api/actions/snapshot/get.rb +26 -16
  375. data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +16 -15
  376. data/lib/elasticsearch/api/actions/snapshot/repository_analyze.rb +64 -0
  377. data/lib/elasticsearch/api/actions/snapshot/restore.rb +11 -14
  378. data/lib/elasticsearch/api/actions/snapshot/status.rb +16 -15
  379. data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +11 -14
  380. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/delete_lifecycle.rb +53 -0
  381. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/execute_lifecycle.rb +53 -0
  382. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/execute_retention.rb +48 -0
  383. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_lifecycle.rb +55 -0
  384. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_stats.rb +48 -0
  385. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_status.rb +48 -0
  386. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/put_lifecycle.rb +54 -0
  387. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/start.rb +48 -0
  388. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/stop.rb +48 -0
  389. data/lib/elasticsearch/api/actions/sql/clear_cursor.rb +51 -0
  390. data/lib/elasticsearch/api/actions/sql/delete_async.rb +53 -0
  391. data/lib/elasticsearch/api/actions/sql/get_async.rb +57 -0
  392. data/lib/elasticsearch/api/actions/sql/get_async_status.rb +53 -0
  393. data/lib/elasticsearch/api/actions/sql/query.rb +52 -0
  394. data/lib/elasticsearch/api/actions/sql/translate.rb +51 -0
  395. data/lib/elasticsearch/api/actions/ssl/certificates.rb +48 -0
  396. data/lib/elasticsearch/api/actions/tasks/cancel.rb +11 -16
  397. data/lib/elasticsearch/api/actions/tasks/get.rb +11 -14
  398. data/lib/elasticsearch/api/actions/tasks/list.rb +11 -19
  399. data/lib/elasticsearch/api/actions/terms_enum.rb +57 -0
  400. data/lib/elasticsearch/api/actions/termvectors.rb +19 -43
  401. data/lib/elasticsearch/api/actions/text_structure/find_structure.rb +73 -0
  402. data/lib/elasticsearch/api/actions/transform/delete_transform.rb +55 -0
  403. data/lib/elasticsearch/api/actions/transform/get_transform.rb +59 -0
  404. data/lib/elasticsearch/api/actions/transform/get_transform_stats.rb +56 -0
  405. data/lib/elasticsearch/api/actions/transform/preview_transform.rb +62 -0
  406. data/lib/elasticsearch/api/actions/transform/put_transform.rb +57 -0
  407. data/lib/elasticsearch/api/actions/transform/reset_transform.rb +55 -0
  408. data/lib/elasticsearch/api/actions/transform/start_transform.rb +54 -0
  409. data/lib/elasticsearch/api/actions/transform/stop_transform.rb +58 -0
  410. data/lib/elasticsearch/api/actions/transform/update_transform.rb +57 -0
  411. data/lib/elasticsearch/api/actions/transform/upgrade_transforms.rb +50 -0
  412. data/lib/elasticsearch/api/actions/update.rb +17 -38
  413. data/lib/elasticsearch/api/actions/update_by_query.rb +13 -65
  414. data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +11 -13
  415. data/lib/elasticsearch/api/actions/watcher/ack_watch.rb +60 -0
  416. data/lib/elasticsearch/api/actions/watcher/activate_watch.rb +53 -0
  417. data/lib/elasticsearch/api/actions/watcher/deactivate_watch.rb +53 -0
  418. data/lib/elasticsearch/api/actions/watcher/delete_watch.rb +61 -0
  419. data/lib/elasticsearch/api/actions/watcher/execute_watch.rb +57 -0
  420. data/lib/elasticsearch/api/actions/watcher/get_watch.rb +53 -0
  421. data/lib/elasticsearch/api/actions/watcher/put_watch.rb +58 -0
  422. data/lib/elasticsearch/api/actions/watcher/query_watches.rb +54 -0
  423. data/lib/elasticsearch/api/actions/watcher/start.rb +48 -0
  424. data/lib/elasticsearch/api/actions/watcher/stats.rb +56 -0
  425. data/lib/elasticsearch/api/actions/watcher/stop.rb +48 -0
  426. data/lib/elasticsearch/api/actions/xpack/info.rb +50 -0
  427. data/lib/elasticsearch/api/actions/xpack/usage.rb +49 -0
  428. data/lib/elasticsearch/api/namespace/async_search.rb +36 -0
  429. data/lib/elasticsearch/api/{actions/remote/info.rb → namespace/autoscaling.rb} +12 -13
  430. data/lib/elasticsearch/api/namespace/cross_cluster_replication.rb +38 -0
  431. data/lib/elasticsearch/api/namespace/data_frame_transform_deprecated.rb +36 -0
  432. data/lib/elasticsearch/api/namespace/enrich.rb +36 -0
  433. data/lib/elasticsearch/api/namespace/eql.rb +36 -0
  434. data/lib/elasticsearch/api/namespace/features.rb +36 -0
  435. data/lib/elasticsearch/api/namespace/fleet.rb +36 -0
  436. data/lib/elasticsearch/api/namespace/graph.rb +36 -0
  437. data/lib/elasticsearch/api/namespace/index_lifecycle_management.rb +38 -0
  438. data/lib/elasticsearch/api/namespace/ingest.rb +0 -1
  439. data/lib/elasticsearch/api/namespace/license.rb +36 -0
  440. data/lib/elasticsearch/api/namespace/logstash.rb +36 -0
  441. data/lib/elasticsearch/api/{actions/abort_benchmark.rb → namespace/machine_learning.rb} +13 -16
  442. data/lib/elasticsearch/api/namespace/migration.rb +36 -0
  443. data/lib/elasticsearch/api/namespace/monitoring.rb +36 -0
  444. data/lib/elasticsearch/api/namespace/rollup.rb +36 -0
  445. data/lib/elasticsearch/api/namespace/searchable_snapshots.rb +36 -0
  446. data/lib/elasticsearch/api/namespace/security.rb +36 -0
  447. data/lib/elasticsearch/api/namespace/shutdown.rb +37 -0
  448. data/lib/elasticsearch/api/namespace/snapshot_lifecycle_management.rb +38 -0
  449. data/lib/elasticsearch/api/namespace/sql.rb +36 -0
  450. data/lib/elasticsearch/api/namespace/ssl.rb +36 -0
  451. data/lib/elasticsearch/api/namespace/text_structure.rb +36 -0
  452. data/lib/elasticsearch/api/namespace/transform.rb +36 -0
  453. data/lib/elasticsearch/api/namespace/watcher.rb +36 -0
  454. data/lib/elasticsearch/api/namespace/xpack.rb +36 -0
  455. data/lib/elasticsearch/api/response.rb +48 -0
  456. data/lib/elasticsearch/api/utils.rb +6 -56
  457. data/lib/elasticsearch/api/version.rb +1 -1
  458. data/lib/elasticsearch/api.rb +28 -21
  459. data/spec/elasticsearch/api/actions/bulk_spec.rb +17 -36
  460. data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +1 -1
  461. data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +1 -1
  462. data/spec/elasticsearch/api/actions/cat/component_templates_spec.rb +46 -0
  463. data/spec/elasticsearch/api/actions/cat/count_spec.rb +1 -1
  464. data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +2 -2
  465. data/spec/elasticsearch/api/actions/cat/health_spec.rb +1 -1
  466. data/spec/elasticsearch/api/actions/cat/help_spec.rb +1 -1
  467. data/spec/elasticsearch/api/actions/cat/indices_spec.rb +1 -1
  468. data/spec/elasticsearch/api/actions/cat/master_spec.rb +1 -1
  469. data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +1 -1
  470. data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +1 -1
  471. data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +1 -1
  472. data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +1 -1
  473. data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +1 -1
  474. data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +1 -1
  475. data/spec/elasticsearch/api/actions/cat/segments_spec.rb +2 -2
  476. data/spec/elasticsearch/api/actions/cat/shards_spec.rb +1 -1
  477. data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +1 -1
  478. data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +1 -1
  479. data/spec/elasticsearch/api/actions/cat/templates_spec.rb +1 -1
  480. data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +1 -1
  481. data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +2 -2
  482. data/spec/elasticsearch/api/actions/{benchmark_spec.rb → close_point_in_time_spec.rb} +6 -6
  483. data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +1 -1
  484. data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +1 -1
  485. data/spec/elasticsearch/api/actions/cluster/health_spec.rb +3 -3
  486. data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +1 -1
  487. data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +1 -1
  488. data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +1 -1
  489. data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +2 -2
  490. data/spec/elasticsearch/api/actions/cluster/state_spec.rb +2 -2
  491. data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +1 -1
  492. data/spec/elasticsearch/api/actions/count_spec.rb +6 -9
  493. data/spec/elasticsearch/api/actions/create_document_spec.rb +8 -8
  494. data/spec/elasticsearch/api/actions/dangling_indices/delete_dangling_indices_spec.rb +1 -1
  495. data/spec/elasticsearch/api/actions/dangling_indices/import_dangling_indices_spec.rb +1 -1
  496. data/spec/elasticsearch/api/actions/dangling_indices/list_dangling_indices_spec.rb +1 -1
  497. data/spec/elasticsearch/api/actions/{indices/freeze_spec.rb → data_frame/update_data_frame_transform_spec.rb} +26 -30
  498. data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +2 -19
  499. data/spec/elasticsearch/api/actions/delete_document_spec.rb +9 -22
  500. data/spec/elasticsearch/api/actions/delete_script_spec.rb +1 -1
  501. data/spec/elasticsearch/api/actions/exists_document_spec.rb +10 -21
  502. data/spec/elasticsearch/api/actions/explain_document_spec.rb +9 -9
  503. data/spec/elasticsearch/api/actions/features/get_features_spec.rb +38 -0
  504. data/spec/elasticsearch/api/actions/features/reset_features_spec.rb +38 -0
  505. data/spec/elasticsearch/api/actions/field_caps_spec.rb +1 -1
  506. data/spec/elasticsearch/api/actions/fleet/global_checkpoints_spec.rb +44 -0
  507. data/spec/elasticsearch/api/actions/fleet/msearch_spec.rb +44 -0
  508. data/spec/elasticsearch/api/actions/fleet/search_spec.rb +44 -0
  509. data/spec/elasticsearch/api/actions/get_document_source_spec.rb +6 -18
  510. data/spec/elasticsearch/api/actions/get_document_spec.rb +6 -31
  511. data/spec/elasticsearch/api/actions/get_script_spec.rb +1 -1
  512. data/spec/elasticsearch/api/actions/index_document_spec.rb +10 -28
  513. data/spec/elasticsearch/api/actions/index_lifecycle_management/migrate_to_data_tiers_spec.rb +36 -0
  514. data/spec/elasticsearch/api/actions/indices/add_block_spec.rb +1 -1
  515. data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +3 -3
  516. data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +20 -7
  517. data/spec/elasticsearch/api/actions/indices/clone_spec.rb +6 -6
  518. data/spec/elasticsearch/api/actions/indices/close_spec.rb +3 -3
  519. data/spec/elasticsearch/api/actions/indices/create_spec.rb +3 -3
  520. data/spec/elasticsearch/api/actions/{nodes/shutdown_spec.rb → indices/data_streams_stats_spec.rb} +14 -32
  521. data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +2 -2
  522. data/spec/elasticsearch/api/actions/indices/delete_spec.rb +4 -4
  523. data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +2 -2
  524. data/spec/elasticsearch/api/actions/indices/disk_usage_spec.rb +48 -0
  525. data/spec/elasticsearch/api/actions/indices/field_usage_stats_spec.rb +46 -0
  526. data/spec/elasticsearch/api/actions/indices/flush_spec.rb +5 -5
  527. data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +1 -1
  528. data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +3 -3
  529. data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +2 -13
  530. data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +7 -22
  531. data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +4 -4
  532. data/spec/elasticsearch/api/actions/indices/get_spec.rb +2 -2
  533. data/spec/elasticsearch/api/actions/indices/open_spec.rb +3 -3
  534. data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +4 -4
  535. data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +8 -14
  536. data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +5 -5
  537. data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +3 -3
  538. data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +1 -1
  539. data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +5 -5
  540. data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +2 -2
  541. data/spec/elasticsearch/api/actions/indices/segments_spec.rb +5 -5
  542. data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +1 -1
  543. data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +1 -1
  544. data/spec/elasticsearch/api/actions/indices/split_spec.rb +1 -1
  545. data/spec/elasticsearch/api/actions/indices/stats_spec.rb +7 -12
  546. data/spec/elasticsearch/api/actions/indices/unfreeze_spec.rb +4 -4
  547. data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +2 -2
  548. data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +7 -17
  549. data/spec/elasticsearch/api/actions/info_spec.rb +1 -1
  550. data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +2 -2
  551. data/spec/elasticsearch/api/actions/ingest/geo_ip_stats_spec.rb +38 -0
  552. data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +2 -2
  553. data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +2 -2
  554. data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +2 -2
  555. data/spec/elasticsearch/api/actions/json_builders_spec.rb +2 -2
  556. data/spec/elasticsearch/api/actions/machine_learning/get_memory_stats_spec.rb +47 -0
  557. data/spec/elasticsearch/api/actions/machine_learning/get_model_snapshot_upgrade_stats_spec.rb +56 -0
  558. data/spec/elasticsearch/api/actions/machine_learning/infer_trained_model_deployment_spec.rb +46 -0
  559. data/spec/elasticsearch/api/actions/machine_learning/put_trained_model_definition_part_spec.rb +62 -0
  560. data/spec/elasticsearch/api/actions/machine_learning/put_trained_model_vocabulary_spec.rb +54 -0
  561. data/spec/elasticsearch/api/actions/machine_learning/reset_job_spec.rb +46 -0
  562. data/spec/elasticsearch/api/actions/machine_learning/set_upgrade_mode_spec.rb +51 -0
  563. data/spec/elasticsearch/api/actions/machine_learning/start_trained_model_deployment_spec.rb +46 -0
  564. data/spec/elasticsearch/api/actions/machine_learning/stop_trained_model_deployment_spec.rb +46 -0
  565. data/spec/elasticsearch/api/actions/machine_learning/update_trained_model_deployment_spec.rb +34 -0
  566. data/spec/elasticsearch/api/actions/mget_spec.rb +5 -20
  567. data/spec/elasticsearch/api/actions/migration/get_feature_upgrade_status_spec.rb +34 -0
  568. data/spec/elasticsearch/api/actions/migration/post_feature_upgrade_spec.rb +34 -0
  569. data/spec/elasticsearch/api/actions/msearch_spec.rb +16 -14
  570. data/spec/elasticsearch/api/actions/msearch_template_spec.rb +2 -2
  571. data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +4 -6
  572. data/spec/elasticsearch/api/actions/nodes/clear_repositories_metering_archive_spec.rb +51 -0
  573. data/spec/elasticsearch/api/actions/nodes/get_repositories_metering_info_spec.rb +44 -0
  574. data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +6 -6
  575. data/spec/elasticsearch/api/actions/nodes/info_spec.rb +6 -6
  576. data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +5 -5
  577. data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +4 -4
  578. data/spec/elasticsearch/api/actions/{abort_benchmark_spec.rb → open_point_in_time_spec.rb} +5 -5
  579. data/spec/elasticsearch/api/actions/put_script_spec.rb +2 -2
  580. data/spec/elasticsearch/api/actions/rank_eval_spec.rb +127 -0
  581. data/spec/elasticsearch/api/actions/reindex_spec.rb +1 -1
  582. data/spec/elasticsearch/api/actions/render_search_template_spec.rb +2 -2
  583. data/spec/elasticsearch/api/actions/scroll_spec.rb +2 -2
  584. data/spec/elasticsearch/api/actions/search_mvt_spec.rb +53 -0
  585. data/spec/elasticsearch/api/actions/search_shards_spec.rb +1 -1
  586. data/spec/elasticsearch/api/actions/search_spec.rb +2 -40
  587. data/spec/elasticsearch/api/actions/search_template_spec.rb +1 -1
  588. data/spec/elasticsearch/api/actions/searchable_snapshots/cache_stats_spec.rb +44 -0
  589. data/spec/elasticsearch/api/actions/searchable_snapshots/clear_cache_spec.rb +44 -0
  590. data/spec/elasticsearch/api/actions/searchable_snapshots/mount_spec.rb +56 -0
  591. data/spec/elasticsearch/api/actions/searchable_snapshots/stats_spec.rb +43 -0
  592. data/spec/elasticsearch/api/actions/security/clear_cached_service_tokens_spec.rb +58 -0
  593. data/spec/elasticsearch/api/actions/security/create_api_key_spec.rb +79 -0
  594. data/spec/elasticsearch/api/actions/security/create_service_token_spec.rb +69 -0
  595. data/spec/elasticsearch/api/actions/security/delete_service_token_spec.rb +60 -0
  596. data/spec/elasticsearch/api/actions/security/disable_user_profile_spec.rb +34 -0
  597. data/spec/elasticsearch/api/actions/security/enable_user_profile_spec.rb +34 -0
  598. data/spec/elasticsearch/api/actions/{indices/upgrade_spec.rb → security/enroll_kibana_spec.rb} +7 -8
  599. data/spec/elasticsearch/api/actions/security/get_api_key_spec.rb +56 -0
  600. data/spec/elasticsearch/api/actions/{remote/info_spec.rb → security/get_builtin_privileges_spec.rb} +4 -4
  601. data/spec/elasticsearch/api/actions/security/get_service_accounts_spec.rb +58 -0
  602. data/spec/elasticsearch/api/actions/security/get_service_credentials_spec.rb +53 -0
  603. data/spec/elasticsearch/api/actions/security/has_privileges_user_profile_spec.rb +34 -0
  604. data/spec/elasticsearch/api/actions/security/invalidate_api_key_spec.rb +38 -0
  605. data/spec/elasticsearch/api/actions/security/query_api_keys_spec.rb +48 -0
  606. data/spec/elasticsearch/api/actions/security/saml_authenticate_spec.rb +44 -0
  607. data/spec/elasticsearch/api/actions/security/saml_complete_logout_spec.rb +44 -0
  608. data/spec/elasticsearch/api/actions/security/saml_invalidate_spec.rb +44 -0
  609. data/spec/elasticsearch/api/actions/security/saml_logout_spec.rb +44 -0
  610. data/spec/elasticsearch/api/actions/security/saml_prepare_authentication_spec.rb +44 -0
  611. data/spec/elasticsearch/api/actions/security/saml_service_provider_metadata_spec.rb +46 -0
  612. data/spec/elasticsearch/api/actions/security/suggest_user_profiles_spec.rb +45 -0
  613. data/spec/elasticsearch/api/actions/security/update_api_key_spec.rb +34 -0
  614. data/spec/elasticsearch/api/actions/shutdown/delete_node_spec.rb +44 -0
  615. data/spec/elasticsearch/api/actions/shutdown/get_node_spec.rb +46 -0
  616. data/spec/elasticsearch/api/actions/shutdown/put_node_spec.rb +50 -0
  617. data/spec/elasticsearch/api/actions/snapshot/clone_spec.rb +1 -1
  618. data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +1 -1
  619. data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +1 -1
  620. data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +2 -2
  621. data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +1 -1
  622. data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +1 -1
  623. data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +1 -1
  624. data/spec/elasticsearch/api/actions/snapshot/repository_analize_spec.rb +46 -0
  625. data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +7 -10
  626. data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +2 -3
  627. data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +6 -7
  628. data/spec/elasticsearch/api/actions/sql/delete_async_spec.rb +46 -0
  629. data/spec/elasticsearch/api/actions/sql/get_async_spec.rb +46 -0
  630. data/spec/elasticsearch/api/actions/sql/get_async_stats_spec.rb +46 -0
  631. data/spec/elasticsearch/api/actions/tasks/cancel_spec.rb +7 -8
  632. data/spec/elasticsearch/api/actions/tasks/get_spec.rb +1 -1
  633. data/spec/elasticsearch/api/actions/tasks/list_spec.rb +6 -7
  634. data/spec/elasticsearch/api/actions/terms_enum_spec.rb +52 -0
  635. data/spec/elasticsearch/api/actions/termvectors_spec.rb +5 -5
  636. data/spec/elasticsearch/api/actions/update_by_query_spec.rb +6 -7
  637. data/spec/elasticsearch/api/actions/update_document_spec.rb +15 -29
  638. data/spec/elasticsearch/api/api_response_spec.rb +65 -0
  639. data/spec/elasticsearch/api/api_spec.rb +0 -3
  640. data/spec/elasticsearch/api/client_spec.rb +0 -4
  641. data/spec/elasticsearch/api/rest_api_yaml_spec.rb +44 -114
  642. data/spec/elasticsearch/api/run_rspec_matchers.rb +111 -0
  643. data/spec/elasticsearch/api/utils_spec.rb +14 -89
  644. data/spec/rest_api_tests_helper.rb +93 -0
  645. data/spec/skipped_tests_free.yml +34 -0
  646. data/spec/skipped_tests_platinum.yml +54 -0
  647. data/spec/spec_helper.rb +18 -19
  648. data/spec/unit_tests_platinum/test_helper.rb +72 -0
  649. data/spec/unit_tests_platinum/unit/async_search/delete_test.rb +39 -0
  650. data/spec/unit_tests_platinum/unit/async_search/get_test.rb +39 -0
  651. data/spec/unit_tests_platinum/unit/async_search/status_test.rb +39 -0
  652. data/spec/unit_tests_platinum/unit/async_search/submit_test.rb +50 -0
  653. data/spec/unit_tests_platinum/unit/autoscaling/delete_autoscaling_policy_test.rb +46 -0
  654. data/spec/unit_tests_platinum/unit/autoscaling/get_autoscaling_capacity_test.rb +40 -0
  655. data/spec/unit_tests_platinum/unit/autoscaling/get_autoscaling_policy_test.rb +46 -0
  656. data/spec/unit_tests_platinum/unit/autoscaling/put_autoscaling_policy_test.rb +52 -0
  657. data/spec/unit_tests_platinum/unit/enrich/delete_policy_test.rb +43 -0
  658. data/spec/unit_tests_platinum/unit/eql/delete_test.rb +46 -0
  659. data/spec/unit_tests_platinum/unit/eql/get_status_test.rb +46 -0
  660. data/spec/unit_tests_platinum/unit/eql/get_test.rb +46 -0
  661. data/spec/unit_tests_platinum/unit/eql/search_test.rb +52 -0
  662. data/spec/unit_tests_platinum/unit/graph/explore_test.rb +43 -0
  663. data/spec/unit_tests_platinum/unit/index_lifecycle_management/explain_test.rb +43 -0
  664. data/spec/unit_tests_platinum/unit/index_lifecycle_management/get_status_test.rb +43 -0
  665. data/spec/unit_tests_platinum/unit/index_lifecycle_management/move_to_step.rb +43 -0
  666. data/spec/unit_tests_platinum/unit/index_lifecycle_management/remove_policy_test.rb +43 -0
  667. data/spec/unit_tests_platinum/unit/index_lifecycle_management/retry_policy_test.rb +43 -0
  668. data/spec/unit_tests_platinum/unit/index_lifecycle_management/start_test.rb +43 -0
  669. data/spec/unit_tests_platinum/unit/index_lifecycle_management/stop_test.rb +43 -0
  670. data/spec/unit_tests_platinum/unit/indices/create_data_stream_test.rb +46 -0
  671. data/spec/unit_tests_platinum/unit/indices/data_stream_stats_test.rb +54 -0
  672. data/spec/unit_tests_platinum/unit/indices/delete_data_stream_test.rb +46 -0
  673. data/spec/unit_tests_platinum/unit/indices/downsample_test.rb +58 -0
  674. data/spec/unit_tests_platinum/unit/indices/get_data_stream_test.rb +50 -0
  675. data/spec/unit_tests_platinum/unit/indices/migrate_to_data_stream_test.rb +46 -0
  676. data/spec/unit_tests_platinum/unit/indices/modify_data_stream_test.rb +46 -0
  677. data/spec/unit_tests_platinum/unit/indices/promote_data_stream_test.rb +46 -0
  678. data/spec/unit_tests_platinum/unit/info_test.rb +40 -0
  679. data/spec/unit_tests_platinum/unit/knn_search_test.rb +40 -0
  680. data/spec/unit_tests_platinum/unit/license/delete_test.rb +43 -0
  681. data/spec/unit_tests_platinum/unit/license/get_test.rb +43 -0
  682. data/spec/unit_tests_platinum/unit/license/post_test.rb +43 -0
  683. data/spec/unit_tests_platinum/unit/logstash/delete_pipeline_test.rb +46 -0
  684. data/spec/unit_tests_platinum/unit/logstash/get_pipeline_test.rb +46 -0
  685. data/spec/unit_tests_platinum/unit/logstash/put_pipeline_test.rb +46 -0
  686. data/spec/unit_tests_platinum/unit/machine_learning/clear_trained_model_deployment_cache_test.rb +40 -0
  687. data/spec/unit_tests_platinum/unit/machine_learning/close_job_test.rb +43 -0
  688. data/spec/unit_tests_platinum/unit/machine_learning/delete_datafeed_test.rb +43 -0
  689. data/spec/unit_tests_platinum/unit/machine_learning/delete_expired_data_test.rb +43 -0
  690. data/spec/unit_tests_platinum/unit/machine_learning/delete_filter_test.rb +43 -0
  691. data/spec/unit_tests_platinum/unit/machine_learning/delete_forecast_test.rb +43 -0
  692. data/spec/unit_tests_platinum/unit/machine_learning/delete_job_test.rb +43 -0
  693. data/spec/unit_tests_platinum/unit/machine_learning/delete_model_alias_test.rb +40 -0
  694. data/spec/unit_tests_platinum/unit/machine_learning/delete_model_snapshot_test.rb +43 -0
  695. data/spec/unit_tests_platinum/unit/machine_learning/flush_job_test.rb +43 -0
  696. data/spec/unit_tests_platinum/unit/machine_learning/forecast_test.rb +43 -0
  697. data/spec/unit_tests_platinum/unit/machine_learning/get_buckets_test.rb +43 -0
  698. data/spec/unit_tests_platinum/unit/machine_learning/get_categories_test.rb +43 -0
  699. data/spec/unit_tests_platinum/unit/machine_learning/get_datafeed_stats_test.rb +43 -0
  700. data/spec/unit_tests_platinum/unit/machine_learning/get_datafeeds_test.rb +43 -0
  701. data/spec/unit_tests_platinum/unit/machine_learning/get_filters_test.rb +43 -0
  702. data/spec/unit_tests_platinum/unit/machine_learning/get_influencers_test.rb +43 -0
  703. data/spec/unit_tests_platinum/unit/machine_learning/get_job_stats_test.rb +43 -0
  704. data/spec/unit_tests_platinum/unit/machine_learning/get_jobs_test.rb +43 -0
  705. data/spec/unit_tests_platinum/unit/machine_learning/get_model_snapshots_test.rb +43 -0
  706. data/spec/unit_tests_platinum/unit/machine_learning/get_overall_buckets_test.rb +43 -0
  707. data/spec/unit_tests_platinum/unit/machine_learning/get_records_test.rb +43 -0
  708. data/spec/unit_tests_platinum/unit/machine_learning/open_job_test.rb +43 -0
  709. data/spec/unit_tests_platinum/unit/machine_learning/post_data_test.rb +43 -0
  710. data/spec/unit_tests_platinum/unit/machine_learning/preview_data_frame_analytics_test.rb +64 -0
  711. data/spec/unit_tests_platinum/unit/machine_learning/preview_datafeed_test.rb +43 -0
  712. data/spec/unit_tests_platinum/unit/machine_learning/put_datafeed_test.rb +43 -0
  713. data/spec/unit_tests_platinum/unit/machine_learning/put_filter_test.rb +43 -0
  714. data/spec/unit_tests_platinum/unit/machine_learning/put_job_test.rb +43 -0
  715. data/spec/unit_tests_platinum/unit/machine_learning/put_trained_model_alias_test.rb +40 -0
  716. data/spec/unit_tests_platinum/unit/machine_learning/revert_model_snapshot_test.rb +43 -0
  717. data/spec/unit_tests_platinum/unit/machine_learning/start_datafeed_test.rb +43 -0
  718. data/spec/unit_tests_platinum/unit/machine_learning/stop_datafeed_test.rb +43 -0
  719. data/spec/unit_tests_platinum/unit/machine_learning/update_data_frame_analytics_test.rb +40 -0
  720. data/spec/unit_tests_platinum/unit/machine_learning/update_datafeed_test.rb +43 -0
  721. data/spec/unit_tests_platinum/unit/machine_learning/update_filter_test.rb +43 -0
  722. data/spec/unit_tests_platinum/unit/machine_learning/update_job_test.rb +43 -0
  723. data/spec/unit_tests_platinum/unit/machine_learning/update_model_snapshot_test.rb +43 -0
  724. data/spec/unit_tests_platinum/unit/machine_learning/upgrade_job_snapshot_test.rb +43 -0
  725. data/spec/unit_tests_platinum/unit/machine_learning/validate_detector_test.rb +43 -0
  726. data/spec/unit_tests_platinum/unit/machine_learning/validate_test.rb +43 -0
  727. data/spec/unit_tests_platinum/unit/migration/deprecations_test.rb +42 -0
  728. data/spec/unit_tests_platinum/unit/monitoring/bulk_test.rb +43 -0
  729. data/spec/unit_tests_platinum/unit/rollup/get_rollup_index_caps_test.rb +40 -0
  730. data/spec/unit_tests_platinum/unit/security/activate_user_profile_test.rb +40 -0
  731. data/spec/unit_tests_platinum/unit/security/authenticate_test.rb +43 -0
  732. data/spec/unit_tests_platinum/unit/security/bulk_update_api_key_test.rb +40 -0
  733. data/spec/unit_tests_platinum/unit/security/change_password_test.rb +55 -0
  734. data/spec/unit_tests_platinum/unit/security/clear_api_key_cache_test.rb +40 -0
  735. data/spec/unit_tests_platinum/unit/security/clear_cached_privileges_test.rb +40 -0
  736. data/spec/unit_tests_platinum/unit/security/clear_cached_realms_test.rb +43 -0
  737. data/spec/unit_tests_platinum/unit/security/clear_cached_roles_test.rb +43 -0
  738. data/spec/unit_tests_platinum/unit/security/delete_privileges_test.rb +43 -0
  739. data/spec/unit_tests_platinum/unit/security/delete_role_mapping_test.rb +43 -0
  740. data/spec/unit_tests_platinum/unit/security/delete_role_test.rb +43 -0
  741. data/spec/unit_tests_platinum/unit/security/delete_user_test.rb +43 -0
  742. data/spec/unit_tests_platinum/unit/security/disable_user_test.rb +43 -0
  743. data/spec/unit_tests_platinum/unit/security/enable_user_test.rb +43 -0
  744. data/spec/unit_tests_platinum/unit/security/get_privileges_test.rb +78 -0
  745. data/spec/unit_tests_platinum/unit/security/get_role_mapping_test.rb +54 -0
  746. data/spec/unit_tests_platinum/unit/security/get_role_test.rb +62 -0
  747. data/spec/unit_tests_platinum/unit/security/get_token_test.rb +43 -0
  748. data/spec/unit_tests_platinum/unit/security/get_user_privileges_test.rb +43 -0
  749. data/spec/unit_tests_platinum/unit/security/get_user_profile_test.rb +40 -0
  750. data/spec/unit_tests_platinum/unit/security/get_user_test.rb +61 -0
  751. data/spec/unit_tests_platinum/unit/security/grant_api_key_test.rb +41 -0
  752. data/spec/unit_tests_platinum/unit/security/has_privileges_test.rb +55 -0
  753. data/spec/unit_tests_platinum/unit/security/invalidate_token_test.rb +43 -0
  754. data/spec/unit_tests_platinum/unit/security/oidc_authenticate_test.rb +40 -0
  755. data/spec/unit_tests_platinum/unit/security/oidc_logout_test.rb +40 -0
  756. data/spec/unit_tests_platinum/unit/security/oidc_prepare_authentication_test.rb +40 -0
  757. data/spec/unit_tests_platinum/unit/security/put_privileges_test.rb +43 -0
  758. data/spec/unit_tests_platinum/unit/security/put_role_mapping_test.rb +43 -0
  759. data/spec/unit_tests_platinum/unit/security/put_role_test.rb +43 -0
  760. data/spec/unit_tests_platinum/unit/security/put_user_test.rb +43 -0
  761. data/spec/unit_tests_platinum/unit/security/update_user_profile_data_test.rb +40 -0
  762. data/spec/unit_tests_platinum/unit/ssl/certificates_test.rb +43 -0
  763. data/spec/unit_tests_platinum/unit/text_structure/find_structure_test.rb +40 -0
  764. data/spec/unit_tests_platinum/unit/transform/reset_transform_spec.rb +34 -0
  765. data/spec/unit_tests_platinum/unit/transform/upgrade_transforms_spec.rb +34 -0
  766. data/spec/unit_tests_platinum/unit/usage_test.rb +40 -0
  767. data/spec/unit_tests_platinum/unit/watcher/ack_watch_test.rb +55 -0
  768. data/spec/unit_tests_platinum/unit/watcher/activate_watch_test.rb +43 -0
  769. data/spec/unit_tests_platinum/unit/watcher/deactivate_watch_test.rb +43 -0
  770. data/spec/unit_tests_platinum/unit/watcher/delete_watch_test.rb +43 -0
  771. data/spec/unit_tests_platinum/unit/watcher/execute_watch_test.rb +55 -0
  772. data/spec/unit_tests_platinum/unit/watcher/get_watch_test.rb +43 -0
  773. data/spec/unit_tests_platinum/unit/watcher/put_watch_test.rb +43 -0
  774. data/spec/unit_tests_platinum/unit/watcher/query_watches_test.rb +52 -0
  775. data/spec/unit_tests_platinum/unit/watcher/start_test.rb +41 -0
  776. data/spec/unit_tests_platinum/unit/watcher/stats_test.rb +43 -0
  777. data/spec/unit_tests_platinum/unit/watcher/stop_test.rb +43 -0
  778. data/utils/Gemfile +3 -4
  779. data/utils/README.md +15 -8
  780. data/utils/thor/generate_source.rb +78 -46
  781. data/utils/thor/generator/endpoint_specifics.rb +5 -27
  782. data/utils/thor/generator/files_helper.rb +30 -25
  783. data/utils/thor/templates/_body.erb +34 -0
  784. data/utils/thor/templates/_documentation_top.erb +19 -1
  785. data/utils/thor/templates/_method_setup.erb +37 -32
  786. data/utils/thor/templates/_perform_request.erb +34 -22
  787. data/utils/thor/templates/method.erb +5 -8
  788. data/utils/thor/templates/test.erb +16 -3
  789. data/utils/thor/templates/test_helper.rb +0 -4
  790. metadata +732 -99
  791. data/lib/elasticsearch/api/actions/benchmark.rb +0 -81
  792. data/lib/elasticsearch/api/actions/cat/params_registry.rb +0 -60
  793. data/lib/elasticsearch/api/actions/cluster/params_registry.rb +0 -60
  794. data/lib/elasticsearch/api/actions/dangling_indices/params_registry.rb +0 -60
  795. data/lib/elasticsearch/api/actions/delete_by_rethrottle.rb +0 -47
  796. data/lib/elasticsearch/api/actions/indices/params_registry.rb +0 -60
  797. data/lib/elasticsearch/api/actions/ingest/params_registry.rb +0 -60
  798. data/lib/elasticsearch/api/actions/nodes/params_registry.rb +0 -60
  799. data/lib/elasticsearch/api/actions/nodes/shutdown.rb +0 -56
  800. data/lib/elasticsearch/api/actions/params_registry.rb +0 -58
  801. data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +0 -60
  802. data/lib/elasticsearch/api/actions/tasks/params_registry.rb +0 -60
  803. data/spec/elasticsearch/api/actions/indices/exists_type_spec.rb +0 -108
  804. data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +0 -90
  805. data/spec/rest_yaml_tests_helper.rb +0 -117
  806. data/utils/thor/templates/_params_registry.erb +0 -12
  807. /data/{LICENSE → LICENSE.txt} +0 -0
@@ -38,7 +38,7 @@ describe 'client#index' do
38
38
  end
39
39
 
40
40
  let(:url) do
41
- 'foo/bar'
41
+ 'foo/_doc'
42
42
  end
43
43
 
44
44
  let(:body) do
@@ -51,37 +51,35 @@ describe 'client#index' do
51
51
 
52
52
  it 'requires the :index argument' do
53
53
  expect {
54
- client.index(type: 'bar')
54
+ client.index()
55
55
  }.to raise_exception(ArgumentError)
56
56
  end
57
57
 
58
58
  it 'performs the request' do
59
- expect(client_double.index(index: 'foo', type: 'bar', body: body)).to eq({})
59
+ expect(client_double.index(index: 'foo', body: body)).to be_a Elasticsearch::API::Response
60
60
  end
61
61
 
62
62
  context 'when a specific id is provided' do
63
-
64
63
  let(:request_type) do
65
64
  'PUT'
66
65
  end
67
66
 
68
67
  let(:url) do
69
- 'foo/bar/1'
68
+ 'foo/_doc/1'
70
69
  end
71
70
 
72
71
  it 'performs the request' do
73
- expect(client_double.index(index: 'foo', type: 'bar', id: '1', body: body)).to eq({})
72
+ expect(client_double.index(index: 'foo', id: '1', body: body)).to be_a Elasticsearch::API::Response
74
73
  end
75
74
  end
76
75
 
77
76
  context 'when URL parameters are provided' do
78
-
79
77
  let(:request_type) do
80
78
  'POST'
81
79
  end
82
80
 
83
81
  let(:url) do
84
- 'foo/bar'
82
+ 'foo/_doc'
85
83
  end
86
84
 
87
85
  let(:params) do
@@ -89,17 +87,16 @@ describe 'client#index' do
89
87
  end
90
88
 
91
89
  it 'passes the URL params' do
92
- expect(client_double.index(index: 'foo', type: 'bar', op_type: 'create', body: body)).to eq({})
90
+ expect(client_double.index(index: 'foo', op_type: 'create', body: body)).to be_a Elasticsearch::API::Response
93
91
  end
94
92
 
95
93
  context 'when a specific id is provided' do
96
-
97
94
  let(:request_type) do
98
95
  'PUT'
99
96
  end
100
97
 
101
98
  let(:url) do
102
- 'foo/bar/1'
99
+ 'foo/_doc/1'
103
100
  end
104
101
 
105
102
  let(:params) do
@@ -107,30 +104,15 @@ describe 'client#index' do
107
104
  end
108
105
 
109
106
  it 'passes the URL params' do
110
- expect(client_double.index(index: 'foo', type: 'bar', id: '1', op_type: 'create', body: body)).to eq({})
107
+ expect(client_double.index(index: 'foo', id: '1', op_type: 'create', body: body)).to be_a Elasticsearch::API::Response
111
108
  end
112
109
  end
113
110
  end
114
111
 
115
- context 'when the request needs to be URL-escaped' do
116
- let(:request_type) do
117
- 'PUT'
118
- end
119
-
120
- let(:url) do
121
- 'foo/bar%2Fbam/123'
122
- end
123
-
124
- it 'URL-escapes the parts' do
125
- expect(client_double.index(index: 'foo', type: 'bar/bam', id: '123', body: body)).to eq({})
126
- end
127
- end
128
-
129
112
  context 'when an invalid URL parameter is provided' do
130
-
131
113
  it 'raises and ArgumentError' do
132
114
  expect {
133
- client.index(index: 'foo', type: 'bar', id: '1', qwerty: 'yuiop')
115
+ client.index(index: 'foo', id: '1', qwerty: 'yuiop')
134
116
  }.to raise_exception(ArgumentError)
135
117
  end
136
118
  end
@@ -0,0 +1,36 @@
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
+ require 'spec_helper'
19
+
20
+ describe 'client.index_lifecycle_management#migrate_to_data_tiers' do
21
+ let(:expected_args) do
22
+ [
23
+ 'POST',
24
+ '_ilm/migrate_to_data_tiers',
25
+ {},
26
+ nil,
27
+ {}
28
+ ]
29
+ end
30
+
31
+ let(:index) { 'foo' }
32
+
33
+ it 'performs the request' do
34
+ expect(client_double.index_lifecycle_management.migrate_to_data_tiers).to be_a Elasticsearch::API::Response
35
+ end
36
+ end
@@ -34,7 +34,7 @@ describe 'client.indices#add_block' do
34
34
  it 'performs the request' do
35
35
  expect(
36
36
  client_double.indices.add_block(index: index, block: block)
37
- ).to eq({})
37
+ ).to be_a Elasticsearch::API::Response
38
38
  end
39
39
 
40
40
  context 'when an index is not specified' do
@@ -42,7 +42,7 @@ describe 'client.indices#analyze' do
42
42
  end
43
43
 
44
44
  it 'performs the request' do
45
- expect(client_double.indices.analyze).to eq({})
45
+ expect(client_double.indices.analyze).to be_a Elasticsearch::API::Response
46
46
  end
47
47
 
48
48
  context 'when an index is specified' do
@@ -51,7 +51,7 @@ describe 'client.indices#analyze' do
51
51
  end
52
52
 
53
53
  it 'performs the request' do
54
- expect(client_double.indices.analyze(index: 'foo')).to eq({})
54
+ expect(client_double.indices.analyze(index: 'foo')).to be_a Elasticsearch::API::Response
55
55
  end
56
56
  end
57
57
 
@@ -62,7 +62,7 @@ describe 'client.indices#analyze' do
62
62
  let(:method) { 'POST' }
63
63
 
64
64
  it 'performs the request' do
65
- expect(client_double.indices.analyze(body: 'foo')).to eq({})
65
+ expect(client_double.indices.analyze(body: 'foo')).to be_a Elasticsearch::API::Response
66
66
  end
67
67
  end
68
68
  end
@@ -1,7 +1,20 @@
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
4
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
+
5
18
  require 'spec_helper'
6
19
 
7
20
  describe 'client.indices#clear_cache' do
@@ -25,7 +38,7 @@ describe 'client.indices#clear_cache' do
25
38
  end
26
39
 
27
40
  it 'performs the request' do
28
- expect(client_double.indices.clear_cache).to eq({})
41
+ expect(client_double.indices.clear_cache).to be_a Elasticsearch::API::Response
29
42
  end
30
43
 
31
44
  context 'when an index is specified' do
@@ -35,7 +48,7 @@ describe 'client.indices#clear_cache' do
35
48
  end
36
49
 
37
50
  it 'performs the request' do
38
- expect(client_double.indices.clear_cache(index: 'foo')).to eq({})
51
+ expect(client_double.indices.clear_cache(index: 'foo')).to be_a Elasticsearch::API::Response
39
52
  end
40
53
  end
41
54
 
@@ -46,7 +59,7 @@ describe 'client.indices#clear_cache' do
46
59
  end
47
60
 
48
61
  it 'performs the request' do
49
- expect(client_double.indices.clear_cache(fielddata: true)).to eq({})
62
+ expect(client_double.indices.clear_cache(fielddata: true)).to be_a Elasticsearch::API::Response
50
63
  end
51
64
  end
52
65
 
@@ -61,7 +74,7 @@ describe 'client.indices#clear_cache' do
61
74
  end
62
75
 
63
76
  it 'performs the request' do
64
- expect(client_double.indices.clear_cache(index: 'foo^bar')).to eq({})
77
+ expect(client_double.indices.clear_cache(index: 'foo^bar')).to be_a Elasticsearch::API::Response
65
78
  end
66
79
  end
67
80
  end
@@ -70,7 +70,7 @@ describe 'client.indices#clone' do
70
70
  context 'when an index and target are specified' do
71
71
 
72
72
  it 'performs the request' do
73
- expect(client_double.indices.clone(index: 'my_source_index', target: 'my_target_index')).to eq({})
73
+ expect(client_double.indices.clone(index: 'my_source_index', target: 'my_target_index')).to be_a Elasticsearch::API::Response
74
74
  end
75
75
  end
76
76
 
@@ -78,9 +78,9 @@ describe 'client.indices#clone' do
78
78
 
79
79
  let(:params) do
80
80
  {
81
- timeout: '1s',
82
- master_timeout: '10s',
83
- wait_for_active_shards: 1
81
+ timeout: '1s',
82
+ master_timeout: '10s',
83
+ wait_for_active_shards: 1
84
84
  }
85
85
  end
86
86
 
@@ -89,7 +89,7 @@ describe 'client.indices#clone' do
89
89
  target: 'my_target_index',
90
90
  timeout: '1s',
91
91
  master_timeout: '10s',
92
- wait_for_active_shards: 1)).to eq({})
92
+ wait_for_active_shards: 1)).to be_a Elasticsearch::API::Response
93
93
  end
94
94
  end
95
95
 
@@ -116,7 +116,7 @@ describe 'client.indices#clone' do
116
116
  aliases: {
117
117
  my_search_indices: {}
118
118
  }
119
- })).to eq({})
119
+ })).to be_a Elasticsearch::API::Response
120
120
  end
121
121
  end
122
122
  end
@@ -53,7 +53,7 @@ describe 'client.indices#close' do
53
53
  end
54
54
 
55
55
  it 'performs the request' do
56
- expect(client_double.indices.close(index: 'foo')).to eq({})
56
+ expect(client_double.indices.close(index: 'foo')).to be_a Elasticsearch::API::Response
57
57
  end
58
58
  end
59
59
 
@@ -68,7 +68,7 @@ describe 'client.indices#close' do
68
68
  end
69
69
 
70
70
  it 'performs the request' do
71
- expect(client_double.indices.close(index: 'foo', timeout: '1s')).to eq({})
71
+ expect(client_double.indices.close(index: 'foo', timeout: '1s')).to be_a Elasticsearch::API::Response
72
72
  end
73
73
  end
74
74
 
@@ -79,7 +79,7 @@ describe 'client.indices#close' do
79
79
  end
80
80
 
81
81
  it 'performs the request' do
82
- expect(client_double.indices.close(index: 'foo^bar')).to eq({})
82
+ expect(client_double.indices.close(index: 'foo^bar')).to be_a Elasticsearch::API::Response
83
83
  end
84
84
  end
85
85
  end
@@ -53,7 +53,7 @@ describe 'client.indices#create' do
53
53
  end
54
54
 
55
55
  it 'performs the request' do
56
- expect(client_double.indices.create(index: 'foo')).to eq({})
56
+ expect(client_double.indices.create(index: 'foo')).to be_a Elasticsearch::API::Response
57
57
  end
58
58
  end
59
59
 
@@ -68,7 +68,7 @@ describe 'client.indices#create' do
68
68
  end
69
69
 
70
70
  it 'performs the request' do
71
- expect(client_double.indices.create(index: 'foo', timeout: '1s')).to eq({})
71
+ expect(client_double.indices.create(index: 'foo', timeout: '1s')).to be_a Elasticsearch::API::Response
72
72
  end
73
73
  end
74
74
 
@@ -79,7 +79,7 @@ describe 'client.indices#create' do
79
79
  end
80
80
 
81
81
  it 'performs the request' do
82
- expect(client_double.indices.create(index: 'foo^bar')).to eq({})
82
+ expect(client_double.indices.create(index: 'foo^bar')).to be_a Elasticsearch::API::Response
83
83
  end
84
84
  end
85
85
  end
@@ -17,60 +17,42 @@
17
17
 
18
18
  require 'spec_helper'
19
19
 
20
- describe 'client.nodes#shutdown' do
21
-
20
+ describe 'client.indices#data_streams_stats' do
22
21
  let(:expected_args) do
23
22
  [
24
- 'POST',
25
- url,
26
- params,
27
- nil,
28
- nil
23
+ 'GET',
24
+ url,
25
+ params,
26
+ nil,
27
+ {}
29
28
  ]
30
29
  end
31
30
 
32
- let(:url) do
33
- '_cluster/nodes/_shutdown'
34
- end
35
-
36
- it 'performs the request' do
37
- expect(client_double.nodes.shutdown).to eq({})
38
- end
39
-
40
31
  let(:params) do
41
32
  {}
42
33
  end
43
34
 
44
- context 'when the node id is specified' do
45
-
35
+ context 'when there is no name specified' do
46
36
  let(:url) do
47
- '_cluster/nodes/foo/_shutdown'
37
+ '_data_stream/_stats'
48
38
  end
49
39
 
50
- it 'performs the request' do
51
- expect(client_double.nodes.shutdown(node_id: 'foo')).to eq({})
52
- end
53
- end
54
-
55
- context 'when multiple node ids are specified as a list' do
56
-
57
- let(:url) do
58
- '_cluster/nodes/A,B,C/_shutdown'
40
+ let(:client) do
41
+ Class.new { include Elasticsearch::API }.new
59
42
  end
60
43
 
61
44
  it 'performs the request' do
62
- expect(client_double.nodes.shutdown(node_id: ['A', 'B', 'C'])).to eq({})
45
+ expect(client_double.indices.data_streams_stats).to be_a Elasticsearch::API::Response
63
46
  end
64
47
  end
65
48
 
66
- context 'when multiple node ids are specified as a String' do
67
-
49
+ context 'when name is specified' do
68
50
  let(:url) do
69
- '_cluster/nodes/A,B,C/_shutdown'
51
+ '_data_stream/foo/_stats'
70
52
  end
71
53
 
72
54
  it 'performs the request' do
73
- expect(client_double.nodes.shutdown(node_id: 'A,B,C')).to eq({})
55
+ expect(client_double.indices.data_streams_stats(name: 'foo')).to be_a Elasticsearch::API::Response
74
56
  end
75
57
  end
76
58
  end
@@ -66,7 +66,7 @@ describe 'client.indices#delete_alias' do
66
66
  end
67
67
 
68
68
  it 'performs the request' do
69
- expect(client_double.indices.delete_alias(index: 'foo', name: 'bar')).to eq({})
69
+ expect(client_double.indices.delete_alias(index: 'foo', name: 'bar')).to be_a Elasticsearch::API::Response
70
70
  end
71
71
  end
72
72
 
@@ -77,7 +77,7 @@ describe 'client.indices#delete_alias' do
77
77
  end
78
78
 
79
79
  it 'performs the request' do
80
- expect(client_double.indices.delete_alias(index: 'foo^bar', name: 'bar/bam')).to eq({})
80
+ expect(client_double.indices.delete_alias(index: 'foo^bar', name: 'bar/bam')).to be_a Elasticsearch::API::Response
81
81
  end
82
82
  end
83
83
  end
@@ -38,7 +38,7 @@ describe 'client.indices#delete' do
38
38
  end
39
39
 
40
40
  it 'performs the request' do
41
- expect(client_double.indices.delete(index: 'foo')).to eq({})
41
+ expect(client_double.indices.delete(index: 'foo')).to be_a Elasticsearch::API::Response
42
42
  end
43
43
 
44
44
  context 'when more than one index is specified' do
@@ -48,7 +48,7 @@ describe 'client.indices#delete' do
48
48
  end
49
49
 
50
50
  it 'performs the request' do
51
- expect(client_double.indices.delete(index: ['foo', 'bar'])).to eq({})
51
+ expect(client_double.indices.delete(index: ['foo', 'bar'])).to be_a Elasticsearch::API::Response
52
52
  end
53
53
  end
54
54
 
@@ -59,7 +59,7 @@ describe 'client.indices#delete' do
59
59
  end
60
60
 
61
61
  it 'performs the request' do
62
- expect(client_double.indices.delete(index: 'foo', timeout: '1s')).to eq({})
62
+ expect(client_double.indices.delete(index: 'foo', timeout: '1s')).to be_a Elasticsearch::API::Response
63
63
  end
64
64
  end
65
65
 
@@ -70,7 +70,7 @@ describe 'client.indices#delete' do
70
70
  end
71
71
 
72
72
  it 'performs the request' do
73
- expect(client_double.indices.delete(index: 'foo^bar')).to eq({})
73
+ expect(client_double.indices.delete(index: 'foo^bar')).to be_a Elasticsearch::API::Response
74
74
  end
75
75
  end
76
76
 
@@ -38,7 +38,7 @@ describe 'client.indices#delete_template' do
38
38
  end
39
39
 
40
40
  it 'performs the request' do
41
- expect(client_double.indices.delete_template(name: 'foo')).to eq({})
41
+ expect(client_double.indices.delete_template(name: 'foo')).to be_a Elasticsearch::API::Response
42
42
  end
43
43
 
44
44
  context 'when the path needs to be URL-escaped' do
@@ -48,7 +48,7 @@ describe 'client.indices#delete_template' do
48
48
  end
49
49
 
50
50
  it 'performs the request' do
51
- expect(client_double.indices.delete_template(name: 'foo^bar')).to eq({})
51
+ expect(client_double.indices.delete_template(name: 'foo^bar')).to be_a Elasticsearch::API::Response
52
52
  end
53
53
  end
54
54
 
@@ -0,0 +1,48 @@
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
+ require 'spec_helper'
19
+
20
+ describe 'client.indices#disk_usage' do
21
+ let(:expected_args) do
22
+ [
23
+ 'POST',
24
+ "#{index}/_disk_usage",
25
+ {},
26
+ nil,
27
+ {}
28
+ ]
29
+ end
30
+
31
+ let(:index) { 'foo' }
32
+
33
+ it 'performs the request' do
34
+ expect(client_double.indices.disk_usage(index: index)).to be_a Elasticsearch::API::Response
35
+ end
36
+
37
+ context 'when there is no index specified' do
38
+ let(:client) do
39
+ Class.new { include Elasticsearch::API }.new
40
+ end
41
+
42
+ it 'raises an exception' do
43
+ expect do
44
+ client.indices.disk_usage
45
+ end.to raise_exception(ArgumentError)
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,46 @@
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
+ require 'spec_helper'
19
+
20
+ describe 'client.indices#field_usage_stats' do
21
+ let(:expected_args) do
22
+ [
23
+ 'GET',
24
+ 'foo/_field_usage_stats',
25
+ {},
26
+ nil,
27
+ {}
28
+ ]
29
+ end
30
+
31
+ it 'performs the request' do
32
+ expect(client_double.indices.field_usage_stats(index: 'foo')).to be_a Elasticsearch::API::Response
33
+ end
34
+
35
+ context 'when there is no index specified' do
36
+ let(:client) do
37
+ Class.new { include Elasticsearch::API }.new
38
+ end
39
+
40
+ it 'raises an exception' do
41
+ expect {
42
+ client.indices.field_usage_stats
43
+ }.to raise_exception(ArgumentError)
44
+ end
45
+ end
46
+ end
@@ -38,7 +38,7 @@ describe 'client.indices#flush' do
38
38
  end
39
39
 
40
40
  it 'performs the request' do
41
- expect(client_double.indices.flush).to eq({})
41
+ expect(client_double.indices.flush).to be_a Elasticsearch::API::Response
42
42
  end
43
43
 
44
44
  context 'when an index is specified' do
@@ -48,7 +48,7 @@ describe 'client.indices#flush' do
48
48
  end
49
49
 
50
50
  it 'performs the request' do
51
- expect(client_double.indices.flush(index: 'foo')).to eq({})
51
+ expect(client_double.indices.flush(index: 'foo')).to be_a Elasticsearch::API::Response
52
52
  end
53
53
  end
54
54
 
@@ -59,7 +59,7 @@ describe 'client.indices#flush' do
59
59
  end
60
60
 
61
61
  it 'performs the request' do
62
- expect(client_double.indices.flush(index: ['foo','bar'])).to eq({})
62
+ expect(client_double.indices.flush(index: ['foo','bar'])).to be_a Elasticsearch::API::Response
63
63
  end
64
64
  end
65
65
 
@@ -70,7 +70,7 @@ describe 'client.indices#flush' do
70
70
  end
71
71
 
72
72
  it 'performs the request' do
73
- expect(client_double.indices.flush(index: 'foo^bar')).to eq({})
73
+ expect(client_double.indices.flush(index: 'foo^bar')).to be_a Elasticsearch::API::Response
74
74
  end
75
75
  end
76
76
 
@@ -85,7 +85,7 @@ describe 'client.indices#flush' do
85
85
  end
86
86
 
87
87
  it 'performs the request' do
88
- expect(client_double.indices.flush(index: 'foo', ignore_unavailable: true)).to eq({})
88
+ expect(client_double.indices.flush(index: 'foo', ignore_unavailable: true)).to be_a Elasticsearch::API::Response
89
89
  end
90
90
  end
91
91
  end
@@ -30,6 +30,6 @@ describe 'client.cluster#forcemerge' do
30
30
  end
31
31
 
32
32
  it 'performs the request' do
33
- expect(client_double.indices.forcemerge).to eq({})
33
+ expect(client_double.indices.forcemerge).to be_a Elasticsearch::API::Response
34
34
  end
35
35
  end
@@ -34,7 +34,7 @@ describe 'client.cluster#get_alias' do
34
34
  end
35
35
 
36
36
  it 'performs the request' do
37
- expect(client_double.indices.get_alias(name: 'foo')).to eq({})
37
+ expect(client_double.indices.get_alias(name: 'foo')).to be_a Elasticsearch::API::Response
38
38
  end
39
39
 
40
40
  context 'when multiple indices are specified' do
@@ -44,7 +44,7 @@ describe 'client.cluster#get_alias' do
44
44
  end
45
45
 
46
46
  it 'performs the request' do
47
- expect(client_double.indices.get_alias(index: ['foo','bar'], name: 'bam')).to eq({})
47
+ expect(client_double.indices.get_alias(index: ['foo','bar'], name: 'bam')).to be_a Elasticsearch::API::Response
48
48
  end
49
49
  end
50
50
 
@@ -55,7 +55,7 @@ describe 'client.cluster#get_alias' do
55
55
  end
56
56
 
57
57
  it 'performs the request' do
58
- expect(client_double.indices.get_alias(index: 'foo^bar', name: 'bar/bam')).to eq({})
58
+ expect(client_double.indices.get_alias(index: 'foo^bar', name: 'bar/bam')).to be_a Elasticsearch::API::Response
59
59
  end
60
60
  end
61
61
  end