elasticsearch 8.11.0__tar.gz → 8.12.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/CONTRIBUTING.md +1 -1
  2. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/PKG-INFO +7 -4
  3. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/README.rst +5 -1
  4. elasticsearch-8.12.0/docs/sphinx/api/autoscaling.rst +9 -0
  5. elasticsearch-8.12.0/docs/sphinx/api/cat.rst +9 -0
  6. elasticsearch-8.12.0/docs/sphinx/api/ccr.rst +9 -0
  7. elasticsearch-8.12.0/docs/sphinx/api/cluster.rst +9 -0
  8. elasticsearch-8.12.0/docs/sphinx/api/dangling-indices.rst +9 -0
  9. elasticsearch-8.12.0/docs/sphinx/api/elasticsearch.rst +11 -0
  10. elasticsearch-8.12.0/docs/sphinx/api/enrich-policies.rst +9 -0
  11. elasticsearch-8.12.0/docs/sphinx/api/eql.rst +9 -0
  12. elasticsearch-8.12.0/docs/sphinx/api/esql.rst +9 -0
  13. elasticsearch-8.12.0/docs/sphinx/api/fleet.rst +9 -0
  14. elasticsearch-8.12.0/docs/sphinx/api/graph-explore.rst +9 -0
  15. elasticsearch-8.12.0/docs/sphinx/api/index-lifecycle-management.rst +9 -0
  16. elasticsearch-8.12.0/docs/sphinx/api/indices.rst +9 -0
  17. elasticsearch-8.12.0/docs/sphinx/api/inference.rst +9 -0
  18. elasticsearch-8.12.0/docs/sphinx/api/ingest-pipelines.rst +9 -0
  19. elasticsearch-8.12.0/docs/sphinx/api/license.rst +9 -0
  20. elasticsearch-8.12.0/docs/sphinx/api/logstash.rst +9 -0
  21. elasticsearch-8.12.0/docs/sphinx/api/migration.rst +9 -0
  22. elasticsearch-8.12.0/docs/sphinx/api/ml.rst +9 -0
  23. elasticsearch-8.12.0/docs/sphinx/api/monitoring.rst +9 -0
  24. elasticsearch-8.12.0/docs/sphinx/api/nodes.rst +9 -0
  25. elasticsearch-8.12.0/docs/sphinx/api/query-rules.rst +9 -0
  26. elasticsearch-8.12.0/docs/sphinx/api/rollup-indices.rst +9 -0
  27. elasticsearch-8.12.0/docs/sphinx/api/search-application.rst +9 -0
  28. elasticsearch-8.12.0/docs/sphinx/api/searchable-snapshots.rst +9 -0
  29. elasticsearch-8.12.0/docs/sphinx/api/security.rst +9 -0
  30. elasticsearch-8.12.0/docs/sphinx/api/shutdown.rst +9 -0
  31. elasticsearch-8.12.0/docs/sphinx/api/snapshot-lifecycle-management.rst +9 -0
  32. elasticsearch-8.12.0/docs/sphinx/api/snapshots.rst +9 -0
  33. elasticsearch-8.12.0/docs/sphinx/api/snapshottable-features.rst +9 -0
  34. elasticsearch-8.12.0/docs/sphinx/api/sql.rst +9 -0
  35. elasticsearch-8.12.0/docs/sphinx/api/synonyms.rst +9 -0
  36. elasticsearch-8.12.0/docs/sphinx/api/tasks.rst +9 -0
  37. elasticsearch-8.12.0/docs/sphinx/api/text-structure.rst +9 -0
  38. elasticsearch-8.12.0/docs/sphinx/api/tls-ssl.rst +9 -0
  39. elasticsearch-8.12.0/docs/sphinx/api/transforms.rst +9 -0
  40. elasticsearch-8.12.0/docs/sphinx/api/watcher.rst +9 -0
  41. elasticsearch-8.12.0/docs/sphinx/api/x-pack.rst +9 -0
  42. elasticsearch-8.12.0/docs/sphinx/api.rst +56 -0
  43. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/docs/sphinx/async.rst +12 -14
  44. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/docs/sphinx/exceptions.rst +1 -0
  45. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/docs/sphinx/index.rst +19 -15
  46. elasticsearch-8.12.0/docs/sphinx/interactive.rst +107 -0
  47. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/docs/sphinx/quickstart.rst +4 -2
  48. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/__init__.py +493 -347
  49. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/async_search.py +108 -72
  50. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/autoscaling.py +13 -8
  51. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/cat.py +26 -26
  52. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/ccr.py +178 -117
  53. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/cluster.py +56 -48
  54. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/dangling_indices.py +3 -3
  55. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/enrich.py +15 -13
  56. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/eql.py +53 -36
  57. elasticsearch-8.12.0/elasticsearch/_async/client/esql.py +99 -0
  58. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/features.py +2 -2
  59. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/fleet.py +111 -71
  60. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/graph.py +13 -11
  61. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/ilm.py +33 -27
  62. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/indices.py +326 -227
  63. elasticsearch-8.12.0/elasticsearch/_async/client/inference.py +212 -0
  64. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/ingest.py +28 -24
  65. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/license.py +15 -13
  66. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/logstash.py +13 -10
  67. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/migration.py +3 -3
  68. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/ml.py +762 -538
  69. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/monitoring.py +10 -5
  70. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/nodes.py +13 -11
  71. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/query_ruleset.py +12 -10
  72. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/rollup.py +59 -46
  73. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/search_application.py +23 -16
  74. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/searchable_snapshots.py +23 -16
  75. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/security.py +393 -287
  76. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/shutdown.py +18 -14
  77. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/slm.py +23 -21
  78. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/snapshot.py +91 -65
  79. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/sql.py +81 -58
  80. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/ssl.py +1 -1
  81. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/synonyms.py +23 -19
  82. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/tasks.py +3 -3
  83. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/text_structure.py +10 -5
  84. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/transform.py +111 -75
  85. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/watcher.py +77 -55
  86. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/xpack.py +2 -2
  87. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/helpers.py +1 -1
  88. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/__init__.py +493 -347
  89. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/async_search.py +108 -72
  90. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/autoscaling.py +13 -8
  91. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/cat.py +26 -26
  92. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/ccr.py +178 -117
  93. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/cluster.py +56 -48
  94. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/dangling_indices.py +3 -3
  95. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/enrich.py +15 -13
  96. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/eql.py +53 -36
  97. elasticsearch-8.12.0/elasticsearch/_sync/client/esql.py +99 -0
  98. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/features.py +2 -2
  99. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/fleet.py +111 -71
  100. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/graph.py +13 -11
  101. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/ilm.py +33 -27
  102. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/indices.py +326 -227
  103. elasticsearch-8.12.0/elasticsearch/_sync/client/inference.py +212 -0
  104. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/ingest.py +28 -24
  105. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/license.py +15 -13
  106. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/logstash.py +13 -10
  107. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/migration.py +3 -3
  108. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/ml.py +762 -538
  109. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/monitoring.py +10 -5
  110. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/nodes.py +13 -11
  111. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/query_ruleset.py +12 -10
  112. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/rollup.py +59 -46
  113. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/search_application.py +23 -16
  114. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/searchable_snapshots.py +23 -16
  115. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/security.py +393 -287
  116. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/shutdown.py +18 -14
  117. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/slm.py +23 -21
  118. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/snapshot.py +91 -65
  119. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/sql.py +81 -58
  120. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/ssl.py +1 -1
  121. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/synonyms.py +23 -19
  122. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/tasks.py +3 -3
  123. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/text_structure.py +10 -5
  124. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/transform.py +111 -75
  125. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/utils.py +34 -10
  126. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/watcher.py +77 -55
  127. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/xpack.py +2 -2
  128. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_version.py +1 -1
  129. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/client.py +2 -0
  130. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/helpers/actions.py +1 -1
  131. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch.egg-info/PKG-INFO +7 -4
  132. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch.egg-info/SOURCES.txt +43 -0
  133. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/setup.py +1 -2
  134. elasticsearch-8.11.0/docs/sphinx/api.rst +0 -241
  135. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/CHANGELOG.md +0 -0
  136. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/LICENSE +0 -0
  137. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/MANIFEST.in +0 -0
  138. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/NOTICE +0 -0
  139. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/docs/sphinx/Makefile +0 -0
  140. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/docs/sphinx/conf.py +0 -0
  141. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/docs/sphinx/helpers.rst +0 -0
  142. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/__init__.py +0 -0
  143. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/__init__.py +0 -0
  144. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/_base.py +0 -0
  145. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_async/client/utils.py +0 -0
  146. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/__init__.py +0 -0
  147. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_sync/client/_base.py +0 -0
  148. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/_utils.py +0 -0
  149. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/compat.py +0 -0
  150. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/exceptions.py +0 -0
  151. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/helpers/__init__.py +0 -0
  152. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/helpers/errors.py +0 -0
  153. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/py.typed +0 -0
  154. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/serializer.py +0 -0
  155. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch/transport.py +0 -0
  156. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch.egg-info/dependency_links.txt +0 -0
  157. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch.egg-info/not-zip-safe +0 -0
  158. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch.egg-info/requires.txt +0 -0
  159. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/elasticsearch.egg-info/top_level.txt +0 -0
  160. {elasticsearch-8.11.0 → elasticsearch-8.12.0}/setup.cfg +0 -0
@@ -13,7 +13,7 @@ before writing too much code.
13
13
  ## Running Elasticsearch locally
14
14
 
15
15
  We've provided a script to start an Elasticsearch cluster of a certain version
16
- found at `.ci/run-elasticsearch.sh`.
16
+ found at `.buildkite/run-elasticsearch.sh`.
17
17
 
18
18
  There are several environment variables that control integration tests:
19
19
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: elasticsearch
3
- Version: 8.11.0
3
+ Version: 8.12.0
4
4
  Summary: Python client for Elasticsearch
5
5
  Home-page: https://github.com/elastic/elasticsearch-py
6
6
  Author: Elastic Client Library Maintainers
@@ -15,7 +15,6 @@ Classifier: Intended Audience :: Developers
15
15
  Classifier: Operating System :: OS Independent
16
16
  Classifier: Programming Language :: Python
17
17
  Classifier: Programming Language :: Python :: 3
18
- Classifier: Programming Language :: Python :: 3.6
19
18
  Classifier: Programming Language :: Python :: 3.7
20
19
  Classifier: Programming Language :: Python :: 3.8
21
20
  Classifier: Programming Language :: Python :: 3.9
@@ -24,7 +23,7 @@ Classifier: Programming Language :: Python :: 3.11
24
23
  Classifier: Programming Language :: Python :: 3.12
25
24
  Classifier: Programming Language :: Python :: Implementation :: CPython
26
25
  Classifier: Programming Language :: Python :: Implementation :: PyPy
27
- Requires-Python: >=3.6
26
+ Requires-Python: >=3.7
28
27
  Description-Content-Type: text/x-rst
29
28
  License-File: LICENSE
30
29
  License-File: NOTICE
@@ -35,7 +34,6 @@ Provides-Extra: async
35
34
  Requires-Dist: aiohttp<4,>=3; extra == "async"
36
35
 
37
36
 
38
-
39
37
  Elasticsearch Python Client
40
38
  ===========================
41
39
 
@@ -75,6 +73,11 @@ Features
75
73
  Installation
76
74
  ------------
77
75
 
76
+ `Download the latest version of Elasticsearch <https://www.elastic.co/downloads/elasticsearch>`_
77
+ or
78
+ `sign-up <https://cloud.elastic.co/registration?elektra=en-ess-sign-up-page>`_
79
+ for a free trial of Elastic Cloud.
80
+
78
81
  Refer to the `Installation section <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_installation>`_
79
82
  of the getting started documentation.
80
83
 
@@ -2,7 +2,6 @@
2
2
 
3
3
  <img align="right" width="auto" height="auto" src="https://www.elastic.co/static-res/images/elastic-logo-200.png">
4
4
 
5
-
6
5
  Elasticsearch Python Client
7
6
  ===========================
8
7
 
@@ -42,6 +41,11 @@ Features
42
41
  Installation
43
42
  ------------
44
43
 
44
+ `Download the latest version of Elasticsearch <https://www.elastic.co/downloads/elasticsearch>`_
45
+ or
46
+ `sign-up <https://cloud.elastic.co/registration?elektra=en-ess-sign-up-page>`_
47
+ for a free trial of Elastic Cloud.
48
+
45
49
  Refer to the `Installation section <https://www.elastic.co/guide/en/elasticsearch/client/python-api/current/getting-started-python.html#_installation>`_
46
50
  of the getting started documentation.
47
51
 
@@ -0,0 +1,9 @@
1
+ .. _autoscaling:
2
+
3
+ Autoscaling
4
+ -----------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: AutoscalingClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _cat:
2
+
3
+ Cat
4
+ ---
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: CatClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _ccr:
2
+
3
+ Cross-Cluster Replication (CCR)
4
+ -------------------------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: CcrClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _cluster:
2
+
3
+ Cluster
4
+ -------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: ClusterClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _dangling-indices:
2
+
3
+ Dangling Indices
4
+ ----------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: DanglingIndicesClient
9
+ :members:
@@ -0,0 +1,11 @@
1
+ .. _elasticsearch:
2
+
3
+ Elasticsearch
4
+ -------------
5
+
6
+ .. py:module:: elasticsearch
7
+
8
+ .. autoclass:: Elasticsearch
9
+ :members:
10
+
11
+ .. py:module:: elasticsearch.client
@@ -0,0 +1,9 @@
1
+ .. _enrich-policies:
2
+
3
+ Enrich Policies
4
+ ---------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: EnrichClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _eql:
2
+
3
+ Event Query Language (EQL)
4
+ --------------------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: EqlClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _esql:
2
+
3
+ ES|QL
4
+ -----
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: EsqlClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _fleet:
2
+
3
+ Fleet
4
+ -----
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: FleetClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _graph-explore:
2
+
3
+ Graph Explore
4
+ -------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: GraphClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _index-lifecycle-management:
2
+
3
+ Index Lifecycle Management (ILM)
4
+ --------------------------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: IlmClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _indices:
2
+
3
+ Indices
4
+ -------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: IndicesClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _inference:
2
+
3
+ Inference
4
+ ---------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: InferenceClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _ingest-pipelines:
2
+
3
+ Ingest Pipelines
4
+ ----------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: IngestClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _license:
2
+
3
+ License
4
+ -------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: LicenseClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _logstash:
2
+
3
+ Logstash
4
+ --------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: LogstashClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _migration:
2
+
3
+ Migration
4
+ ---------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: MigrationClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _ml:
2
+
3
+ Machine Learning (ML)
4
+ ---------------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: MlClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _monitoring:
2
+
3
+ Monitoring
4
+ ----------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: MonitoringClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _nodes:
2
+
3
+ Nodes
4
+ -----
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: NodesClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _query-rules:
2
+
3
+ Query rules
4
+ -----------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: QueryRulesetClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _rollup-indices:
2
+
3
+ Rollup Indices
4
+ --------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: RollupClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _search-application:
2
+
3
+ Search Applications
4
+ -------------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: SearchApplicationClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _searchable-snapshots:
2
+
3
+ Searchable Snapshots
4
+ --------------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: SearchableSnapshotsClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _security:
2
+
3
+ Security
4
+ --------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: SecurityClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _shutdown:
2
+
3
+ Shutdown
4
+ --------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: ShutdownClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _snapshot-lifecycle-management:
2
+
3
+ Snapshot Lifecycle Management (SLM)
4
+ -----------------------------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: SlmClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _snapshots:
2
+
3
+ Snapshots
4
+ ---------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: SnapshotClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _snapshottable-features:
2
+
3
+ Snapshottable Features
4
+ ----------------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: FeaturesClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _sql:
2
+
3
+ SQL
4
+ ---
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: SqlClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _synonyms:
2
+
3
+ Synonyms
4
+ --------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: SynonymsClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _tasks:
2
+
3
+ Tasks
4
+ -----
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: TasksClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _text-structure:
2
+
3
+ Text Structure
4
+ --------------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: TextStructureClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _tls-ssl:
2
+
3
+ TLS/SSL
4
+ -------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: SslClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _transforms:
2
+
3
+ Transforms
4
+ ----------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: TransformClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _watcher:
2
+
3
+ Watcher
4
+ -------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: WatcherClient
9
+ :members:
@@ -0,0 +1,9 @@
1
+ .. _x-pack:
2
+
3
+ X-Pack
4
+ ------
5
+ .. py:module:: elasticsearch.client
6
+ :noindex:
7
+
8
+ .. autoclass:: XPackClient
9
+ :members:
@@ -0,0 +1,56 @@
1
+ .. _api:
2
+
3
+ Elasticsearch API Reference
4
+ ===========================
5
+
6
+ All the API calls map the raw REST API as closely as possible, including the
7
+ distinction between required and optional arguments to the calls. Keyword
8
+ arguments are required for all calls.
9
+
10
+ .. note::
11
+
12
+ Some API parameters in Elasticsearch are reserved keywords in Python.
13
+ For example the ``from`` query parameter for pagination would be aliased as
14
+ ``from_``.
15
+
16
+ .. toctree::
17
+ :maxdepth: 1
18
+
19
+ api/elasticsearch
20
+ api/autoscaling
21
+ api/cat
22
+ api/ccr
23
+ api/cluster
24
+ api/dangling-indices
25
+ api/enrich-policies
26
+ api/eql
27
+ api/esql
28
+ api/fleet
29
+ api/graph-explore
30
+ api/index-lifecycle-management
31
+ api/indices
32
+ api/inference
33
+ api/ingest-pipelines
34
+ api/license
35
+ api/logstash
36
+ api/migration
37
+ api/ml
38
+ api/monitoring
39
+ api/nodes
40
+ api/query-rules
41
+ api/rollup-indices
42
+ api/search-application
43
+ api/searchable-snapshots
44
+ api/security
45
+ api/shutdown
46
+ api/snapshot-lifecycle-management
47
+ api/snapshots
48
+ api/snapshottable-features
49
+ api/sql
50
+ api/synonyms
51
+ api/tls-ssl
52
+ api/tasks
53
+ api/text-structure
54
+ api/transforms
55
+ api/watcher
56
+ api/x-pack
@@ -2,23 +2,19 @@ Using Asyncio with Elasticsearch
2
2
  ================================
3
3
 
4
4
  .. py:module:: elasticsearch
5
+ :no-index:
5
6
 
6
- Starting in ``elasticsearch-py`` v7.8.0 for Python 3.6+ the ``elasticsearch`` package supports async/await with
7
+ The ``elasticsearch`` package supports async/await with
7
8
  `Asyncio <https://docs.python.org/3/library/asyncio.html>`_ and `Aiohttp <https://docs.aiohttp.org>`_.
8
9
  You can either install ``aiohttp`` directly or use the ``[async]`` extra:
9
10
 
10
11
  .. code-block:: bash
11
12
 
12
- $ python -m pip install elasticsearch>=7.8.0 aiohttp
13
+ $ python -m pip install elasticsearch aiohttp
13
14
 
14
15
  # - OR -
15
16
 
16
- $ python -m pip install elasticsearch[async]>=7.8.0
17
-
18
- .. note::
19
- Async functionality is a new feature of this library in v7.8.0+ so
20
- `please open an issue <https://github.com/elastic/elasticsearch-py/issues>`_
21
- if you find an issue or have a question about async support.
17
+ $ python -m pip install elasticsearch[async]
22
18
 
23
19
  Getting Started with Async
24
20
  --------------------------
@@ -66,13 +62,13 @@ in the ``examples/fastapi-apm`` directory.
66
62
  Frequently Asked Questions
67
63
  --------------------------
68
64
 
69
- NameError / ImportError when importing ``AsyncElasticsearch``?
70
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
65
+ ValueError when initializing ``AsyncElasticsearch``?
66
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
71
67
 
72
- If when trying to use ``AsyncElasticsearch`` and you're receiving a ``NameError`` or ``ImportError``
73
- you should ensure that you're running Python 3.6+ (check with ``$ python --version``) and
74
- that you have ``aiohttp`` installed in your environment (check with ``$ python -m pip freeze | grep aiohttp``).
75
- If either of the above conditions is not met then async support won't be available.
68
+ If when trying to use ``AsyncElasticsearch`` you receive ``ValueError: You must
69
+ have 'aiohttp' installed to use AiohttpHttpNode`` you should ensure that you
70
+ have ``aiohttp`` installed in your environment (check with ``$ python -m pip
71
+ freeze | grep aiohttp``). Otherwise, async support won't be available.
76
72
 
77
73
  What about the ``elasticsearch-async`` package?
78
74
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -131,6 +127,7 @@ All async helpers that accept an iterator or generator also accept async iterato
131
127
  and async generators.
132
128
 
133
129
  .. py:module:: elasticsearch.helpers
130
+ :no-index:
134
131
 
135
132
  Bulk and Streaming Bulk
136
133
  ~~~~~~~~~~~~~~~~~~~~~~~
@@ -220,6 +217,7 @@ API Reference
220
217
  -------------
221
218
 
222
219
  .. py:module:: elasticsearch
220
+ :no-index:
223
221
 
224
222
  The API of :class:`~elasticsearch.AsyncElasticsearch` is nearly identical
225
223
  to the API of :class:`~elasticsearch.Elasticsearch` with the exception that
@@ -4,6 +4,7 @@ Exceptions & Warnings
4
4
  =====================
5
5
 
6
6
  .. py:module:: elasticsearch
7
+ :noindex:
7
8
 
8
9
  API Errors
9
10
  ----------