elasticsearch-api 7.17.1 → 8.0.0.pre1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (768) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -9
  3. data/{LICENSE → LICENSE.txt} +0 -0
  4. data/README.md +26 -15
  5. data/Rakefile +21 -56
  6. data/api-spec-testing/README.md +118 -0
  7. data/api-spec-testing/logging.rb +28 -0
  8. data/api-spec-testing/rspec_matchers.rb +312 -0
  9. data/api-spec-testing/test_file/action.rb +168 -0
  10. data/api-spec-testing/test_file/task_group.rb +340 -0
  11. data/api-spec-testing/test_file/test.rb +295 -0
  12. data/api-spec-testing/test_file.rb +173 -0
  13. data/api-spec-testing/wipe_cluster.rb +388 -0
  14. data/elasticsearch-api.gemspec +11 -19
  15. data/lib/elasticsearch/api/actions/async_search/delete.rb +51 -0
  16. data/lib/elasticsearch/api/actions/async_search/get.rb +54 -0
  17. data/lib/elasticsearch/api/actions/async_search/status.rb +51 -0
  18. data/lib/elasticsearch/api/actions/async_search/submit.rb +95 -0
  19. data/lib/elasticsearch/api/actions/autoscaling/delete_autoscaling_policy.rb +51 -0
  20. data/lib/elasticsearch/api/actions/autoscaling/get_autoscaling_capacity.rb +46 -0
  21. data/lib/elasticsearch/api/actions/autoscaling/get_autoscaling_policy.rb +51 -0
  22. data/lib/elasticsearch/api/actions/autoscaling/put_autoscaling_policy.rb +53 -0
  23. data/lib/elasticsearch/api/actions/bulk.rb +8 -21
  24. data/lib/elasticsearch/api/actions/cat/aliases.rb +7 -17
  25. data/lib/elasticsearch/api/actions/cat/allocation.rb +7 -18
  26. data/lib/elasticsearch/api/actions/cat/count.rb +7 -15
  27. data/lib/elasticsearch/api/actions/cat/fielddata.rb +7 -17
  28. data/lib/elasticsearch/api/actions/cat/health.rb +7 -17
  29. data/lib/elasticsearch/api/actions/cat/help.rb +7 -12
  30. data/lib/elasticsearch/api/actions/cat/indices.rb +7 -24
  31. data/lib/elasticsearch/api/actions/cat/master.rb +7 -17
  32. data/lib/elasticsearch/api/actions/cat/ml_data_frame_analytics.rb +61 -0
  33. data/lib/elasticsearch/api/actions/cat/ml_datafeeds.rb +61 -0
  34. data/lib/elasticsearch/api/actions/cat/ml_jobs.rb +62 -0
  35. data/lib/elasticsearch/api/actions/cat/ml_trained_models.rb +63 -0
  36. data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +7 -17
  37. data/lib/elasticsearch/api/actions/cat/nodes.rb +7 -22
  38. data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +7 -18
  39. data/lib/elasticsearch/api/actions/cat/plugins.rb +7 -18
  40. data/lib/elasticsearch/api/actions/cat/recovery.rb +7 -20
  41. data/lib/elasticsearch/api/actions/cat/repositories.rb +7 -17
  42. data/lib/elasticsearch/api/actions/cat/segments.rb +7 -16
  43. data/lib/elasticsearch/api/actions/cat/shards.rb +7 -20
  44. data/lib/elasticsearch/api/actions/cat/snapshots.rb +7 -18
  45. data/lib/elasticsearch/api/actions/cat/tasks.rb +11 -20
  46. data/lib/elasticsearch/api/actions/cat/templates.rb +7 -17
  47. data/lib/elasticsearch/api/actions/cat/thread_pool.rb +8 -19
  48. data/lib/elasticsearch/api/actions/cat/transforms.rb +62 -0
  49. data/lib/elasticsearch/api/actions/clear_scroll.rb +6 -3
  50. data/lib/elasticsearch/api/actions/close_point_in_time.rb +6 -3
  51. data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +8 -13
  52. data/lib/elasticsearch/api/actions/cluster/delete_component_template.rb +7 -12
  53. data/lib/elasticsearch/api/actions/cluster/delete_voting_config_exclusions.rb +7 -11
  54. data/lib/elasticsearch/api/actions/cluster/exists_component_template.rb +7 -12
  55. data/lib/elasticsearch/api/actions/cluster/get_component_template.rb +7 -12
  56. data/lib/elasticsearch/api/actions/cluster/get_settings.rb +7 -14
  57. data/lib/elasticsearch/api/actions/cluster/health.rb +7 -21
  58. data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +7 -12
  59. data/lib/elasticsearch/api/actions/cluster/post_voting_config_exclusions.rb +7 -13
  60. data/lib/elasticsearch/api/actions/cluster/put_component_template.rb +7 -13
  61. data/lib/elasticsearch/api/actions/cluster/put_settings.rb +7 -13
  62. data/lib/elasticsearch/api/actions/cluster/remote_info.rb +6 -3
  63. data/lib/elasticsearch/api/actions/cluster/reroute.rb +7 -16
  64. data/lib/elasticsearch/api/actions/cluster/state.rb +7 -18
  65. data/lib/elasticsearch/api/actions/cluster/stats.rb +7 -12
  66. data/lib/elasticsearch/api/actions/count.rb +9 -41
  67. data/lib/elasticsearch/api/actions/create.rb +1 -1
  68. data/lib/elasticsearch/api/actions/cross_cluster_replication/delete_auto_follow_pattern.rb +51 -0
  69. data/lib/elasticsearch/api/actions/cross_cluster_replication/follow.rb +54 -0
  70. data/lib/elasticsearch/api/actions/cross_cluster_replication/follow_info.rb +51 -0
  71. data/lib/elasticsearch/api/actions/cross_cluster_replication/follow_stats.rb +51 -0
  72. data/lib/elasticsearch/api/actions/cross_cluster_replication/forget_follower.rb +53 -0
  73. data/lib/elasticsearch/api/actions/cross_cluster_replication/get_auto_follow_pattern.rb +53 -0
  74. data/lib/elasticsearch/api/actions/cross_cluster_replication/pause_auto_follow_pattern.rb +51 -0
  75. data/lib/elasticsearch/api/actions/cross_cluster_replication/pause_follow.rb +51 -0
  76. data/lib/elasticsearch/api/actions/cross_cluster_replication/put_auto_follow_pattern.rb +53 -0
  77. data/lib/elasticsearch/api/actions/cross_cluster_replication/resume_auto_follow_pattern.rb +51 -0
  78. data/lib/elasticsearch/api/actions/cross_cluster_replication/resume_follow.rb +52 -0
  79. data/lib/elasticsearch/api/actions/cross_cluster_replication/stats.rb +46 -0
  80. data/lib/elasticsearch/api/actions/cross_cluster_replication/unfollow.rb +51 -0
  81. data/lib/elasticsearch/api/actions/dangling_indices/delete_dangling_index.rb +7 -13
  82. data/lib/elasticsearch/api/actions/dangling_indices/import_dangling_index.rb +7 -13
  83. data/lib/elasticsearch/api/actions/dangling_indices/list_dangling_indices.rb +6 -3
  84. data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/delete_transform.rb +59 -0
  85. data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/get_transform.rb +64 -0
  86. data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/get_transform_stats.rb +61 -0
  87. data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/preview_transform.rb +56 -0
  88. data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/put_transform.rb +61 -0
  89. data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/start_transform.rb +59 -0
  90. data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/stop_transform.rb +61 -0
  91. data/lib/elasticsearch/api/actions/data_frame_transform_deprecated/update_transform.rb +61 -0
  92. data/lib/elasticsearch/api/actions/delete.rb +13 -20
  93. data/lib/elasticsearch/api/actions/delete_by_query.rb +13 -56
  94. data/lib/elasticsearch/api/actions/delete_by_query_rethrottle.rb +7 -11
  95. data/lib/elasticsearch/api/actions/delete_script.rb +7 -12
  96. data/lib/elasticsearch/api/actions/enrich/delete_policy.rb +51 -0
  97. data/lib/elasticsearch/api/actions/enrich/execute_policy.rb +52 -0
  98. data/lib/elasticsearch/api/actions/enrich/get_policy.rb +53 -0
  99. data/lib/elasticsearch/api/actions/enrich/put_policy.rb +53 -0
  100. data/lib/elasticsearch/api/actions/enrich/stats.rb +46 -0
  101. data/lib/elasticsearch/api/actions/eql/delete.rb +51 -0
  102. data/lib/elasticsearch/api/actions/eql/get.rb +53 -0
  103. data/lib/elasticsearch/api/actions/eql/get_status.rb +51 -0
  104. data/lib/elasticsearch/api/actions/eql/search.rb +57 -0
  105. data/lib/elasticsearch/api/actions/exists.rb +6 -34
  106. data/lib/elasticsearch/api/actions/exists_source.rb +8 -20
  107. data/lib/elasticsearch/api/actions/explain.rb +9 -36
  108. data/lib/elasticsearch/api/actions/features/get_features.rb +7 -11
  109. data/lib/elasticsearch/api/actions/features/reset_features.rb +6 -3
  110. data/lib/elasticsearch/api/actions/field_caps.rb +8 -16
  111. data/lib/elasticsearch/api/actions/fleet/global_checkpoints.rb +55 -0
  112. data/lib/elasticsearch/api/actions/get.rb +14 -35
  113. data/lib/elasticsearch/api/actions/get_script.rb +7 -11
  114. data/lib/elasticsearch/api/actions/get_script_context.rb +6 -3
  115. data/lib/elasticsearch/api/actions/get_script_languages.rb +6 -3
  116. data/lib/elasticsearch/api/actions/get_source.rb +9 -33
  117. data/lib/elasticsearch/api/actions/graph/explore.rb +59 -0
  118. data/lib/elasticsearch/api/actions/index.rb +8 -34
  119. data/lib/elasticsearch/api/actions/index_lifecycle_management/delete_lifecycle.rb +51 -0
  120. data/lib/elasticsearch/api/actions/index_lifecycle_management/explain_lifecycle.rb +53 -0
  121. data/lib/elasticsearch/api/actions/index_lifecycle_management/get_lifecycle.rb +53 -0
  122. data/lib/elasticsearch/api/actions/index_lifecycle_management/get_status.rb +46 -0
  123. data/lib/elasticsearch/api/actions/index_lifecycle_management/migrate_to_data_tiers.rb +48 -0
  124. data/lib/elasticsearch/api/actions/index_lifecycle_management/move_to_step.rb +52 -0
  125. data/lib/elasticsearch/api/actions/index_lifecycle_management/put_lifecycle.rb +52 -0
  126. data/lib/elasticsearch/api/actions/index_lifecycle_management/remove_policy.rb +51 -0
  127. data/lib/elasticsearch/api/actions/index_lifecycle_management/retry.rb +51 -0
  128. data/lib/elasticsearch/api/actions/index_lifecycle_management/start.rb +46 -0
  129. data/lib/elasticsearch/api/actions/index_lifecycle_management/stop.rb +46 -0
  130. data/lib/elasticsearch/api/actions/indices/add_block.rb +7 -15
  131. data/lib/elasticsearch/api/actions/indices/analyze.rb +8 -12
  132. data/lib/elasticsearch/api/actions/indices/clear_cache.rb +7 -18
  133. data/lib/elasticsearch/api/actions/indices/clone.rb +7 -13
  134. data/lib/elasticsearch/api/actions/indices/close.rb +8 -17
  135. data/lib/elasticsearch/api/actions/indices/create.rb +7 -15
  136. data/lib/elasticsearch/api/actions/indices/create_data_stream.rb +51 -0
  137. data/lib/elasticsearch/api/actions/indices/data_streams_stats.rb +53 -0
  138. data/lib/elasticsearch/api/actions/indices/delete.rb +12 -16
  139. data/lib/elasticsearch/api/actions/indices/delete_alias.rb +7 -12
  140. data/lib/elasticsearch/api/actions/indices/delete_data_stream.rb +52 -0
  141. data/lib/elasticsearch/api/actions/indices/delete_index_template.rb +7 -16
  142. data/lib/elasticsearch/api/actions/indices/delete_template.rb +12 -13
  143. data/lib/elasticsearch/api/actions/indices/disk_usage.rb +7 -15
  144. data/lib/elasticsearch/api/actions/indices/exists.rb +4 -16
  145. data/lib/elasticsearch/api/actions/indices/exists_alias.rb +4 -14
  146. data/lib/elasticsearch/api/actions/indices/exists_index_template.rb +7 -16
  147. data/lib/elasticsearch/api/actions/indices/exists_template.rb +4 -13
  148. data/lib/elasticsearch/api/actions/indices/exists_type.rb +4 -14
  149. data/lib/elasticsearch/api/actions/indices/field_usage_stats.rb +7 -14
  150. data/lib/elasticsearch/api/actions/indices/flush.rb +7 -15
  151. data/lib/elasticsearch/api/actions/indices/forcemerge.rb +7 -16
  152. data/lib/elasticsearch/api/actions/indices/get.rb +7 -19
  153. data/lib/elasticsearch/api/actions/indices/get_alias.rb +7 -14
  154. data/lib/elasticsearch/api/actions/indices/get_data_stream.rb +54 -0
  155. data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +8 -30
  156. data/lib/elasticsearch/api/actions/indices/get_index_template.rb +8 -14
  157. data/lib/elasticsearch/api/actions/indices/get_mapping.rb +8 -30
  158. data/lib/elasticsearch/api/actions/indices/get_settings.rb +7 -17
  159. data/lib/elasticsearch/api/actions/indices/get_template.rb +7 -15
  160. data/lib/elasticsearch/api/actions/indices/migrate_to_data_stream.rb +51 -0
  161. data/lib/elasticsearch/api/actions/indices/modify_data_stream.rb +49 -0
  162. data/lib/elasticsearch/api/actions/indices/open.rb +7 -16
  163. data/lib/elasticsearch/api/actions/indices/promote_data_stream.rb +51 -0
  164. data/lib/elasticsearch/api/actions/indices/put_alias.rb +7 -12
  165. data/lib/elasticsearch/api/actions/indices/put_index_template.rb +7 -13
  166. data/lib/elasticsearch/api/actions/indices/put_mapping.rb +9 -33
  167. data/lib/elasticsearch/api/actions/indices/put_settings.rb +7 -17
  168. data/lib/elasticsearch/api/actions/indices/put_template.rb +7 -15
  169. data/lib/elasticsearch/api/actions/indices/recovery.rb +7 -12
  170. data/lib/elasticsearch/api/actions/indices/refresh.rb +7 -13
  171. data/lib/elasticsearch/api/actions/indices/{get_upgrade.rb → reload_search_analyzers.rb} +13 -26
  172. data/lib/elasticsearch/api/actions/indices/resolve_index.rb +7 -11
  173. data/lib/elasticsearch/api/actions/indices/rollover.rb +7 -16
  174. data/lib/elasticsearch/api/actions/indices/segments.rb +7 -14
  175. data/lib/elasticsearch/api/actions/indices/shard_stores.rb +7 -14
  176. data/lib/elasticsearch/api/actions/indices/shrink.rb +7 -15
  177. data/lib/elasticsearch/api/actions/indices/simulate_index_template.rb +7 -13
  178. data/lib/elasticsearch/api/actions/indices/simulate_template.rb +7 -13
  179. data/lib/elasticsearch/api/actions/indices/split.rb +7 -15
  180. data/lib/elasticsearch/api/actions/indices/stats.rb +25 -47
  181. data/lib/elasticsearch/api/actions/indices/{upgrade.rb → unfreeze.rb} +19 -28
  182. data/lib/elasticsearch/api/actions/indices/update_aliases.rb +7 -12
  183. data/lib/elasticsearch/api/actions/indices/validate_query.rb +8 -23
  184. data/lib/elasticsearch/api/actions/info.rb +6 -3
  185. data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +7 -12
  186. data/lib/elasticsearch/api/actions/ingest/geo_ip_stats.rb +6 -3
  187. data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +7 -12
  188. data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +6 -3
  189. data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +7 -14
  190. data/lib/elasticsearch/api/actions/ingest/simulate.rb +7 -11
  191. data/lib/elasticsearch/api/actions/knn_search.rb +60 -0
  192. data/lib/elasticsearch/api/actions/license/delete.rb +46 -0
  193. data/lib/elasticsearch/api/actions/license/get.rb +48 -0
  194. data/lib/elasticsearch/api/actions/license/get_basic_status.rb +46 -0
  195. data/lib/elasticsearch/api/actions/license/get_trial_status.rb +46 -0
  196. data/lib/elasticsearch/api/actions/license/post.rb +48 -0
  197. data/lib/elasticsearch/api/actions/license/post_start_basic.rb +47 -0
  198. data/lib/elasticsearch/api/actions/license/post_start_trial.rb +48 -0
  199. data/lib/elasticsearch/api/actions/logstash/delete_pipeline.rb +51 -0
  200. data/lib/elasticsearch/api/actions/logstash/get_pipeline.rb +51 -0
  201. data/lib/elasticsearch/api/actions/logstash/put_pipeline.rb +53 -0
  202. data/lib/elasticsearch/api/actions/machine_learning/close_job.rb +56 -0
  203. data/lib/elasticsearch/api/actions/machine_learning/delete_calendar.rb +51 -0
  204. data/lib/elasticsearch/api/actions/machine_learning/delete_calendar_event.rb +55 -0
  205. data/lib/elasticsearch/api/actions/machine_learning/delete_calendar_job.rb +55 -0
  206. data/lib/elasticsearch/api/actions/machine_learning/delete_data_frame_analytics.rb +53 -0
  207. data/lib/elasticsearch/api/actions/machine_learning/delete_datafeed.rb +52 -0
  208. data/lib/elasticsearch/api/actions/machine_learning/delete_expired_data.rb +56 -0
  209. data/lib/elasticsearch/api/actions/machine_learning/delete_filter.rb +51 -0
  210. data/lib/elasticsearch/api/actions/machine_learning/delete_forecast.rb +60 -0
  211. data/lib/elasticsearch/api/actions/machine_learning/delete_job.rb +53 -0
  212. data/lib/elasticsearch/api/actions/machine_learning/delete_model_snapshot.rb +55 -0
  213. data/lib/elasticsearch/api/actions/machine_learning/delete_trained_model.rb +51 -0
  214. data/lib/elasticsearch/api/actions/machine_learning/delete_trained_model_alias.rb +55 -0
  215. data/lib/elasticsearch/api/actions/machine_learning/estimate_model_memory.rb +49 -0
  216. data/lib/elasticsearch/api/actions/machine_learning/evaluate_data_frame.rb +49 -0
  217. data/lib/elasticsearch/api/actions/machine_learning/explain_data_frame_analytics.rb +59 -0
  218. data/lib/elasticsearch/api/actions/machine_learning/flush_job.rb +57 -0
  219. data/lib/elasticsearch/api/actions/machine_learning/forecast.rb +54 -0
  220. data/lib/elasticsearch/api/actions/machine_learning/get_buckets.rb +73 -0
  221. data/lib/elasticsearch/api/actions/machine_learning/get_calendar_events.rb +56 -0
  222. data/lib/elasticsearch/api/actions/machine_learning/get_calendars.rb +61 -0
  223. data/lib/elasticsearch/api/actions/machine_learning/get_categories.rb +67 -0
  224. data/lib/elasticsearch/api/actions/machine_learning/get_data_frame_analytics.rb +57 -0
  225. data/lib/elasticsearch/api/actions/machine_learning/get_data_frame_analytics_stats.rb +57 -0
  226. data/lib/elasticsearch/api/actions/machine_learning/get_datafeed_stats.rb +55 -0
  227. data/lib/elasticsearch/api/actions/machine_learning/get_datafeeds.rb +56 -0
  228. data/lib/elasticsearch/api/actions/machine_learning/get_filters.rb +55 -0
  229. data/lib/elasticsearch/api/actions/machine_learning/get_influencers.rb +65 -0
  230. data/lib/elasticsearch/api/actions/machine_learning/get_job_stats.rb +55 -0
  231. data/lib/elasticsearch/api/actions/machine_learning/get_jobs.rb +56 -0
  232. data/lib/elasticsearch/api/actions/machine_learning/get_model_snapshots.rb +70 -0
  233. data/lib/elasticsearch/api/actions/machine_learning/get_overall_buckets.rb +65 -0
  234. data/lib/elasticsearch/api/actions/machine_learning/get_records.rb +65 -0
  235. data/lib/elasticsearch/api/actions/machine_learning/get_trained_model_deployment_stats.rb +51 -0
  236. data/lib/elasticsearch/api/actions/machine_learning/get_trained_models.rb +61 -0
  237. data/lib/elasticsearch/api/actions/machine_learning/get_trained_models_stats.rb +56 -0
  238. data/lib/elasticsearch/api/actions/machine_learning/infer_trained_model_deployment.rb +58 -0
  239. data/lib/elasticsearch/api/actions/machine_learning/info.rb +46 -0
  240. data/lib/elasticsearch/api/actions/machine_learning/open_job.rb +51 -0
  241. data/lib/elasticsearch/api/actions/machine_learning/post_calendar_events.rb +53 -0
  242. data/lib/elasticsearch/api/actions/machine_learning/post_data.rb +55 -0
  243. data/lib/elasticsearch/api/actions/machine_learning/preview_data_frame_analytics.rb +59 -0
  244. data/lib/elasticsearch/api/actions/machine_learning/preview_datafeed.rb +59 -0
  245. data/lib/elasticsearch/api/actions/machine_learning/put_calendar.rb +52 -0
  246. data/lib/elasticsearch/api/actions/machine_learning/put_calendar_job.rb +55 -0
  247. data/lib/elasticsearch/api/actions/machine_learning/put_data_frame_analytics.rb +53 -0
  248. data/lib/elasticsearch/api/actions/machine_learning/put_datafeed.rb +57 -0
  249. data/lib/elasticsearch/api/actions/machine_learning/put_filter.rb +53 -0
  250. data/lib/elasticsearch/api/actions/machine_learning/put_job.rb +57 -0
  251. data/lib/elasticsearch/api/actions/machine_learning/put_trained_model.rb +54 -0
  252. data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_alias.rb +56 -0
  253. data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_definition_part.rb +61 -0
  254. data/lib/elasticsearch/api/actions/machine_learning/put_trained_model_vocabulary.rb +57 -0
  255. data/lib/elasticsearch/api/actions/machine_learning/reset_job.rb +52 -0
  256. data/lib/elasticsearch/api/actions/machine_learning/revert_model_snapshot.rb +57 -0
  257. data/lib/elasticsearch/api/actions/machine_learning/set_upgrade_mode.rb +48 -0
  258. data/lib/elasticsearch/api/actions/machine_learning/start_data_frame_analytics.rb +53 -0
  259. data/lib/elasticsearch/api/actions/machine_learning/start_datafeed.rb +55 -0
  260. data/lib/elasticsearch/api/actions/machine_learning/start_trained_model_deployment.rb +57 -0
  261. data/lib/elasticsearch/api/actions/machine_learning/stop_data_frame_analytics.rb +55 -0
  262. data/lib/elasticsearch/api/actions/machine_learning/stop_datafeed.rb +56 -0
  263. data/lib/elasticsearch/api/actions/machine_learning/stop_trained_model_deployment.rb +55 -0
  264. data/lib/elasticsearch/api/actions/machine_learning/update_data_frame_analytics.rb +53 -0
  265. data/lib/elasticsearch/api/actions/machine_learning/update_datafeed.rb +57 -0
  266. data/lib/elasticsearch/api/actions/machine_learning/update_filter.rb +53 -0
  267. data/lib/elasticsearch/api/actions/machine_learning/update_job.rb +53 -0
  268. data/lib/elasticsearch/api/actions/machine_learning/update_model_snapshot.rb +57 -0
  269. data/lib/elasticsearch/api/actions/machine_learning/upgrade_job_snapshot.rb +57 -0
  270. data/lib/elasticsearch/api/actions/machine_learning/validate.rb +49 -0
  271. data/lib/elasticsearch/api/actions/machine_learning/validate_detector.rb +49 -0
  272. data/lib/elasticsearch/api/actions/mget.rb +9 -30
  273. data/lib/elasticsearch/api/actions/migration/deprecations.rb +53 -0
  274. data/lib/elasticsearch/api/actions/migration/get_feature_upgrade_status.rb +46 -0
  275. data/lib/elasticsearch/api/actions/migration/post_feature_upgrade.rb +46 -0
  276. data/lib/elasticsearch/api/actions/monitoring/bulk.rb +72 -0
  277. data/lib/elasticsearch/api/actions/msearch.rb +9 -29
  278. data/lib/elasticsearch/api/actions/msearch_template.rb +9 -27
  279. data/lib/elasticsearch/api/actions/mtermvectors.rb +14 -40
  280. data/lib/elasticsearch/api/actions/nodes/clear_repositories_metering_archive.rb +9 -4
  281. data/lib/elasticsearch/api/actions/nodes/get_repositories_metering_info.rb +6 -3
  282. data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +10 -26
  283. data/lib/elasticsearch/api/actions/nodes/info.rb +8 -13
  284. data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +7 -11
  285. data/lib/elasticsearch/api/actions/nodes/stats.rb +10 -22
  286. data/lib/elasticsearch/api/actions/nodes/usage.rb +7 -11
  287. data/lib/elasticsearch/api/actions/open_point_in_time.rb +8 -16
  288. data/lib/elasticsearch/api/actions/ping.rb +3 -2
  289. data/lib/elasticsearch/api/actions/put_script.rb +7 -13
  290. data/lib/elasticsearch/api/actions/rank_eval.rb +7 -14
  291. data/lib/elasticsearch/api/actions/reindex.rb +7 -18
  292. data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +7 -11
  293. data/lib/elasticsearch/api/actions/render_search_template.rb +7 -4
  294. data/lib/elasticsearch/api/actions/rollup/delete_job.rb +55 -0
  295. data/lib/elasticsearch/api/actions/rollup/get_jobs.rb +57 -0
  296. data/lib/elasticsearch/api/actions/rollup/get_rollup_caps.rb +57 -0
  297. data/lib/elasticsearch/api/actions/rollup/get_rollup_index_caps.rb +55 -0
  298. data/lib/elasticsearch/api/actions/rollup/put_job.rb +57 -0
  299. data/lib/elasticsearch/api/actions/rollup/rollup.rb +61 -0
  300. data/lib/elasticsearch/api/actions/rollup/rollup_search.rb +71 -0
  301. data/lib/elasticsearch/api/actions/rollup/start_job.rb +55 -0
  302. data/lib/elasticsearch/api/actions/rollup/stop_job.rb +57 -0
  303. data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +7 -4
  304. data/lib/elasticsearch/api/actions/scroll.rb +8 -14
  305. data/lib/elasticsearch/api/actions/search.rb +10 -66
  306. data/lib/elasticsearch/api/actions/search_mvt.rb +8 -17
  307. data/lib/elasticsearch/api/actions/search_shards.rb +7 -16
  308. data/lib/elasticsearch/api/actions/search_template.rb +8 -34
  309. data/lib/elasticsearch/api/actions/searchable_snapshots/cache_stats.rb +57 -0
  310. data/lib/elasticsearch/api/actions/{indices/flush_synced.rb → searchable_snapshots/clear_cache.rb} +17 -28
  311. data/lib/elasticsearch/api/actions/searchable_snapshots/mount.rb +60 -0
  312. data/lib/elasticsearch/api/actions/searchable_snapshots/stats.rb +54 -0
  313. data/lib/elasticsearch/api/actions/security/authenticate.rb +46 -0
  314. data/lib/elasticsearch/api/actions/security/change_password.rb +57 -0
  315. data/lib/elasticsearch/api/actions/security/clear_api_key_cache.rb +51 -0
  316. data/lib/elasticsearch/api/actions/security/clear_cached_privileges.rb +51 -0
  317. data/lib/elasticsearch/api/actions/security/clear_cached_realms.rb +52 -0
  318. data/lib/elasticsearch/api/actions/security/clear_cached_roles.rb +51 -0
  319. data/lib/elasticsearch/api/actions/security/clear_cached_service_tokens.rb +59 -0
  320. data/lib/elasticsearch/api/actions/security/create_api_key.rb +50 -0
  321. data/lib/elasticsearch/api/actions/security/create_service_token.rb +63 -0
  322. data/lib/elasticsearch/api/actions/security/delete_privileges.rb +56 -0
  323. data/lib/elasticsearch/api/actions/security/delete_role.rb +52 -0
  324. data/lib/elasticsearch/api/actions/security/delete_role_mapping.rb +52 -0
  325. data/lib/elasticsearch/api/actions/security/delete_service_token.rb +60 -0
  326. data/lib/elasticsearch/api/actions/security/delete_user.rb +52 -0
  327. data/lib/elasticsearch/api/actions/security/disable_user.rb +52 -0
  328. data/lib/elasticsearch/api/actions/security/enable_user.rb +52 -0
  329. data/lib/elasticsearch/api/actions/security/enroll_kibana.rb +46 -0
  330. data/lib/elasticsearch/api/actions/security/enroll_node.rb +46 -0
  331. data/lib/elasticsearch/api/actions/security/get_api_key.rb +51 -0
  332. data/lib/elasticsearch/api/actions/security/get_builtin_privileges.rb +46 -0
  333. data/lib/elasticsearch/api/actions/security/get_privileges.rb +58 -0
  334. data/lib/elasticsearch/api/actions/security/get_role.rb +61 -0
  335. data/lib/elasticsearch/api/actions/security/get_role_mapping.rb +53 -0
  336. data/lib/elasticsearch/api/actions/security/get_service_accounts.rb +58 -0
  337. data/lib/elasticsearch/api/actions/security/get_service_credentials.rb +55 -0
  338. data/lib/elasticsearch/api/actions/security/get_token.rb +49 -0
  339. data/lib/elasticsearch/api/actions/security/get_user.rb +61 -0
  340. data/lib/elasticsearch/api/actions/security/get_user_privileges.rb +46 -0
  341. data/lib/elasticsearch/api/actions/security/grant_api_key.rb +50 -0
  342. data/lib/elasticsearch/api/actions/security/has_privileges.rb +56 -0
  343. data/lib/elasticsearch/api/actions/security/invalidate_api_key.rb +49 -0
  344. data/lib/elasticsearch/api/actions/security/invalidate_token.rb +49 -0
  345. data/lib/elasticsearch/api/actions/security/put_privileges.rb +50 -0
  346. data/lib/elasticsearch/api/actions/security/put_role.rb +54 -0
  347. data/lib/elasticsearch/api/actions/security/put_role_mapping.rb +54 -0
  348. data/lib/elasticsearch/api/actions/security/put_user.rb +54 -0
  349. data/lib/elasticsearch/api/actions/security/query_api_keys.rb +52 -0
  350. data/lib/elasticsearch/api/actions/security/saml_authenticate.rb +49 -0
  351. data/lib/elasticsearch/api/actions/security/saml_complete_logout.rb +49 -0
  352. data/lib/elasticsearch/api/actions/security/saml_invalidate.rb +49 -0
  353. data/lib/elasticsearch/api/actions/security/saml_logout.rb +49 -0
  354. data/lib/elasticsearch/api/actions/security/saml_prepare_authentication.rb +49 -0
  355. data/lib/elasticsearch/api/actions/security/saml_service_provider_metadata.rb +51 -0
  356. data/lib/elasticsearch/api/actions/shutdown/delete_node.rb +5 -2
  357. data/lib/elasticsearch/api/actions/shutdown/get_node.rb +5 -2
  358. data/lib/elasticsearch/api/actions/shutdown/put_node.rb +5 -2
  359. data/lib/elasticsearch/api/actions/snapshot/cleanup_repository.rb +7 -12
  360. data/lib/elasticsearch/api/actions/snapshot/clone.rb +7 -11
  361. data/lib/elasticsearch/api/actions/snapshot/create.rb +7 -12
  362. data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +7 -13
  363. data/lib/elasticsearch/api/actions/snapshot/delete.rb +14 -14
  364. data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +12 -13
  365. data/lib/elasticsearch/api/actions/snapshot/get.rb +12 -16
  366. data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +12 -13
  367. data/lib/elasticsearch/api/actions/snapshot/repository_analyze.rb +7 -21
  368. data/lib/elasticsearch/api/actions/snapshot/restore.rb +7 -12
  369. data/lib/elasticsearch/api/actions/snapshot/status.rb +12 -13
  370. data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +7 -12
  371. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/delete_lifecycle.rb +51 -0
  372. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/execute_lifecycle.rb +51 -0
  373. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/execute_retention.rb +46 -0
  374. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_lifecycle.rb +53 -0
  375. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_stats.rb +46 -0
  376. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/get_status.rb +46 -0
  377. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/put_lifecycle.rb +52 -0
  378. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/start.rb +46 -0
  379. data/lib/elasticsearch/api/actions/snapshot_lifecycle_management/stop.rb +46 -0
  380. data/lib/elasticsearch/api/actions/sql/clear_cursor.rb +49 -0
  381. data/lib/elasticsearch/api/actions/sql/delete_async.rb +51 -0
  382. data/lib/elasticsearch/api/actions/sql/get_async.rb +55 -0
  383. data/lib/elasticsearch/api/actions/sql/get_async_status.rb +51 -0
  384. data/lib/elasticsearch/api/actions/sql/query.rb +50 -0
  385. data/lib/elasticsearch/api/actions/sql/translate.rb +49 -0
  386. data/lib/elasticsearch/api/actions/ssl/certificates.rb +46 -0
  387. data/lib/elasticsearch/api/actions/tasks/cancel.rb +7 -14
  388. data/lib/elasticsearch/api/actions/tasks/get.rb +7 -12
  389. data/lib/elasticsearch/api/actions/tasks/list.rb +7 -17
  390. data/lib/elasticsearch/api/actions/terms_enum.rb +55 -0
  391. data/lib/elasticsearch/api/actions/termvectors.rb +13 -40
  392. data/lib/elasticsearch/api/actions/text_structure/find_structure.rb +70 -0
  393. data/lib/elasticsearch/api/actions/transform/delete_transform.rb +52 -0
  394. data/lib/elasticsearch/api/actions/transform/get_transform.rb +57 -0
  395. data/lib/elasticsearch/api/actions/transform/get_transform_stats.rb +54 -0
  396. data/lib/elasticsearch/api/actions/transform/preview_transform.rb +59 -0
  397. data/lib/elasticsearch/api/actions/transform/put_transform.rb +54 -0
  398. data/lib/elasticsearch/api/actions/transform/start_transform.rb +52 -0
  399. data/lib/elasticsearch/api/actions/transform/stop_transform.rb +56 -0
  400. data/lib/elasticsearch/api/actions/transform/update_transform.rb +54 -0
  401. data/lib/elasticsearch/api/actions/transform/upgrade_transforms.rb +47 -0
  402. data/lib/elasticsearch/api/actions/update.rb +12 -23
  403. data/lib/elasticsearch/api/actions/update_by_query.rb +12 -57
  404. data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +7 -11
  405. data/lib/elasticsearch/api/actions/watcher/ack_watch.rb +58 -0
  406. data/lib/elasticsearch/api/actions/watcher/activate_watch.rb +51 -0
  407. data/lib/elasticsearch/api/actions/watcher/deactivate_watch.rb +51 -0
  408. data/lib/elasticsearch/api/actions/watcher/delete_watch.rb +59 -0
  409. data/lib/elasticsearch/api/actions/watcher/execute_watch.rb +55 -0
  410. data/lib/elasticsearch/api/actions/watcher/get_watch.rb +51 -0
  411. data/lib/elasticsearch/api/actions/watcher/put_watch.rb +56 -0
  412. data/lib/elasticsearch/api/actions/watcher/query_watches.rb +52 -0
  413. data/lib/elasticsearch/api/actions/watcher/start.rb +46 -0
  414. data/lib/elasticsearch/api/actions/watcher/stats.rb +54 -0
  415. data/lib/elasticsearch/api/actions/watcher/stop.rb +46 -0
  416. data/lib/elasticsearch/api/actions/xpack/info.rb +48 -0
  417. data/lib/elasticsearch/api/actions/xpack/usage.rb +47 -0
  418. data/lib/elasticsearch/api/namespace/async_search.rb +36 -0
  419. data/lib/elasticsearch/api/namespace/autoscaling.rb +36 -0
  420. data/lib/elasticsearch/api/namespace/cross_cluster_replication.rb +38 -0
  421. data/lib/elasticsearch/api/namespace/data_frame_transform_deprecated.rb +36 -0
  422. data/lib/elasticsearch/api/namespace/enrich.rb +36 -0
  423. data/lib/elasticsearch/api/namespace/eql.rb +36 -0
  424. data/lib/elasticsearch/api/namespace/fleet.rb +36 -0
  425. data/lib/elasticsearch/api/namespace/graph.rb +36 -0
  426. data/lib/elasticsearch/api/namespace/index_lifecycle_management.rb +38 -0
  427. data/lib/elasticsearch/api/namespace/ingest.rb +0 -1
  428. data/lib/elasticsearch/api/namespace/license.rb +36 -0
  429. data/lib/elasticsearch/api/namespace/logstash.rb +36 -0
  430. data/lib/elasticsearch/api/namespace/machine_learning.rb +38 -0
  431. data/lib/elasticsearch/api/namespace/migration.rb +36 -0
  432. data/lib/elasticsearch/api/namespace/monitoring.rb +36 -0
  433. data/lib/elasticsearch/api/namespace/rollup.rb +36 -0
  434. data/lib/elasticsearch/api/namespace/searchable_snapshots.rb +36 -0
  435. data/lib/elasticsearch/api/namespace/snapshot_lifecycle_management.rb +38 -0
  436. data/lib/elasticsearch/api/namespace/sql.rb +36 -0
  437. data/lib/elasticsearch/api/namespace/ssl.rb +36 -0
  438. data/lib/elasticsearch/api/namespace/text_structure.rb +36 -0
  439. data/lib/elasticsearch/api/namespace/transform.rb +36 -0
  440. data/lib/elasticsearch/api/namespace/watcher.rb +36 -0
  441. data/lib/elasticsearch/api/namespace/xpack.rb +36 -0
  442. data/lib/elasticsearch/api/response.rb +48 -0
  443. data/lib/elasticsearch/api/utils.rb +7 -60
  444. data/lib/elasticsearch/api/version.rb +1 -1
  445. data/lib/elasticsearch/api.rb +26 -21
  446. data/spec/elasticsearch/api/actions/bulk_spec.rb +8 -8
  447. data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +1 -1
  448. data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +1 -1
  449. data/spec/elasticsearch/api/actions/cat/count_spec.rb +1 -1
  450. data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +2 -2
  451. data/spec/elasticsearch/api/actions/cat/health_spec.rb +1 -1
  452. data/spec/elasticsearch/api/actions/cat/help_spec.rb +1 -1
  453. data/spec/elasticsearch/api/actions/cat/indices_spec.rb +1 -1
  454. data/spec/elasticsearch/api/actions/cat/master_spec.rb +1 -1
  455. data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +1 -1
  456. data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +1 -1
  457. data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +1 -1
  458. data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +1 -1
  459. data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +1 -1
  460. data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +1 -1
  461. data/spec/elasticsearch/api/actions/cat/segments_spec.rb +2 -2
  462. data/spec/elasticsearch/api/actions/cat/shards_spec.rb +1 -1
  463. data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +1 -1
  464. data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +1 -1
  465. data/spec/elasticsearch/api/actions/cat/templates_spec.rb +1 -1
  466. data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +1 -1
  467. data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +2 -2
  468. data/spec/elasticsearch/api/actions/close_point_in_time_spec.rb +1 -1
  469. data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +1 -1
  470. data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +1 -1
  471. data/spec/elasticsearch/api/actions/cluster/health_spec.rb +3 -3
  472. data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +1 -1
  473. data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +1 -1
  474. data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +1 -1
  475. data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +2 -2
  476. data/spec/elasticsearch/api/actions/cluster/state_spec.rb +2 -2
  477. data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +1 -1
  478. data/spec/elasticsearch/api/actions/count_spec.rb +9 -6
  479. data/spec/elasticsearch/api/actions/create_document_spec.rb +8 -8
  480. data/spec/elasticsearch/api/actions/dangling_indices/delete_dangling_indices_spec.rb +1 -1
  481. data/spec/elasticsearch/api/actions/dangling_indices/import_dangling_indices_spec.rb +1 -1
  482. data/spec/elasticsearch/api/actions/dangling_indices/list_dangling_indices_spec.rb +1 -1
  483. data/spec/elasticsearch/api/actions/data_frame/update_data_frame_transform_spec.rb +81 -0
  484. data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +2 -19
  485. data/spec/elasticsearch/api/actions/delete_document_spec.rb +3 -16
  486. data/spec/elasticsearch/api/actions/delete_script_spec.rb +1 -1
  487. data/spec/elasticsearch/api/actions/exists_document_spec.rb +10 -21
  488. data/spec/elasticsearch/api/actions/explain_document_spec.rb +9 -9
  489. data/spec/elasticsearch/api/actions/features/get_features_spec.rb +11 -7
  490. data/spec/elasticsearch/api/actions/features/reset_features_spec.rb +11 -7
  491. data/spec/elasticsearch/api/actions/field_caps_spec.rb +1 -1
  492. data/spec/elasticsearch/api/actions/fleet/global_checkpoints_spec.rb +44 -0
  493. data/spec/elasticsearch/api/actions/get_document_source_spec.rb +6 -18
  494. data/spec/elasticsearch/api/actions/get_document_spec.rb +6 -31
  495. data/spec/elasticsearch/api/actions/get_script_spec.rb +1 -1
  496. data/spec/elasticsearch/api/actions/index_document_spec.rb +10 -28
  497. data/spec/elasticsearch/api/actions/index_lifecycle_management/migrate_to_data_tiers_spec.rb +36 -0
  498. data/spec/elasticsearch/api/actions/indices/add_block_spec.rb +1 -1
  499. data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +3 -3
  500. data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +4 -4
  501. data/spec/elasticsearch/api/actions/indices/clone_spec.rb +6 -6
  502. data/spec/elasticsearch/api/actions/indices/close_spec.rb +3 -3
  503. data/spec/elasticsearch/api/actions/indices/create_spec.rb +3 -3
  504. data/spec/elasticsearch/api/actions/indices/data_streams_stats_spec.rb +58 -0
  505. data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +2 -2
  506. data/spec/elasticsearch/api/actions/indices/delete_spec.rb +4 -4
  507. data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +2 -2
  508. data/spec/elasticsearch/api/actions/indices/disk_usage_spec.rb +1 -1
  509. data/spec/elasticsearch/api/actions/indices/field_usage_stats_spec.rb +1 -1
  510. data/spec/elasticsearch/api/actions/indices/flush_spec.rb +5 -5
  511. data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +1 -1
  512. data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +3 -3
  513. data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +2 -13
  514. data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +7 -22
  515. data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +4 -4
  516. data/spec/elasticsearch/api/actions/indices/get_spec.rb +2 -2
  517. data/spec/elasticsearch/api/actions/indices/open_spec.rb +3 -3
  518. data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +4 -4
  519. data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +8 -14
  520. data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +5 -5
  521. data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +3 -3
  522. data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +1 -1
  523. data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +5 -5
  524. data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +2 -2
  525. data/spec/elasticsearch/api/actions/indices/segments_spec.rb +5 -5
  526. data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +1 -1
  527. data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +1 -1
  528. data/spec/elasticsearch/api/actions/indices/split_spec.rb +1 -1
  529. data/spec/elasticsearch/api/actions/indices/stats_spec.rb +7 -12
  530. data/spec/elasticsearch/api/actions/indices/unfreeze_spec.rb +85 -0
  531. data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +2 -2
  532. data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +8 -8
  533. data/spec/elasticsearch/api/actions/info_spec.rb +1 -1
  534. data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +2 -2
  535. data/spec/elasticsearch/api/actions/ingest/geo_ip_stats_spec.rb +5 -1
  536. data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +2 -2
  537. data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +2 -2
  538. data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +2 -2
  539. data/spec/elasticsearch/api/actions/json_builders_spec.rb +2 -2
  540. data/spec/elasticsearch/api/actions/machine_learning/get_trained_model_deployment_stats_spec.rb +46 -0
  541. data/spec/elasticsearch/api/actions/machine_learning/infer_trained_model_deployment_spec.rb +46 -0
  542. data/spec/elasticsearch/api/actions/machine_learning/put_trained_model_definition_part_spec.rb +62 -0
  543. data/spec/elasticsearch/api/actions/machine_learning/put_trained_model_vocabulary_spec.rb +54 -0
  544. data/spec/elasticsearch/api/actions/machine_learning/reset_job_spec.rb +46 -0
  545. data/spec/elasticsearch/api/actions/machine_learning/set_upgrade_mode_spec.rb +51 -0
  546. data/spec/elasticsearch/api/actions/machine_learning/start_trained_model_deployment_spec.rb +46 -0
  547. data/spec/elasticsearch/api/actions/machine_learning/stop_trained_model_deployment_spec.rb +46 -0
  548. data/spec/elasticsearch/api/actions/mget_spec.rb +5 -20
  549. data/spec/elasticsearch/api/actions/migration/get_feature_upgrade_status_spec.rb +34 -0
  550. data/spec/elasticsearch/api/actions/migration/post_feature_upgrade_spec.rb +34 -0
  551. data/spec/elasticsearch/api/actions/msearch_spec.rb +16 -14
  552. data/spec/elasticsearch/api/actions/msearch_template_spec.rb +2 -2
  553. data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +4 -6
  554. data/spec/elasticsearch/api/actions/nodes/clear_repositories_metering_archive_spec.rb +2 -2
  555. data/spec/elasticsearch/api/actions/nodes/get_repositories_metering_info_spec.rb +2 -2
  556. data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +6 -6
  557. data/spec/elasticsearch/api/actions/nodes/info_spec.rb +6 -6
  558. data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +5 -5
  559. data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +4 -4
  560. data/spec/elasticsearch/api/actions/open_point_in_time_spec.rb +1 -1
  561. data/spec/elasticsearch/api/actions/put_script_spec.rb +2 -2
  562. data/spec/elasticsearch/api/actions/rank_eval_spec.rb +127 -0
  563. data/spec/elasticsearch/api/actions/reindex_spec.rb +1 -1
  564. data/spec/elasticsearch/api/actions/render_search_template_spec.rb +2 -2
  565. data/spec/elasticsearch/api/actions/scroll_spec.rb +2 -2
  566. data/spec/elasticsearch/api/actions/search_mvt_spec.rb +3 -2
  567. data/spec/elasticsearch/api/actions/search_shards_spec.rb +1 -1
  568. data/spec/elasticsearch/api/actions/search_spec.rb +2 -40
  569. data/spec/elasticsearch/api/actions/search_template_spec.rb +1 -1
  570. data/spec/elasticsearch/api/actions/searchable_snapshots/cache_stats_spec.rb +44 -0
  571. data/spec/elasticsearch/api/actions/searchable_snapshots/clear_cache_spec.rb +44 -0
  572. data/spec/elasticsearch/api/actions/searchable_snapshots/mount_spec.rb +56 -0
  573. data/spec/elasticsearch/api/actions/searchable_snapshots/stats_spec.rb +43 -0
  574. data/spec/elasticsearch/api/actions/security/clear_cached_service_tokens_spec.rb +58 -0
  575. data/spec/elasticsearch/api/actions/security/create_api_key_spec.rb +79 -0
  576. data/spec/elasticsearch/api/actions/security/create_service_token_spec.rb +54 -0
  577. data/spec/elasticsearch/api/actions/security/delete_service_token_spec.rb +60 -0
  578. data/spec/elasticsearch/api/actions/security/enroll_kibana_spec.rb +34 -0
  579. data/spec/elasticsearch/api/actions/security/get_api_key_spec.rb +56 -0
  580. data/spec/elasticsearch/api/actions/{indices/upgrade_spec.rb → security/get_builtin_privileges_spec.rb} +4 -4
  581. data/spec/elasticsearch/api/actions/security/get_service_accounts_spec.rb +58 -0
  582. data/spec/elasticsearch/api/actions/security/get_service_credentials_spec.rb +53 -0
  583. data/spec/elasticsearch/api/actions/security/invalidate_api_key_spec.rb +38 -0
  584. data/spec/elasticsearch/api/actions/security/query_api_keys_spec.rb +48 -0
  585. data/spec/elasticsearch/api/actions/security/saml_authenticate_spec.rb +44 -0
  586. data/spec/elasticsearch/api/actions/security/saml_complete_logout_spec.rb +44 -0
  587. data/spec/elasticsearch/api/actions/security/saml_invalidate_spec.rb +44 -0
  588. data/spec/elasticsearch/api/actions/security/saml_logout_spec.rb +44 -0
  589. data/spec/elasticsearch/api/actions/security/saml_prepare_authentication_spec.rb +44 -0
  590. data/spec/elasticsearch/api/actions/security/saml_service_provider_metadata_spec.rb +46 -0
  591. data/spec/elasticsearch/api/actions/shutdown/delete_node_spec.rb +1 -1
  592. data/spec/elasticsearch/api/actions/shutdown/get_node_spec.rb +2 -2
  593. data/spec/elasticsearch/api/actions/shutdown/put_node_spec.rb +1 -1
  594. data/spec/elasticsearch/api/actions/snapshot/clone_spec.rb +1 -1
  595. data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +1 -1
  596. data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +1 -1
  597. data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +2 -2
  598. data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +1 -1
  599. data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +1 -1
  600. data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +1 -1
  601. data/spec/elasticsearch/api/actions/snapshot/repository_analize_spec.rb +2 -4
  602. data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +7 -10
  603. data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +2 -3
  604. data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +6 -7
  605. data/spec/elasticsearch/api/actions/sql/delete_async_spec.rb +46 -0
  606. data/spec/elasticsearch/api/actions/sql/get_async_spec.rb +46 -0
  607. data/spec/elasticsearch/api/actions/sql/get_async_stats_spec.rb +46 -0
  608. data/spec/elasticsearch/api/actions/tasks/cancel_spec.rb +7 -8
  609. data/spec/elasticsearch/api/actions/tasks/get_spec.rb +1 -1
  610. data/spec/elasticsearch/api/actions/tasks/list_spec.rb +6 -7
  611. data/spec/elasticsearch/api/actions/terms_enum_spec.rb +52 -0
  612. data/spec/elasticsearch/api/actions/termvectors_spec.rb +5 -5
  613. data/spec/elasticsearch/api/actions/update_by_query_spec.rb +6 -7
  614. data/spec/elasticsearch/api/actions/update_document_spec.rb +6 -20
  615. data/spec/elasticsearch/api/api_response_spec.rb +64 -0
  616. data/spec/elasticsearch/api/api_spec.rb +0 -3
  617. data/spec/elasticsearch/api/client_spec.rb +0 -4
  618. data/spec/elasticsearch/api/rest_api_yaml_spec.rb +78 -83
  619. data/spec/elasticsearch/api/utils_spec.rb +26 -77
  620. data/spec/rest_api_tests_helper.rb +91 -0
  621. data/spec/{skipped_tests.yml → skipped_tests_free.yml} +4 -9
  622. data/spec/skipped_tests_platinum.yml +59 -0
  623. data/spec/spec_helper.rb +9 -18
  624. data/spec/unit_tests_platinum/test_helper.rb +72 -0
  625. data/spec/unit_tests_platinum/unit/async_search/delete_test.rb +39 -0
  626. data/spec/unit_tests_platinum/unit/async_search/get_test.rb +39 -0
  627. data/spec/unit_tests_platinum/unit/async_search/status_test.rb +39 -0
  628. data/spec/unit_tests_platinum/unit/async_search/submit_test.rb +50 -0
  629. data/spec/unit_tests_platinum/unit/autoscaling/delete_autoscaling_policy_test.rb +46 -0
  630. data/spec/unit_tests_platinum/unit/autoscaling/get_autoscaling_capacity_test.rb +40 -0
  631. data/spec/unit_tests_platinum/unit/autoscaling/get_autoscaling_policy_test.rb +46 -0
  632. data/spec/unit_tests_platinum/unit/autoscaling/put_autoscaling_policy_test.rb +52 -0
  633. data/spec/unit_tests_platinum/unit/enrich/delete_policy_test.rb +43 -0
  634. data/spec/unit_tests_platinum/unit/eql/delete_test.rb +46 -0
  635. data/spec/unit_tests_platinum/unit/eql/get_status_test.rb +46 -0
  636. data/spec/unit_tests_platinum/unit/eql/get_test.rb +46 -0
  637. data/spec/unit_tests_platinum/unit/eql/search_test.rb +52 -0
  638. data/spec/unit_tests_platinum/unit/graph/explore_test.rb +43 -0
  639. data/spec/unit_tests_platinum/unit/index_lifecycle_management/explain_test.rb +43 -0
  640. data/spec/unit_tests_platinum/unit/index_lifecycle_management/get_status_test.rb +43 -0
  641. data/spec/unit_tests_platinum/unit/index_lifecycle_management/move_to_step.rb +43 -0
  642. data/spec/unit_tests_platinum/unit/index_lifecycle_management/remove_policy_test.rb +43 -0
  643. data/spec/unit_tests_platinum/unit/index_lifecycle_management/retry_policy_test.rb +43 -0
  644. data/spec/unit_tests_platinum/unit/index_lifecycle_management/start_test.rb +43 -0
  645. data/spec/unit_tests_platinum/unit/index_lifecycle_management/stop_test.rb +43 -0
  646. data/spec/unit_tests_platinum/unit/indices/create_data_stream_test.rb +46 -0
  647. data/spec/unit_tests_platinum/unit/indices/data_stream_stats_test.rb +54 -0
  648. data/spec/unit_tests_platinum/unit/indices/delete_data_stream_test.rb +46 -0
  649. data/spec/unit_tests_platinum/unit/indices/get_data_stream_test.rb +50 -0
  650. data/spec/unit_tests_platinum/unit/indices/migrate_to_data_stream_test.rb +46 -0
  651. data/spec/unit_tests_platinum/unit/indices/modify_data_stream_test.rb +46 -0
  652. data/spec/unit_tests_platinum/unit/indices/promote_data_stream_test.rb +46 -0
  653. data/spec/unit_tests_platinum/unit/info_test.rb +40 -0
  654. data/spec/unit_tests_platinum/unit/knn_search_test.rb +40 -0
  655. data/spec/unit_tests_platinum/unit/license/delete_test.rb +43 -0
  656. data/spec/unit_tests_platinum/unit/license/get_test.rb +43 -0
  657. data/spec/unit_tests_platinum/unit/license/post_test.rb +43 -0
  658. data/spec/unit_tests_platinum/unit/logstash/delete_pipeline_test.rb +46 -0
  659. data/spec/unit_tests_platinum/unit/logstash/get_pipeline_test.rb +46 -0
  660. data/spec/unit_tests_platinum/unit/logstash/put_pipeline_test.rb +46 -0
  661. data/spec/unit_tests_platinum/unit/machine_learning/close_job_test.rb +43 -0
  662. data/spec/unit_tests_platinum/unit/machine_learning/delete_datafeed_test.rb +43 -0
  663. data/spec/unit_tests_platinum/unit/machine_learning/delete_expired_data_test.rb +43 -0
  664. data/spec/unit_tests_platinum/unit/machine_learning/delete_filter_test.rb +43 -0
  665. data/spec/unit_tests_platinum/unit/machine_learning/delete_forecast_test.rb +43 -0
  666. data/spec/unit_tests_platinum/unit/machine_learning/delete_job_test.rb +43 -0
  667. data/spec/unit_tests_platinum/unit/machine_learning/delete_model_alias_test.rb +40 -0
  668. data/spec/unit_tests_platinum/unit/machine_learning/delete_model_snapshot_test.rb +43 -0
  669. data/spec/unit_tests_platinum/unit/machine_learning/flush_job_test.rb +43 -0
  670. data/spec/unit_tests_platinum/unit/machine_learning/forecast_test.rb +43 -0
  671. data/spec/unit_tests_platinum/unit/machine_learning/get_buckets_test.rb +43 -0
  672. data/spec/unit_tests_platinum/unit/machine_learning/get_categories_test.rb +43 -0
  673. data/spec/unit_tests_platinum/unit/machine_learning/get_datafeed_stats_test.rb +43 -0
  674. data/spec/unit_tests_platinum/unit/machine_learning/get_datafeeds_test.rb +43 -0
  675. data/spec/unit_tests_platinum/unit/machine_learning/get_filters_test.rb +43 -0
  676. data/spec/unit_tests_platinum/unit/machine_learning/get_influencers_test.rb +43 -0
  677. data/spec/unit_tests_platinum/unit/machine_learning/get_job_stats_test.rb +43 -0
  678. data/spec/unit_tests_platinum/unit/machine_learning/get_jobs_test.rb +43 -0
  679. data/spec/unit_tests_platinum/unit/machine_learning/get_model_snapshots_test.rb +43 -0
  680. data/spec/unit_tests_platinum/unit/machine_learning/get_overall_buckets_test.rb +43 -0
  681. data/spec/unit_tests_platinum/unit/machine_learning/get_records_test.rb +43 -0
  682. data/spec/unit_tests_platinum/unit/machine_learning/open_job_test.rb +43 -0
  683. data/spec/unit_tests_platinum/unit/machine_learning/post_data_test.rb +43 -0
  684. data/spec/unit_tests_platinum/unit/machine_learning/preview_data_frame_analytics_test.rb +64 -0
  685. data/spec/unit_tests_platinum/unit/machine_learning/preview_datafeed_test.rb +43 -0
  686. data/spec/unit_tests_platinum/unit/machine_learning/put_datafeed_test.rb +43 -0
  687. data/spec/unit_tests_platinum/unit/machine_learning/put_filter_test.rb +43 -0
  688. data/spec/unit_tests_platinum/unit/machine_learning/put_job_test.rb +43 -0
  689. data/spec/unit_tests_platinum/unit/machine_learning/put_trained_model_alias_test.rb +40 -0
  690. data/spec/unit_tests_platinum/unit/machine_learning/revert_model_snapshot_test.rb +43 -0
  691. data/spec/unit_tests_platinum/unit/machine_learning/start_datafeed_test.rb +43 -0
  692. data/spec/unit_tests_platinum/unit/machine_learning/stop_datafeed_test.rb +43 -0
  693. data/spec/unit_tests_platinum/unit/machine_learning/update_data_frame_analytics_test.rb +40 -0
  694. data/spec/unit_tests_platinum/unit/machine_learning/update_datafeed_test.rb +43 -0
  695. data/spec/unit_tests_platinum/unit/machine_learning/update_filter_test.rb +43 -0
  696. data/spec/unit_tests_platinum/unit/machine_learning/update_job_test.rb +43 -0
  697. data/spec/unit_tests_platinum/unit/machine_learning/update_model_snapshot_test.rb +43 -0
  698. data/spec/unit_tests_platinum/unit/machine_learning/upgrade_job_snapshot_test.rb +43 -0
  699. data/spec/unit_tests_platinum/unit/machine_learning/validate_detector_test.rb +43 -0
  700. data/spec/unit_tests_platinum/unit/machine_learning/validate_test.rb +43 -0
  701. data/spec/unit_tests_platinum/unit/migration/deprecations_test.rb +42 -0
  702. data/spec/unit_tests_platinum/unit/monitoring/bulk_test.rb +43 -0
  703. data/spec/unit_tests_platinum/unit/rollup/get_rollup_index_caps_test.rb +40 -0
  704. data/spec/unit_tests_platinum/unit/rollup/rollup_test.rb +58 -0
  705. data/spec/unit_tests_platinum/unit/security/authenticate_test.rb +43 -0
  706. data/spec/unit_tests_platinum/unit/security/change_password_test.rb +55 -0
  707. data/spec/unit_tests_platinum/unit/security/clear_api_key_cache_test.rb +40 -0
  708. data/spec/unit_tests_platinum/unit/security/clear_cached_privileges_test.rb +40 -0
  709. data/spec/unit_tests_platinum/unit/security/clear_cached_realms_test.rb +43 -0
  710. data/spec/unit_tests_platinum/unit/security/clear_cached_roles_test.rb +43 -0
  711. data/spec/unit_tests_platinum/unit/security/delete_privileges_test.rb +43 -0
  712. data/spec/unit_tests_platinum/unit/security/delete_role_mapping_test.rb +43 -0
  713. data/spec/unit_tests_platinum/unit/security/delete_role_test.rb +43 -0
  714. data/spec/unit_tests_platinum/unit/security/delete_user_test.rb +43 -0
  715. data/spec/unit_tests_platinum/unit/security/disable_user_test.rb +43 -0
  716. data/spec/unit_tests_platinum/unit/security/enable_user_test.rb +43 -0
  717. data/spec/unit_tests_platinum/unit/security/get_privileges_test.rb +78 -0
  718. data/spec/unit_tests_platinum/unit/security/get_role_mapping_test.rb +54 -0
  719. data/spec/unit_tests_platinum/unit/security/get_role_test.rb +62 -0
  720. data/spec/unit_tests_platinum/unit/security/get_token_test.rb +43 -0
  721. data/spec/unit_tests_platinum/unit/security/get_user_privileges_test.rb +43 -0
  722. data/spec/unit_tests_platinum/unit/security/get_user_test.rb +61 -0
  723. data/spec/unit_tests_platinum/unit/security/grant_api_key_test.rb +41 -0
  724. data/spec/unit_tests_platinum/unit/security/has_privileges_test.rb +55 -0
  725. data/spec/unit_tests_platinum/unit/security/invalidate_token_test.rb +43 -0
  726. data/spec/unit_tests_platinum/unit/security/put_privileges_test.rb +43 -0
  727. data/spec/unit_tests_platinum/unit/security/put_role_mapping_test.rb +43 -0
  728. data/spec/unit_tests_platinum/unit/security/put_role_test.rb +43 -0
  729. data/spec/unit_tests_platinum/unit/security/put_user_test.rb +43 -0
  730. data/spec/unit_tests_platinum/unit/ssl/certificates_test.rb +43 -0
  731. data/spec/unit_tests_platinum/unit/text_structure/find_structure_test.rb +40 -0
  732. data/spec/unit_tests_platinum/unit/transform/upgrade_transforms_spec.rb +34 -0
  733. data/spec/unit_tests_platinum/unit/usage_test.rb +40 -0
  734. data/spec/unit_tests_platinum/unit/watcher/ack_watch_test.rb +55 -0
  735. data/spec/unit_tests_platinum/unit/watcher/activate_watch_test.rb +43 -0
  736. data/spec/unit_tests_platinum/unit/watcher/deactivate_watch_test.rb +43 -0
  737. data/spec/unit_tests_platinum/unit/watcher/delete_watch_test.rb +43 -0
  738. data/spec/unit_tests_platinum/unit/watcher/execute_watch_test.rb +55 -0
  739. data/spec/unit_tests_platinum/unit/watcher/get_watch_test.rb +43 -0
  740. data/spec/unit_tests_platinum/unit/watcher/put_watch_test.rb +43 -0
  741. data/spec/unit_tests_platinum/unit/watcher/query_watches_test.rb +52 -0
  742. data/spec/unit_tests_platinum/unit/watcher/start_test.rb +41 -0
  743. data/spec/unit_tests_platinum/unit/watcher/stats_test.rb +43 -0
  744. data/spec/unit_tests_platinum/unit/watcher/stop_test.rb +43 -0
  745. data/utils/README.md +2 -10
  746. data/utils/thor/.rubocop.yml +0 -2
  747. data/utils/thor/generate_source.rb +26 -47
  748. data/utils/thor/generator/endpoint_specifics.rb +2 -30
  749. data/utils/thor/generator/files_helper.rb +24 -37
  750. data/utils/thor/templates/{_params_registry.erb → _body.erb} +15 -12
  751. data/utils/thor/templates/_documentation_top.erb +1 -2
  752. data/utils/thor/templates/_method_setup.erb +20 -32
  753. data/utils/thor/templates/_perform_request.erb +16 -22
  754. data/utils/thor/templates/method.erb +2 -7
  755. metadata +632 -86
  756. data/lib/elasticsearch/api/actions/cat/params_registry.rb +0 -60
  757. data/lib/elasticsearch/api/actions/cluster/params_registry.rb +0 -60
  758. data/lib/elasticsearch/api/actions/dangling_indices/params_registry.rb +0 -60
  759. data/lib/elasticsearch/api/actions/features/params_registry.rb +0 -60
  760. data/lib/elasticsearch/api/actions/indices/params_registry.rb +0 -60
  761. data/lib/elasticsearch/api/actions/ingest/params_registry.rb +0 -60
  762. data/lib/elasticsearch/api/actions/nodes/params_registry.rb +0 -60
  763. data/lib/elasticsearch/api/actions/params_registry.rb +0 -58
  764. data/lib/elasticsearch/api/actions/shutdown/params_registry.rb +0 -60
  765. data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +0 -60
  766. data/lib/elasticsearch/api/actions/tasks/params_registry.rb +0 -60
  767. data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +0 -90
  768. data/spec/rest_yaml_tests_helper.rb +0 -131
@@ -0,0 +1,43 @@
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 'test_helper'
19
+
20
+ module Elasticsearch
21
+ module Test
22
+ class XPackWatcherPutWatchTest < Minitest::Test
23
+
24
+ context "XPack Watcher: Put watch" do
25
+ subject { FakeClient.new }
26
+
27
+ should "perform correct request" do
28
+ subject.expects(:perform_request).with do |method, url, params, body|
29
+ assert_equal 'PUT', method
30
+ assert_equal '_watcher/watch/foo', url
31
+ assert_equal Hash.new, params
32
+ assert_equal Hash.new, body
33
+ true
34
+ end.returns(FakeResponse.new)
35
+
36
+ subject.watcher.put_watch id: 'foo', body: {}
37
+ end
38
+
39
+ end
40
+
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,52 @@
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 'test_helper'
19
+
20
+ module Elasticsearch
21
+ module Test
22
+ class XPackWatcherQueryWatchesTest < Minitest::Test
23
+ context "XPack Watcher: Query watches" do
24
+ subject { FakeClient.new }
25
+
26
+ should "perform correct request" do
27
+ subject.expects(:perform_request).with do |method, url, params, body|
28
+ assert_equal('GET', method)
29
+ assert_equal('_watcher/_query/watches', url)
30
+ assert_equal(params, {})
31
+ assert_nil(body)
32
+ true
33
+ end.returns(FakeResponse.new)
34
+
35
+ subject.watcher.query_watches
36
+ end
37
+
38
+ should "perform correct request when sending body" do
39
+ subject.expects(:perform_request).with do |method, url, params, body|
40
+ assert_equal('POST', method)
41
+ assert_equal('_watcher/_query/watches', url)
42
+ assert_equal(params, {})
43
+ assert_equal(body, {})
44
+ true
45
+ end.returns(FakeResponse.new)
46
+
47
+ subject.watcher.query_watches(body: {})
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,41 @@
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 'test_helper'
19
+
20
+ module Elasticsearch
21
+ module Test
22
+ class XPackWatcherStartTest < Minitest::Test
23
+
24
+ context "XPack Watcher: Start" do
25
+ subject { FakeClient.new }
26
+
27
+ should "perform correct request" do
28
+ subject.expects(:perform_request).with do |method, url, params, body|
29
+ assert_equal 'POST', method
30
+ assert_equal '_watcher/_start', url
31
+ assert_equal Hash.new, params
32
+ assert_nil body
33
+ true
34
+ end.returns(FakeResponse.new)
35
+
36
+ subject.watcher.start
37
+ end
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,43 @@
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 'test_helper'
19
+
20
+ module Elasticsearch
21
+ module Test
22
+ class XPackWatcherStatsTest < Minitest::Test
23
+
24
+ context "XPack Watcher: Stats" do
25
+ subject { FakeClient.new }
26
+
27
+ should "perform correct request" do
28
+ subject.expects(:perform_request).with do |method, url, params, body|
29
+ assert_equal 'GET', method
30
+ assert_equal '_watcher/stats', url
31
+ assert_equal Hash.new, params
32
+ assert_nil body
33
+ true
34
+ end.returns(FakeResponse.new)
35
+
36
+ subject.watcher.stats
37
+ end
38
+
39
+ end
40
+
41
+ end
42
+ end
43
+ end
@@ -0,0 +1,43 @@
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 'test_helper'
19
+
20
+ module Elasticsearch
21
+ module Test
22
+ class XPackWatcherStopTest < Minitest::Test
23
+
24
+ context "XPack Watcher: Stop" do
25
+ subject { FakeClient.new }
26
+
27
+ should "perform correct request" do
28
+ subject.expects(:perform_request).with do |method, url, params, body|
29
+ assert_equal 'POST', method
30
+ assert_equal '_watcher/_stop', url
31
+ assert_equal Hash.new, params
32
+ assert_nil body
33
+ true
34
+ end.returns(FakeResponse.new)
35
+
36
+ subject.watcher.stop
37
+ end
38
+
39
+ end
40
+
41
+ end
42
+ end
43
+ end
data/utils/README.md CHANGED
@@ -13,20 +13,12 @@ $ rake elasticsearch:download_artifacts
13
13
 
14
14
  Once the JSON files have been downloaded, you need to run (from this folder):
15
15
  ```bash
16
- $ thor api:code:generate
16
+ $ thor code:generate
17
17
  ```
18
18
 
19
- - The oss Ruby code will be generated in `elasticsearch-api/lib/elasticsearch/api/actions`.
20
- - The xpack Ruby code will be generated in `elasticsearch-xpack/lib/elasticsearch/xpack/api/actions`.
19
+ - The Ruby code will be generated in `elasticsearch-api/lib/elasticsearch/api/actions`.
21
20
  - The generator runs Rubocop to autolint and clean up the generated files.
22
21
 
23
- Alternatively, you can pass in `oss` or `xpack` as parameters to generate only one of the 2 sets of endpoints:
24
-
25
- ```bash
26
- $ thor api:code:generate --api=xpack
27
- $ thor api:code:generate --api=oss
28
- ```
29
-
30
22
  ### Development
31
23
 
32
24
  The main entry point is `generate_source.rb`, which contains a class that implements a Thor task: `generate`:
@@ -1,4 +1,2 @@
1
1
  Layout/EndAlignment:
2
2
  AutoCorrect: true
3
- Metrics/LineLength:
4
- Max: 160
@@ -40,7 +40,7 @@ module Elasticsearch
40
40
  # here.
41
41
  #
42
42
  class SourceGenerator < Thor
43
- namespace 'api:code'
43
+ namespace 'code'
44
44
  include Thor::Actions
45
45
  include EndpointSpecifics
46
46
 
@@ -49,26 +49,20 @@ module Elasticsearch
49
49
  desc 'generate', 'Generate source code and tests from the REST API JSON specification'
50
50
  method_option :verbose, type: :boolean, default: false, desc: 'Output more information'
51
51
  method_option :tests, type: :boolean, default: false, desc: 'Generate test files'
52
- method_option :api, type: :array, default: %w[oss xpack], desc: 'APIs to generate (oss, x-pack)'
53
52
 
54
53
  def generate
55
54
  self.class.source_root File.expand_path(__dir__)
56
- @xpack = options[:api].include? 'xpack'
57
- @oss = options[:api].include? 'oss'
58
-
59
- __generate_source(:xpack) if @xpack
60
- __generate_source(:oss) if @oss
55
+ generate_source
61
56
  # -- Tree output
62
57
  print_tree if options[:verbose]
63
58
  end
64
59
 
65
60
  private
66
61
 
67
- def __generate_source(api)
68
- @current_api = api
69
- @output = FilesHelper.output_dir(api)
62
+ def generate_source
63
+ @output = FilesHelper.output_dir
70
64
 
71
- FilesHelper.files(api).each do |filepath|
65
+ FilesHelper.files.each do |filepath|
72
66
  @path = Pathname(filepath)
73
67
  @json = MultiJson.load(File.read(@path))
74
68
  @spec = @json.values.first
@@ -91,7 +85,6 @@ module Elasticsearch
91
85
  @http_path = __http_path
92
86
  @required_parts = __required_parts
93
87
 
94
- @module_namespace.shift if @module_namespace.first == 'xpack'
95
88
  @path_to_file = @output.join(@module_namespace.join('/')).join("#{@method_name}.rb")
96
89
  dir = @output.join(@module_namespace.join('/'))
97
90
  empty_directory(dir, verbose: false)
@@ -106,23 +99,18 @@ module Elasticsearch
106
99
  puts
107
100
  end
108
101
 
109
- run_rubocop(api)
102
+ run_rubocop
110
103
  end
111
104
 
112
105
  def __full_namespace
113
106
  names = @endpoint_name.split('.')
114
- if @current_api == :xpack
115
- names = (names.first == 'xpack' ? names : ['xpack', names].flatten)
116
- # Return an array to expand 'ccr', 'ilm', 'ml' and 'slm'
117
- names.map do |name|
118
- name
119
- .gsub(/^ml$/, 'machine_learning')
120
- .gsub(/^ilm$/, 'index_lifecycle_management')
121
- .gsub(/^ccr/, 'cross_cluster_replication')
122
- .gsub(/^slm/, 'snapshot_lifecycle_management')
123
- end
124
- else
125
- names
107
+ # Return an array to expand 'ccr', 'ilm', 'ml' and 'slm'
108
+ names.map do |name|
109
+ name
110
+ .gsub(/^ml$/, 'machine_learning')
111
+ .gsub(/^ilm$/, 'index_lifecycle_management')
112
+ .gsub(/^ccr/, 'cross_cluster_replication')
113
+ .gsub(/^slm/, 'snapshot_lifecycle_management')
126
114
  end
127
115
  end
128
116
 
@@ -148,7 +136,6 @@ module Elasticsearch
148
136
 
149
137
  def __http_method
150
138
  return '_id ? Elasticsearch::API::HTTP_PUT : Elasticsearch::API::HTTP_POST' if @endpoint_name == 'index'
151
- return post_and_get if @endpoint_name == 'count'
152
139
 
153
140
  default_method = @spec['url']['paths'].map { |a| a['methods'] }.flatten.first
154
141
  if @spec['body'] && default_method == 'GET'
@@ -156,26 +143,22 @@ module Elasticsearch
156
143
  if @spec['body']['required']
157
144
  'Elasticsearch::API::HTTP_POST'
158
145
  else
159
- post_and_get
146
+ # the METHOD is defined after doing arguments.delete(:body), so we need to check for `body`
147
+ <<~SRC
148
+ if body
149
+ Elasticsearch::API::HTTP_POST
150
+ else
151
+ Elasticsearch::API::HTTP_GET
152
+ end
153
+ SRC
160
154
  end
161
155
  else
162
156
  "Elasticsearch::API::HTTP_#{default_method}"
163
157
  end
164
158
  end
165
159
 
166
- def post_and_get
167
- <<~SRC
168
- if arguments[:body]
169
- Elasticsearch::API::HTTP_POST
170
- else
171
- Elasticsearch::API::HTTP_GET
172
- end
173
- SRC
174
- end
175
-
176
160
  def __http_path
177
161
  return "\"#{__parse_path(@paths.first)}\"" if @paths.size == 1
178
- return termvectors_path if @method_name == 'termvectors'
179
162
 
180
163
  result = ''
181
164
  anchor_string = []
@@ -199,9 +182,9 @@ module Elasticsearch
199
182
 
200
183
  def __parse_path(path)
201
184
  path.gsub(/^\//, '')
202
- .gsub(/\/$/, '')
203
- .gsub('{', "\#{#{__utils}.__listify(_")
204
- .gsub('}', ')}')
185
+ .gsub(/\/$/, '')
186
+ .gsub('{', "\#{Utils.__listify(_")
187
+ .gsub('}', ')}')
205
188
  end
206
189
 
207
190
  def __path_variables
@@ -295,12 +278,8 @@ module Elasticsearch
295
278
  say_status('tree', lines.first + "\n" + lines[1, lines.size].map { |l| ' ' * 14 + l }.join("\n"))
296
279
  end
297
280
 
298
- def __utils
299
- @current_api == :xpack ? 'Elasticsearch::API::Utils' : 'Utils'
300
- end
301
-
302
- def run_rubocop(api)
303
- system("rubocop -c ./thor/.rubocop.yml --format autogenconf -x #{FilesHelper::output_dir(api)}")
281
+ def run_rubocop
282
+ system("rubocop -c ./thor/.rubocop.yml --format autogenconf -x #{FilesHelper::output_dir}")
304
283
  end
305
284
  end
306
285
  end
@@ -27,7 +27,6 @@ module Elasticsearch
27
27
  exists
28
28
  indices.exists
29
29
  indices.exists_alias
30
- indices.exists_index_template
31
30
  indices.exists_template
32
31
  indices.exists_type
33
32
  ].freeze
@@ -38,9 +37,8 @@ module Elasticsearch
38
37
  delete
39
38
  get
40
39
  indices.flush_synced
41
- indices.delete
42
- indices.delete_index_template
43
40
  indices.delete_template
41
+ indices.delete
44
42
  security.get_role
45
43
  security.get_user
46
44
  snapshot.status
@@ -80,21 +78,7 @@ module Elasticsearch
80
78
  def module_name_helper(name)
81
79
  return name.upcase if %w[sql ssl].include? name
82
80
 
83
- name.split('_').map(&:capitalize).join
84
- end
85
-
86
- def termvectors_path
87
- <<~SRC
88
- if _index && _type && _id
89
- "\#{Utils.__listify(_index)}/\#{Utils.__listify(_type)}/\#{Utils.__listify(_id)}/\#{endpoint}"
90
- elsif _index && _type
91
- "\#{Utils.__listify(_index)}/\#{Utils.__listify(_type)}/\#{endpoint}"
92
- elsif _index && _id
93
- "\#{Utils.__listify(_index)}/\#{endpoint}/\#{Utils.__listify(_id)}"
94
- else
95
- "\#{Utils.__listify(_index)}/\#{endpoint}"
96
- end
97
- SRC
81
+ name.split('_').map(&:capitalize).map{ |n| n == 'Xpack' ? 'XPack' : n }.join
98
82
  end
99
83
 
100
84
  def ping_perform_request
@@ -111,18 +95,6 @@ module Elasticsearch
111
95
  SRC
112
96
  end
113
97
 
114
- def indices_stats_params_registry
115
- <<~SRC
116
- ParamsRegistry.register(:stats_params, [
117
- #{@spec['params'].keys.map { |k| ":#{k}" }.join(",\n")}
118
- ].freeze)
119
-
120
- ParamsRegistry.register(:stats_parts, [
121
- #{@parts['metric']['options'].push('metric').map { |k| ":#{k}" }.join(",\n")}
122
- ].freeze)
123
- SRC
124
- end
125
-
126
98
  def msearch_body_helper
127
99
  <<~SRC
128
100
  case
@@ -20,58 +20,45 @@ require_relative '../../../lib/elasticsearch/api/version.rb'
20
20
 
21
21
  module Elasticsearch
22
22
  module API
23
+ # Helper with file related methods for code generation
23
24
  module FilesHelper
24
25
  PROJECT_PATH = File.join(File.dirname(__FILE__), '..')
25
26
  SRC_PATH = File.join(PROJECT_PATH, '..', '..', '..', 'tmp/rest-api-spec/api/')
26
- OSS_OUTPUT_DIR = '../../elasticsearch-api/lib/elasticsearch/api/actions'.freeze
27
- XPACK_OUTPUT_DIR = '../../elasticsearch-xpack/lib/elasticsearch/xpack/api/actions'.freeze
28
-
29
- TESTS_DIRECTORIES = {
30
- oss: "#{PROJECT_PATH}/../../../tmp/rest-api-spec/test/free",
31
- xpack: "#{PROJECT_PATH}/../../../tmp/rest-api-spec/test/platinum"
32
- }.freeze
27
+ OUTPUT_DIR = '../../elasticsearch-api/lib/elasticsearch/api/actions'.freeze
28
+ TESTS_DIRECTORY = "#{PROJECT_PATH}/../../../tmp/rest-api-spec/test/free".freeze
33
29
 
34
30
  # Only get JSON files and remove hidden files
35
- def self.files(api)
36
- json_files = if api == :xpack
37
- xpack_files
38
- else
39
- Dir.entries(SRC_PATH) - xpack_files
40
- end
31
+ def self.files
32
+ json_files = Dir.entries(SRC_PATH)
33
+
41
34
  json_files.reject do |file|
42
35
  File.extname(file) != '.json' ||
43
36
  File.basename(file) == '_common.json'
44
37
  end.map { |file| "#{SRC_PATH}#{file}" }
45
38
  end
46
39
 
47
- XPACK_ENDPOINTS = [
48
- 'autoscaling', 'cross_cluster_replication', 'ccr', 'data_frame_transform_deprecated',
49
- 'enrich', 'eql', 'fleet', 'ilm', 'logstash', 'migration', 'watcher', 'slm'
50
- ]
51
- XPACK_ENDPOINTS_REGEXP = /data_stream|ml_|reload_search_analyzers|transform|freeze|unfreeze/
52
-
53
- def self.xpack_files
54
- xpack_tests = Dir.entries(TESTS_DIRECTORIES[:xpack])
55
- Dir.entries(SRC_PATH).map do |entry|
56
- filename = entry.split('.').first
57
- next if filename == 'snapshot'
58
-
59
- if xpack_tests.include?(filename) ||
60
- XPACK_ENDPOINTS.include?(filename) ||
61
- entry.match?(XPACK_ENDPOINTS_REGEXP)
62
- entry
63
- end
64
- end.compact
65
- end
66
-
67
40
  # Path to directory to copy generated files
68
- def self.output_dir(api)
69
- api == :xpack ? Pathname(XPACK_OUTPUT_DIR) : Pathname(OSS_OUTPUT_DIR)
41
+ def self.output_dir
42
+ Pathname(OUTPUT_DIR)
70
43
  end
71
44
 
72
- def self.gem_version
45
+ def self.documentation_url(documentation_url)
46
+ branch = `git rev-parse --abbrev-ref HEAD`
47
+ return documentation_url if branch == "main\n"
48
+
73
49
  regex = /([0-9]{1,2}\.[0-9x]{1,2})/
74
- Elasticsearch::API::VERSION.match(regex)[0]
50
+ version = Elasticsearch::API::VERSION.match(regex)[0]
51
+ # TODO - How do we fix this so it doesn't depend on which branch we're running from
52
+ if version == '8.0'
53
+ documentation_url
54
+ else
55
+ documentation_url.gsub(/\/(current|master|main)\//, "/#{version}/")
56
+ end
57
+ end
58
+
59
+ def cleanup_output_dir!
60
+ FileUtils.remove_dir(OUTPUT_DIR)
61
+ Dir.mkdir(OUTPUT_DIR)
75
62
  end
76
63
  end
77
64
  end
@@ -16,16 +16,19 @@
16
16
  # specific language governing permissions and limitations
17
17
  # under the License.
18
18
  %>
19
-
20
- <%- unless @params.empty? -%>
21
- <%= ' '*(@namespace_depth+3) %># Register this action with its valid params when the module is loaded.
22
- <%= ' '*(@namespace_depth+3) %>#
23
- <%= ' '*(@namespace_depth+3) %># @since 6.2.0
24
- <%- if @endpoint_name == 'indices.stats' -%>
25
- <%= indices_stats_params_registry %>
26
- <%- else -%>
27
- <%= ' '*(@namespace_depth+3) %>ParamsRegistry.register(:<%= @method_name %>, [
28
- <%= ' '*(@namespace_depth+4) %><%= @params.keys.map { |k| ":#{k}" }.join(",\n#{' '*(@namespace_depth+4)}") %>
29
- <%= ' '*(@namespace_depth+3) %>].freeze)
30
- <%- end -%>
19
+ <%-
20
+ case @endpoint_name
21
+ when 'mtermvectors'
22
+ -%>
23
+ body = if(ids = arguments.delete(:ids))
24
+ { :ids => ids }
25
+ else
26
+ arguments.delete(:body)
27
+ end
28
+ <%- when 'cluster.reroute', 'cluster.put_settings' %>
29
+ body = arguments.delete(:body) || {}
30
+ <%- when 'ml.find_file_structure' %>
31
+ body = Utils.__bulkify(arguments.delete(:body))
32
+ <%- else -%>
33
+ <%= ' '*(@namespace_depth+3) %>body = <%= @spec['body'].nil? ? 'nil' : 'arguments.delete(:body)' %>
31
34
  <%- end -%>
@@ -16,7 +16,6 @@
16
16
  # specific language governing permissions and limitations
17
17
  # under the License.
18
18
  %>
19
-
20
19
  <%- if @spec['documentation']['description'] -%>
21
20
  <%= ' '*(@namespace_depth+3) %># <%= @spec['documentation']['description'].gsub("\n", "\n#{' '*(@namespace_depth+3)}# ") -%>
22
21
  <%- else %>
@@ -54,5 +53,5 @@
54
53
  <% end -%>
55
54
  <%= ' '*(@namespace_depth+3) -%>#
56
55
  <%# Documentation link -%>
57
- <%= ' '*(@namespace_depth+3) %># @see <%= @spec['documentation']['url'] ? @spec['documentation']['url'].gsub(/\/(current|master)\//, "/#{Elasticsearch::API::FilesHelper.gem_version}/") : "[TODO]" %>
56
+ <%= ' '*(@namespace_depth+3) %># @see <%= @spec['documentation']['url'] ? Elasticsearch::API::FilesHelper.documentation_url(@spec['documentation']['url']) : "[TODO]" %>
58
57
  <%= ' '*(@namespace_depth+3) %>#
@@ -16,38 +16,26 @@
16
16
  # specific language governing permissions and limitations
17
17
  # under the License.
18
18
  %>
19
- <%- if @endpoint_name == 'indices.stats' %>
20
- method = HTTP_GET
21
- parts = Utils.__extract_parts arguments, ParamsRegistry.get(:stats_parts)
22
- path = Utils.__pathify Utils.__listify(arguments[:index]), '_stats', Utils.__listify(parts)
23
- params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(:stats_params)
24
- params[:fields] = Utils.__listify(params[:fields], :escape => false) if params[:fields]
25
- params[:groups] = Utils.__listify(params[:groups], :escape => false) if params[:groups]
26
- <%- else %>
27
- <%= ' '*(@namespace_depth+4) %>arguments = arguments.clone
28
- <%- if @method_name == 'mtermvectors' -%>
29
- ids = arguments.delete(:ids)
30
- <%- end -%>
31
- <%- if @method_name == 'search' -%>
32
- arguments[:index] = UNDERSCORE_ALL if ! arguments[:index] && arguments[:type]
33
- <%- end -%>
34
- <%- @parts.each do |name, _| %>
35
- <%- unless @method_name == 'get_field_mapping' && name == 'fields' %>
36
- <%= ' '*(@namespace_depth+3) + "_#{name}" %> = arguments.delete(:<%=name %>)
37
- <%- end -%>
19
+ <%= ' '*(@namespace_depth+4) %>arguments = arguments.clone
20
+ <%- if @method_name == 'search' -%>
21
+ arguments[:index] = UNDERSCORE_ALL if ! arguments[:index] && arguments[:type]
22
+ <%- end -%>
23
+ <%- @parts.each do |name, _| %>
24
+ <%- unless @method_name == 'get_field_mapping' && name == 'fields' %>
25
+ <%= ' '*(@namespace_depth+3) + "_#{name}" %> = arguments.delete(:<%=name %>)
38
26
  <%- end -%>
27
+ <%- end -%>
39
28
 
40
- <%= ' '*(@namespace_depth+4) %>method = <%= @http_method %>
41
- <%- if @method_name == 'termvectors' %>
42
- endpoint = arguments.delete(:endpoint) || '_termvectors'
43
- <%- end -%>
44
- <%= ' '*(@namespace_depth+4) %>path = <%= @http_path %>
45
- <%- unless @params.empty? -%>
46
- <%= ' '*(@namespace_depth+4) %>params = <%= __utils %>.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
47
- <%- else -%>
48
- <%= ' '*(@namespace_depth+4) %>params = {}
49
- <%- end -%>
50
- <%- @specific_params.each do |param| -%>
51
- <%= param %>
52
- <%- end -%>
29
+ <%= ' '*(@namespace_depth+4) %>method = <%= @http_method %>
30
+ <%- if @method_name == 'termvectors' %>
31
+ endpoint = arguments.delete(:endpoint) || '_termvectors'
32
+ <%- end -%>
33
+ <%= ' '*(@namespace_depth+4) %>path = <%= @http_path %>
34
+ <%- unless @params.empty? -%>
35
+ <%= ' '*(@namespace_depth+4) %>params = Utils.process_params(arguments)
36
+ <%- else -%>
37
+ <%= ' '*(@namespace_depth+4) %>params = {}
38
+ <%- end -%>
39
+ <%- @specific_params.each do |param| -%>
40
+ <%= param %>
53
41
  <%- end -%>