elasticsearch9 9.0.0__py3-none-any.whl

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. elasticsearch9/__init__.py +98 -0
  2. elasticsearch9/_async/__init__.py +16 -0
  3. elasticsearch9/_async/client/__init__.py +6531 -0
  4. elasticsearch9/_async/client/_base.py +430 -0
  5. elasticsearch9/_async/client/async_search.py +637 -0
  6. elasticsearch9/_async/client/autoscaling.py +252 -0
  7. elasticsearch9/_async/client/cat.py +2995 -0
  8. elasticsearch9/_async/client/ccr.py +1043 -0
  9. elasticsearch9/_async/client/cluster.py +1223 -0
  10. elasticsearch9/_async/client/connector.py +1978 -0
  11. elasticsearch9/_async/client/dangling_indices.py +192 -0
  12. elasticsearch9/_async/client/enrich.py +291 -0
  13. elasticsearch9/_async/client/eql.py +359 -0
  14. elasticsearch9/_async/client/esql.py +490 -0
  15. elasticsearch9/_async/client/features.py +130 -0
  16. elasticsearch9/_async/client/fleet.py +658 -0
  17. elasticsearch9/_async/client/graph.py +113 -0
  18. elasticsearch9/_async/client/ilm.py +668 -0
  19. elasticsearch9/_async/client/indices.py +5582 -0
  20. elasticsearch9/_async/client/inference.py +2247 -0
  21. elasticsearch9/_async/client/ingest.py +766 -0
  22. elasticsearch9/_async/client/license.py +400 -0
  23. elasticsearch9/_async/client/logstash.py +176 -0
  24. elasticsearch9/_async/client/migration.py +160 -0
  25. elasticsearch9/_async/client/ml.py +5835 -0
  26. elasticsearch9/_async/client/monitoring.py +100 -0
  27. elasticsearch9/_async/client/nodes.py +543 -0
  28. elasticsearch9/_async/client/query_rules.py +485 -0
  29. elasticsearch9/_async/client/rollup.py +616 -0
  30. elasticsearch9/_async/client/search_application.py +574 -0
  31. elasticsearch9/_async/client/searchable_snapshots.py +313 -0
  32. elasticsearch9/_async/client/security.py +4688 -0
  33. elasticsearch9/_async/client/shutdown.py +268 -0
  34. elasticsearch9/_async/client/simulate.py +145 -0
  35. elasticsearch9/_async/client/slm.py +559 -0
  36. elasticsearch9/_async/client/snapshot.py +1338 -0
  37. elasticsearch9/_async/client/sql.py +469 -0
  38. elasticsearch9/_async/client/ssl.py +76 -0
  39. elasticsearch9/_async/client/synonyms.py +413 -0
  40. elasticsearch9/_async/client/tasks.py +295 -0
  41. elasticsearch9/_async/client/text_structure.py +664 -0
  42. elasticsearch9/_async/client/transform.py +922 -0
  43. elasticsearch9/_async/client/utils.py +48 -0
  44. elasticsearch9/_async/client/watcher.py +894 -0
  45. elasticsearch9/_async/client/xpack.py +134 -0
  46. elasticsearch9/_async/helpers.py +596 -0
  47. elasticsearch9/_otel.py +110 -0
  48. elasticsearch9/_sync/__init__.py +16 -0
  49. elasticsearch9/_sync/client/__init__.py +6529 -0
  50. elasticsearch9/_sync/client/_base.py +430 -0
  51. elasticsearch9/_sync/client/async_search.py +637 -0
  52. elasticsearch9/_sync/client/autoscaling.py +252 -0
  53. elasticsearch9/_sync/client/cat.py +2995 -0
  54. elasticsearch9/_sync/client/ccr.py +1043 -0
  55. elasticsearch9/_sync/client/cluster.py +1223 -0
  56. elasticsearch9/_sync/client/connector.py +1978 -0
  57. elasticsearch9/_sync/client/dangling_indices.py +192 -0
  58. elasticsearch9/_sync/client/enrich.py +291 -0
  59. elasticsearch9/_sync/client/eql.py +359 -0
  60. elasticsearch9/_sync/client/esql.py +490 -0
  61. elasticsearch9/_sync/client/features.py +130 -0
  62. elasticsearch9/_sync/client/fleet.py +658 -0
  63. elasticsearch9/_sync/client/graph.py +113 -0
  64. elasticsearch9/_sync/client/ilm.py +668 -0
  65. elasticsearch9/_sync/client/indices.py +5582 -0
  66. elasticsearch9/_sync/client/inference.py +2247 -0
  67. elasticsearch9/_sync/client/ingest.py +766 -0
  68. elasticsearch9/_sync/client/license.py +400 -0
  69. elasticsearch9/_sync/client/logstash.py +176 -0
  70. elasticsearch9/_sync/client/migration.py +160 -0
  71. elasticsearch9/_sync/client/ml.py +5835 -0
  72. elasticsearch9/_sync/client/monitoring.py +100 -0
  73. elasticsearch9/_sync/client/nodes.py +543 -0
  74. elasticsearch9/_sync/client/query_rules.py +485 -0
  75. elasticsearch9/_sync/client/rollup.py +616 -0
  76. elasticsearch9/_sync/client/search_application.py +574 -0
  77. elasticsearch9/_sync/client/searchable_snapshots.py +313 -0
  78. elasticsearch9/_sync/client/security.py +4688 -0
  79. elasticsearch9/_sync/client/shutdown.py +268 -0
  80. elasticsearch9/_sync/client/simulate.py +145 -0
  81. elasticsearch9/_sync/client/slm.py +559 -0
  82. elasticsearch9/_sync/client/snapshot.py +1338 -0
  83. elasticsearch9/_sync/client/sql.py +469 -0
  84. elasticsearch9/_sync/client/ssl.py +76 -0
  85. elasticsearch9/_sync/client/synonyms.py +413 -0
  86. elasticsearch9/_sync/client/tasks.py +295 -0
  87. elasticsearch9/_sync/client/text_structure.py +664 -0
  88. elasticsearch9/_sync/client/transform.py +922 -0
  89. elasticsearch9/_sync/client/utils.py +475 -0
  90. elasticsearch9/_sync/client/watcher.py +894 -0
  91. elasticsearch9/_sync/client/xpack.py +134 -0
  92. elasticsearch9/_utils.py +34 -0
  93. elasticsearch9/_version.py +18 -0
  94. elasticsearch9/client.py +126 -0
  95. elasticsearch9/compat.py +79 -0
  96. elasticsearch9/dsl/__init__.py +203 -0
  97. elasticsearch9/dsl/_async/__init__.py +16 -0
  98. elasticsearch9/dsl/_async/document.py +522 -0
  99. elasticsearch9/dsl/_async/faceted_search.py +50 -0
  100. elasticsearch9/dsl/_async/index.py +639 -0
  101. elasticsearch9/dsl/_async/mapping.py +49 -0
  102. elasticsearch9/dsl/_async/search.py +237 -0
  103. elasticsearch9/dsl/_async/update_by_query.py +47 -0
  104. elasticsearch9/dsl/_sync/__init__.py +16 -0
  105. elasticsearch9/dsl/_sync/document.py +514 -0
  106. elasticsearch9/dsl/_sync/faceted_search.py +50 -0
  107. elasticsearch9/dsl/_sync/index.py +597 -0
  108. elasticsearch9/dsl/_sync/mapping.py +49 -0
  109. elasticsearch9/dsl/_sync/search.py +230 -0
  110. elasticsearch9/dsl/_sync/update_by_query.py +45 -0
  111. elasticsearch9/dsl/aggs.py +3734 -0
  112. elasticsearch9/dsl/analysis.py +341 -0
  113. elasticsearch9/dsl/async_connections.py +37 -0
  114. elasticsearch9/dsl/connections.py +142 -0
  115. elasticsearch9/dsl/document.py +20 -0
  116. elasticsearch9/dsl/document_base.py +444 -0
  117. elasticsearch9/dsl/exceptions.py +32 -0
  118. elasticsearch9/dsl/faceted_search.py +28 -0
  119. elasticsearch9/dsl/faceted_search_base.py +489 -0
  120. elasticsearch9/dsl/field.py +4392 -0
  121. elasticsearch9/dsl/function.py +180 -0
  122. elasticsearch9/dsl/index.py +23 -0
  123. elasticsearch9/dsl/index_base.py +178 -0
  124. elasticsearch9/dsl/mapping.py +19 -0
  125. elasticsearch9/dsl/mapping_base.py +219 -0
  126. elasticsearch9/dsl/query.py +2822 -0
  127. elasticsearch9/dsl/response/__init__.py +388 -0
  128. elasticsearch9/dsl/response/aggs.py +100 -0
  129. elasticsearch9/dsl/response/hit.py +53 -0
  130. elasticsearch9/dsl/search.py +20 -0
  131. elasticsearch9/dsl/search_base.py +1053 -0
  132. elasticsearch9/dsl/serializer.py +34 -0
  133. elasticsearch9/dsl/types.py +6453 -0
  134. elasticsearch9/dsl/update_by_query.py +19 -0
  135. elasticsearch9/dsl/update_by_query_base.py +149 -0
  136. elasticsearch9/dsl/utils.py +687 -0
  137. elasticsearch9/dsl/wrappers.py +144 -0
  138. elasticsearch9/exceptions.py +133 -0
  139. elasticsearch9/helpers/__init__.py +41 -0
  140. elasticsearch9/helpers/actions.py +875 -0
  141. elasticsearch9/helpers/errors.py +40 -0
  142. elasticsearch9/helpers/vectorstore/__init__.py +62 -0
  143. elasticsearch9/helpers/vectorstore/_async/__init__.py +16 -0
  144. elasticsearch9/helpers/vectorstore/_async/_utils.py +39 -0
  145. elasticsearch9/helpers/vectorstore/_async/embedding_service.py +89 -0
  146. elasticsearch9/helpers/vectorstore/_async/strategies.py +487 -0
  147. elasticsearch9/helpers/vectorstore/_async/vectorstore.py +421 -0
  148. elasticsearch9/helpers/vectorstore/_sync/__init__.py +16 -0
  149. elasticsearch9/helpers/vectorstore/_sync/_utils.py +39 -0
  150. elasticsearch9/helpers/vectorstore/_sync/embedding_service.py +89 -0
  151. elasticsearch9/helpers/vectorstore/_sync/strategies.py +487 -0
  152. elasticsearch9/helpers/vectorstore/_sync/vectorstore.py +421 -0
  153. elasticsearch9/helpers/vectorstore/_utils.py +116 -0
  154. elasticsearch9/py.typed +0 -0
  155. elasticsearch9/serializer.py +250 -0
  156. elasticsearch9-9.0.0.dist-info/METADATA +175 -0
  157. elasticsearch9-9.0.0.dist-info/RECORD +160 -0
  158. elasticsearch9-9.0.0.dist-info/WHEEL +4 -0
  159. elasticsearch9-9.0.0.dist-info/licenses/LICENSE +176 -0
  160. elasticsearch9-9.0.0.dist-info/licenses/NOTICE +2 -0
@@ -0,0 +1,252 @@
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
+ import typing as t
19
+
20
+ from elastic_transport import ObjectApiResponse
21
+
22
+ from ._base import NamespacedClient
23
+ from .utils import SKIP_IN_PATH, _quote, _rewrite_parameters
24
+
25
+
26
+ class AutoscalingClient(NamespacedClient):
27
+
28
+ @_rewrite_parameters()
29
+ def delete_autoscaling_policy(
30
+ self,
31
+ *,
32
+ name: str,
33
+ error_trace: t.Optional[bool] = None,
34
+ filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
35
+ human: t.Optional[bool] = None,
36
+ master_timeout: t.Optional[t.Union[str, t.Literal[-1], t.Literal[0]]] = None,
37
+ pretty: t.Optional[bool] = None,
38
+ timeout: t.Optional[t.Union[str, t.Literal[-1], t.Literal[0]]] = None,
39
+ ) -> ObjectApiResponse[t.Any]:
40
+ """
41
+ .. raw:: html
42
+
43
+ <p>Delete an autoscaling policy.</p>
44
+ <p>NOTE: This feature is designed for indirect use by Elasticsearch Service, Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not supported.</p>
45
+
46
+
47
+ `<https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-autoscaling-delete-autoscaling-policy>`_
48
+
49
+ :param name: the name of the autoscaling policy
50
+ :param master_timeout: Period to wait for a connection to the master node. If
51
+ no response is received before the timeout expires, the request fails and
52
+ returns an error.
53
+ :param timeout: Period to wait for a response. If no response is received before
54
+ the timeout expires, the request fails and returns an error.
55
+ """
56
+ if name in SKIP_IN_PATH:
57
+ raise ValueError("Empty value passed for parameter 'name'")
58
+ __path_parts: t.Dict[str, str] = {"name": _quote(name)}
59
+ __path = f'/_autoscaling/policy/{__path_parts["name"]}'
60
+ __query: t.Dict[str, t.Any] = {}
61
+ if error_trace is not None:
62
+ __query["error_trace"] = error_trace
63
+ if filter_path is not None:
64
+ __query["filter_path"] = filter_path
65
+ if human is not None:
66
+ __query["human"] = human
67
+ if master_timeout is not None:
68
+ __query["master_timeout"] = master_timeout
69
+ if pretty is not None:
70
+ __query["pretty"] = pretty
71
+ if timeout is not None:
72
+ __query["timeout"] = timeout
73
+ __headers = {"accept": "application/json"}
74
+ return self.perform_request( # type: ignore[return-value]
75
+ "DELETE",
76
+ __path,
77
+ params=__query,
78
+ headers=__headers,
79
+ endpoint_id="autoscaling.delete_autoscaling_policy",
80
+ path_parts=__path_parts,
81
+ )
82
+
83
+ @_rewrite_parameters()
84
+ def get_autoscaling_capacity(
85
+ self,
86
+ *,
87
+ error_trace: t.Optional[bool] = None,
88
+ filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
89
+ human: t.Optional[bool] = None,
90
+ master_timeout: t.Optional[t.Union[str, t.Literal[-1], t.Literal[0]]] = None,
91
+ pretty: t.Optional[bool] = None,
92
+ ) -> ObjectApiResponse[t.Any]:
93
+ """
94
+ .. raw:: html
95
+
96
+ <p>Get the autoscaling capacity.</p>
97
+ <p>NOTE: This feature is designed for indirect use by Elasticsearch Service, Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not supported.</p>
98
+ <p>This API gets the current autoscaling capacity based on the configured autoscaling policy.
99
+ It will return information to size the cluster appropriately to the current workload.</p>
100
+ <p>The <code>required_capacity</code> is calculated as the maximum of the <code>required_capacity</code> result of all individual deciders that are enabled for the policy.</p>
101
+ <p>The operator should verify that the <code>current_nodes</code> match the operator’s knowledge of the cluster to avoid making autoscaling decisions based on stale or incomplete information.</p>
102
+ <p>The response contains decider-specific information you can use to diagnose how and why autoscaling determined a certain capacity was required.
103
+ This information is provided for diagnosis only.
104
+ Do not use this information to make autoscaling decisions.</p>
105
+
106
+
107
+ `<https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-autoscaling-get-autoscaling-capacity>`_
108
+
109
+ :param master_timeout: Period to wait for a connection to the master node. If
110
+ no response is received before the timeout expires, the request fails and
111
+ returns an error.
112
+ """
113
+ __path_parts: t.Dict[str, str] = {}
114
+ __path = "/_autoscaling/capacity"
115
+ __query: t.Dict[str, t.Any] = {}
116
+ if error_trace is not None:
117
+ __query["error_trace"] = error_trace
118
+ if filter_path is not None:
119
+ __query["filter_path"] = filter_path
120
+ if human is not None:
121
+ __query["human"] = human
122
+ if master_timeout is not None:
123
+ __query["master_timeout"] = master_timeout
124
+ if pretty is not None:
125
+ __query["pretty"] = pretty
126
+ __headers = {"accept": "application/json"}
127
+ return self.perform_request( # type: ignore[return-value]
128
+ "GET",
129
+ __path,
130
+ params=__query,
131
+ headers=__headers,
132
+ endpoint_id="autoscaling.get_autoscaling_capacity",
133
+ path_parts=__path_parts,
134
+ )
135
+
136
+ @_rewrite_parameters()
137
+ def get_autoscaling_policy(
138
+ self,
139
+ *,
140
+ name: str,
141
+ error_trace: t.Optional[bool] = None,
142
+ filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
143
+ human: t.Optional[bool] = None,
144
+ master_timeout: t.Optional[t.Union[str, t.Literal[-1], t.Literal[0]]] = None,
145
+ pretty: t.Optional[bool] = None,
146
+ ) -> ObjectApiResponse[t.Any]:
147
+ """
148
+ .. raw:: html
149
+
150
+ <p>Get an autoscaling policy.</p>
151
+ <p>NOTE: This feature is designed for indirect use by Elasticsearch Service, Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not supported.</p>
152
+
153
+
154
+ `<https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-autoscaling-get-autoscaling-capacity>`_
155
+
156
+ :param name: the name of the autoscaling policy
157
+ :param master_timeout: Period to wait for a connection to the master node. If
158
+ no response is received before the timeout expires, the request fails and
159
+ returns an error.
160
+ """
161
+ if name in SKIP_IN_PATH:
162
+ raise ValueError("Empty value passed for parameter 'name'")
163
+ __path_parts: t.Dict[str, str] = {"name": _quote(name)}
164
+ __path = f'/_autoscaling/policy/{__path_parts["name"]}'
165
+ __query: t.Dict[str, t.Any] = {}
166
+ if error_trace is not None:
167
+ __query["error_trace"] = error_trace
168
+ if filter_path is not None:
169
+ __query["filter_path"] = filter_path
170
+ if human is not None:
171
+ __query["human"] = human
172
+ if master_timeout is not None:
173
+ __query["master_timeout"] = master_timeout
174
+ if pretty is not None:
175
+ __query["pretty"] = pretty
176
+ __headers = {"accept": "application/json"}
177
+ return self.perform_request( # type: ignore[return-value]
178
+ "GET",
179
+ __path,
180
+ params=__query,
181
+ headers=__headers,
182
+ endpoint_id="autoscaling.get_autoscaling_policy",
183
+ path_parts=__path_parts,
184
+ )
185
+
186
+ @_rewrite_parameters(
187
+ body_name="policy",
188
+ )
189
+ def put_autoscaling_policy(
190
+ self,
191
+ *,
192
+ name: str,
193
+ policy: t.Optional[t.Mapping[str, t.Any]] = None,
194
+ body: t.Optional[t.Mapping[str, t.Any]] = None,
195
+ error_trace: t.Optional[bool] = None,
196
+ filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
197
+ human: t.Optional[bool] = None,
198
+ master_timeout: t.Optional[t.Union[str, t.Literal[-1], t.Literal[0]]] = None,
199
+ pretty: t.Optional[bool] = None,
200
+ timeout: t.Optional[t.Union[str, t.Literal[-1], t.Literal[0]]] = None,
201
+ ) -> ObjectApiResponse[t.Any]:
202
+ """
203
+ .. raw:: html
204
+
205
+ <p>Create or update an autoscaling policy.</p>
206
+ <p>NOTE: This feature is designed for indirect use by Elasticsearch Service, Elastic Cloud Enterprise, and Elastic Cloud on Kubernetes. Direct use is not supported.</p>
207
+
208
+
209
+ `<https://www.elastic.co/docs/api/doc/elasticsearch/v9/operation/operation-autoscaling-put-autoscaling-policy>`_
210
+
211
+ :param name: the name of the autoscaling policy
212
+ :param policy:
213
+ :param master_timeout: Period to wait for a connection to the master node. If
214
+ no response is received before the timeout expires, the request fails and
215
+ returns an error.
216
+ :param timeout: Period to wait for a response. If no response is received before
217
+ the timeout expires, the request fails and returns an error.
218
+ """
219
+ if name in SKIP_IN_PATH:
220
+ raise ValueError("Empty value passed for parameter 'name'")
221
+ if policy is None and body is None:
222
+ raise ValueError(
223
+ "Empty value passed for parameters 'policy' and 'body', one of them should be set."
224
+ )
225
+ elif policy is not None and body is not None:
226
+ raise ValueError("Cannot set both 'policy' and 'body'")
227
+ __path_parts: t.Dict[str, str] = {"name": _quote(name)}
228
+ __path = f'/_autoscaling/policy/{__path_parts["name"]}'
229
+ __query: t.Dict[str, t.Any] = {}
230
+ if error_trace is not None:
231
+ __query["error_trace"] = error_trace
232
+ if filter_path is not None:
233
+ __query["filter_path"] = filter_path
234
+ if human is not None:
235
+ __query["human"] = human
236
+ if master_timeout is not None:
237
+ __query["master_timeout"] = master_timeout
238
+ if pretty is not None:
239
+ __query["pretty"] = pretty
240
+ if timeout is not None:
241
+ __query["timeout"] = timeout
242
+ __body = policy if policy is not None else body
243
+ __headers = {"accept": "application/json", "content-type": "application/json"}
244
+ return self.perform_request( # type: ignore[return-value]
245
+ "PUT",
246
+ __path,
247
+ params=__query,
248
+ headers=__headers,
249
+ body=__body,
250
+ endpoint_id="autoscaling.put_autoscaling_policy",
251
+ path_parts=__path_parts,
252
+ )