supported-apis.asciidoc 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. [[java-rest-high-supported-apis]]
  2. == Document APIs
  3. The Java High Level REST Client supports the following Document APIs:
  4. [[single-doc]]
  5. Single document APIs::
  6. * <<java-rest-high-document-index>>
  7. * <<java-rest-high-document-get>>
  8. * <<java-rest-high-document-delete>>
  9. * <<java-rest-high-document-update>>
  10. [[multi-doc]]
  11. Multi-document APIs::
  12. * <<java-rest-high-document-bulk>>
  13. * <<java-rest-high-document-multi-get>>
  14. include::document/index.asciidoc[]
  15. include::document/get.asciidoc[]
  16. include::document/exists.asciidoc[]
  17. include::document/delete.asciidoc[]
  18. include::document/update.asciidoc[]
  19. include::document/bulk.asciidoc[]
  20. include::document/multi-get.asciidoc[]
  21. == Search APIs
  22. The Java High Level REST Client supports the following Search APIs:
  23. * <<java-rest-high-search>>
  24. * <<java-rest-high-search-scroll>>
  25. * <<java-rest-high-clear-scroll>>
  26. * <<java-rest-high-search-template>>
  27. * <<java-rest-high-multi-search-template>>
  28. * <<java-rest-high-multi-search>>
  29. * <<java-rest-high-field-caps>>
  30. * <<java-rest-high-rank-eval>>
  31. * <<java-rest-high-explain>>
  32. include::search/search.asciidoc[]
  33. include::search/scroll.asciidoc[]
  34. include::search/multi-search.asciidoc[]
  35. include::search/search-template.asciidoc[]
  36. include::search/multi-search-template.asciidoc[]
  37. include::search/field-caps.asciidoc[]
  38. include::search/rank-eval.asciidoc[]
  39. include::search/explain.asciidoc[]
  40. == Miscellaneous APIs
  41. The Java High Level REST Client supports the following Miscellaneous APIs:
  42. * <<java-rest-high-main>>
  43. * <<java-rest-high-ping>>
  44. * <<java-rest-high-x-pack-info>>
  45. * <<java-rest-high-x-pack-usage>>
  46. include::miscellaneous/main.asciidoc[]
  47. include::miscellaneous/ping.asciidoc[]
  48. include::miscellaneous/x-pack-info.asciidoc[]
  49. include::miscellaneous/x-pack-usage.asciidoc[]
  50. == Indices APIs
  51. The Java High Level REST Client supports the following Indices APIs:
  52. Index Management::
  53. * <<java-rest-high-create-index>>
  54. * <<java-rest-high-delete-index>>
  55. * <<java-rest-high-indices-exists>>
  56. * <<java-rest-high-open-index>>
  57. * <<java-rest-high-close-index>>
  58. * <<java-rest-high-shrink-index>>
  59. * <<java-rest-high-split-index>>
  60. * <<java-rest-high-refresh>>
  61. * <<java-rest-high-flush>>
  62. * <<java-rest-high-flush-synced>>
  63. * <<java-rest-high-clear-cache>>
  64. * <<java-rest-high-force-merge>>
  65. * <<java-rest-high-rollover-index>>
  66. * <<java-rest-high-indices-put-settings>>
  67. * <<java-rest-high-get-settings>>
  68. * <<java-rest-high-indices-validate-query>>
  69. * <<java-rest-high-get-index>>
  70. Mapping Management::
  71. * <<java-rest-high-put-mapping>>
  72. * <<java-rest-high-get-mappings>>
  73. * <<java-rest-high-get-field-mappings>>
  74. Alias Management::
  75. * <<java-rest-high-update-aliases>>
  76. * <<java-rest-high-exists-alias>>
  77. * <<java-rest-high-get-alias>>
  78. include::indices/analyze.asciidoc[]
  79. include::indices/create_index.asciidoc[]
  80. include::indices/delete_index.asciidoc[]
  81. include::indices/indices_exists.asciidoc[]
  82. include::indices/open_index.asciidoc[]
  83. include::indices/close_index.asciidoc[]
  84. include::indices/shrink_index.asciidoc[]
  85. include::indices/split_index.asciidoc[]
  86. include::indices/refresh.asciidoc[]
  87. include::indices/flush.asciidoc[]
  88. include::indices/flush_synced.asciidoc[]
  89. include::indices/clear_cache.asciidoc[]
  90. include::indices/force_merge.asciidoc[]
  91. include::indices/rollover.asciidoc[]
  92. include::indices/put_mapping.asciidoc[]
  93. include::indices/get_mappings.asciidoc[]
  94. include::indices/get_field_mappings.asciidoc[]
  95. include::indices/update_aliases.asciidoc[]
  96. include::indices/exists_alias.asciidoc[]
  97. include::indices/get_alias.asciidoc[]
  98. include::indices/put_settings.asciidoc[]
  99. include::indices/get_settings.asciidoc[]
  100. include::indices/put_template.asciidoc[]
  101. include::indices/validate_query.asciidoc[]
  102. include::indices/get_templates.asciidoc[]
  103. include::indices/get_index.asciidoc[]
  104. == Cluster APIs
  105. The Java High Level REST Client supports the following Cluster APIs:
  106. * <<java-rest-high-cluster-put-settings>>
  107. * <<java-rest-high-cluster-get-settings>>
  108. * <<java-rest-high-cluster-health>>
  109. include::cluster/put_settings.asciidoc[]
  110. include::cluster/get_settings.asciidoc[]
  111. include::cluster/health.asciidoc[]
  112. == Ingest APIs
  113. The Java High Level REST Client supports the following Ingest APIs:
  114. * <<java-rest-high-ingest-put-pipeline>>
  115. * <<java-rest-high-ingest-get-pipeline>>
  116. * <<java-rest-high-ingest-delete-pipeline>>
  117. * <<java-rest-high-ingest-simulate-pipeline>>
  118. include::ingest/put_pipeline.asciidoc[]
  119. include::ingest/get_pipeline.asciidoc[]
  120. include::ingest/delete_pipeline.asciidoc[]
  121. include::ingest/simulate_pipeline.asciidoc[]
  122. == Snapshot APIs
  123. The Java High Level REST Client supports the following Snapshot APIs:
  124. * <<java-rest-high-snapshot-get-repository>>
  125. * <<java-rest-high-snapshot-create-repository>>
  126. * <<java-rest-high-snapshot-delete-repository>>
  127. * <<java-rest-high-snapshot-verify-repository>>
  128. * <<java-rest-high-snapshot-create-snapshot>>
  129. * <<java-rest-high-snapshot-get-snapshots>>
  130. * <<java-rest-high-snapshot-snapshots-status>>
  131. * <<java-rest-high-snapshot-delete-snapshot>>
  132. include::snapshot/get_repository.asciidoc[]
  133. include::snapshot/create_repository.asciidoc[]
  134. include::snapshot/delete_repository.asciidoc[]
  135. include::snapshot/verify_repository.asciidoc[]
  136. include::snapshot/create_snapshot.asciidoc[]
  137. include::snapshot/get_snapshots.asciidoc[]
  138. include::snapshot/snapshots_status.asciidoc[]
  139. include::snapshot/delete_snapshot.asciidoc[]
  140. == Tasks APIs
  141. The Java High Level REST Client supports the following Tasks APIs:
  142. * <<java-rest-high-tasks-list>>
  143. * <<java-rest-high-cluster-cancel-tasks>>
  144. include::tasks/list_tasks.asciidoc[]
  145. include::tasks/cancel_tasks.asciidoc[]
  146. == Script APIs
  147. The Java High Level REST Client supports the following Scripts APIs:
  148. * <<java-rest-high-get-stored-script>>
  149. * <<java-rest-high-delete-stored-script>>
  150. include::script/get_script.asciidoc[]
  151. include::script/delete_script.asciidoc[]
  152. == Licensing APIs
  153. The Java High Level REST Client supports the following Licensing APIs:
  154. * <<java-rest-high-put-license>>
  155. * <<java-rest-high-get-license>>
  156. * <<java-rest-high-delete-license>>
  157. include::licensing/put-license.asciidoc[]
  158. include::licensing/get-license.asciidoc[]
  159. include::licensing/delete-license.asciidoc[]
  160. == Machine Learning APIs
  161. The Java High Level REST Client supports the following Machine Learning APIs:
  162. * <<java-rest-high-x-pack-ml-put-job>>
  163. * <<java-rest-high-x-pack-ml-delete-job>>
  164. * <<java-rest-high-x-pack-ml-open-job>>
  165. include::ml/put-job.asciidoc[]
  166. include::ml/delete-job.asciidoc[]
  167. include::ml/open-job.asciidoc[]
  168. == Migration APIs
  169. The Java High Level REST Client supports the following Migration APIs:
  170. * <<java-rest-high-migration-get-assistance>>
  171. include::migration/get-assistance.asciidoc[]
  172. == Watcher APIs
  173. The Java High Level REST Client supports the following Watcher APIs:
  174. * <<java-rest-high-x-pack-watcher-put-watch>>
  175. * <<java-rest-high-x-pack-watcher-delete-watch>>
  176. include::watcher/put-watch.asciidoc[]
  177. include::watcher/delete-watch.asciidoc[]