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,295 @@
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 (
24
+ SKIP_IN_PATH,
25
+ Stability,
26
+ _quote,
27
+ _rewrite_parameters,
28
+ _stability_warning,
29
+ )
30
+
31
+
32
+ class TasksClient(NamespacedClient):
33
+
34
+ @_rewrite_parameters()
35
+ @_stability_warning(Stability.EXPERIMENTAL)
36
+ def cancel(
37
+ self,
38
+ *,
39
+ task_id: t.Optional[t.Union[int, str]] = None,
40
+ actions: t.Optional[t.Union[str, t.Sequence[str]]] = None,
41
+ error_trace: t.Optional[bool] = None,
42
+ filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
43
+ human: t.Optional[bool] = None,
44
+ nodes: t.Optional[t.Sequence[str]] = None,
45
+ parent_task_id: t.Optional[str] = None,
46
+ pretty: t.Optional[bool] = None,
47
+ wait_for_completion: t.Optional[bool] = None,
48
+ ) -> ObjectApiResponse[t.Any]:
49
+ """
50
+ .. raw:: html
51
+
52
+ <p>Cancel a task.</p>
53
+ <p>WARNING: The task management API is new and should still be considered a beta feature.
54
+ The API may change in ways that are not backwards compatible.</p>
55
+ <p>A task may continue to run for some time after it has been cancelled because it may not be able to safely stop its current activity straight away.
56
+ It is also possible that Elasticsearch must complete its work on other tasks before it can process the cancellation.
57
+ The get task information API will continue to list these cancelled tasks until they complete.
58
+ The cancelled flag in the response indicates that the cancellation command has been processed and the task will stop as soon as possible.</p>
59
+ <p>To troubleshoot why a cancelled task does not complete promptly, use the get task information API with the <code>?detailed</code> parameter to identify the other tasks the system is running.
60
+ You can also use the node hot threads API to obtain detailed information about the work the system is doing instead of completing the cancelled task.</p>
61
+
62
+
63
+ `<https://www.elastic.co/docs/api/doc/elasticsearch/v9/group/endpoint-tasks>`_
64
+
65
+ :param task_id: The task identifier.
66
+ :param actions: A comma-separated list or wildcard expression of actions that
67
+ is used to limit the request.
68
+ :param nodes: A comma-separated list of node IDs or names that is used to limit
69
+ the request.
70
+ :param parent_task_id: A parent task ID that is used to limit the tasks.
71
+ :param wait_for_completion: If true, the request blocks until all found tasks
72
+ are complete.
73
+ """
74
+ __path_parts: t.Dict[str, str]
75
+ if task_id not in SKIP_IN_PATH:
76
+ __path_parts = {"task_id": _quote(task_id)}
77
+ __path = f'/_tasks/{__path_parts["task_id"]}/_cancel'
78
+ else:
79
+ __path_parts = {}
80
+ __path = "/_tasks/_cancel"
81
+ __query: t.Dict[str, t.Any] = {}
82
+ if actions is not None:
83
+ __query["actions"] = actions
84
+ if error_trace is not None:
85
+ __query["error_trace"] = error_trace
86
+ if filter_path is not None:
87
+ __query["filter_path"] = filter_path
88
+ if human is not None:
89
+ __query["human"] = human
90
+ if nodes is not None:
91
+ __query["nodes"] = nodes
92
+ if parent_task_id is not None:
93
+ __query["parent_task_id"] = parent_task_id
94
+ if pretty is not None:
95
+ __query["pretty"] = pretty
96
+ if wait_for_completion is not None:
97
+ __query["wait_for_completion"] = wait_for_completion
98
+ __headers = {"accept": "application/json"}
99
+ return self.perform_request( # type: ignore[return-value]
100
+ "POST",
101
+ __path,
102
+ params=__query,
103
+ headers=__headers,
104
+ endpoint_id="tasks.cancel",
105
+ path_parts=__path_parts,
106
+ )
107
+
108
+ @_rewrite_parameters()
109
+ @_stability_warning(Stability.EXPERIMENTAL)
110
+ def get(
111
+ self,
112
+ *,
113
+ task_id: str,
114
+ error_trace: t.Optional[bool] = None,
115
+ filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
116
+ human: t.Optional[bool] = None,
117
+ pretty: t.Optional[bool] = None,
118
+ timeout: t.Optional[t.Union[str, t.Literal[-1], t.Literal[0]]] = None,
119
+ wait_for_completion: t.Optional[bool] = None,
120
+ ) -> ObjectApiResponse[t.Any]:
121
+ """
122
+ .. raw:: html
123
+
124
+ <p>Get task information.
125
+ Get information about a task currently running in the cluster.</p>
126
+ <p>WARNING: The task management API is new and should still be considered a beta feature.
127
+ The API may change in ways that are not backwards compatible.</p>
128
+ <p>If the task identifier is not found, a 404 response code indicates that there are no resources that match the request.</p>
129
+
130
+
131
+ `<https://www.elastic.co/docs/api/doc/elasticsearch/v9/group/endpoint-tasks>`_
132
+
133
+ :param task_id: The task identifier.
134
+ :param timeout: The period to wait for a response. If no response is received
135
+ before the timeout expires, the request fails and returns an error.
136
+ :param wait_for_completion: If `true`, the request blocks until the task has
137
+ completed.
138
+ """
139
+ if task_id in SKIP_IN_PATH:
140
+ raise ValueError("Empty value passed for parameter 'task_id'")
141
+ __path_parts: t.Dict[str, str] = {"task_id": _quote(task_id)}
142
+ __path = f'/_tasks/{__path_parts["task_id"]}'
143
+ __query: t.Dict[str, t.Any] = {}
144
+ if error_trace is not None:
145
+ __query["error_trace"] = error_trace
146
+ if filter_path is not None:
147
+ __query["filter_path"] = filter_path
148
+ if human is not None:
149
+ __query["human"] = human
150
+ if pretty is not None:
151
+ __query["pretty"] = pretty
152
+ if timeout is not None:
153
+ __query["timeout"] = timeout
154
+ if wait_for_completion is not None:
155
+ __query["wait_for_completion"] = wait_for_completion
156
+ __headers = {"accept": "application/json"}
157
+ return self.perform_request( # type: ignore[return-value]
158
+ "GET",
159
+ __path,
160
+ params=__query,
161
+ headers=__headers,
162
+ endpoint_id="tasks.get",
163
+ path_parts=__path_parts,
164
+ )
165
+
166
+ @_rewrite_parameters()
167
+ @_stability_warning(Stability.EXPERIMENTAL)
168
+ def list(
169
+ self,
170
+ *,
171
+ actions: t.Optional[t.Union[str, t.Sequence[str]]] = None,
172
+ detailed: t.Optional[bool] = None,
173
+ error_trace: t.Optional[bool] = None,
174
+ filter_path: t.Optional[t.Union[str, t.Sequence[str]]] = None,
175
+ group_by: t.Optional[
176
+ t.Union[str, t.Literal["nodes", "none", "parents"]]
177
+ ] = None,
178
+ human: t.Optional[bool] = None,
179
+ nodes: t.Optional[t.Union[str, t.Sequence[str]]] = None,
180
+ parent_task_id: t.Optional[str] = None,
181
+ pretty: t.Optional[bool] = None,
182
+ timeout: t.Optional[t.Union[str, t.Literal[-1], t.Literal[0]]] = None,
183
+ wait_for_completion: t.Optional[bool] = None,
184
+ ) -> ObjectApiResponse[t.Any]:
185
+ """
186
+ .. raw:: html
187
+
188
+ <p>Get all tasks.
189
+ Get information about the tasks currently running on one or more nodes in the cluster.</p>
190
+ <p>WARNING: The task management API is new and should still be considered a beta feature.
191
+ The API may change in ways that are not backwards compatible.</p>
192
+ <p><strong>Identifying running tasks</strong></p>
193
+ <p>The <code>X-Opaque-Id header</code>, when provided on the HTTP request header, is going to be returned as a header in the response as well as in the headers field for in the task information.
194
+ This enables you to track certain calls or associate certain tasks with the client that started them.
195
+ For example:</p>
196
+ <pre><code>curl -i -H &quot;X-Opaque-Id: 123456&quot; &quot;http://localhost:9200/_tasks?group_by=parents&quot;
197
+ </code></pre>
198
+ <p>The API returns the following result:</p>
199
+ <pre><code>HTTP/1.1 200 OK
200
+ X-Opaque-Id: 123456
201
+ content-type: application/json; charset=UTF-8
202
+ content-length: 831
203
+
204
+ {
205
+ &quot;tasks&quot; : {
206
+ &quot;u5lcZHqcQhu-rUoFaqDphA:45&quot; : {
207
+ &quot;node&quot; : &quot;u5lcZHqcQhu-rUoFaqDphA&quot;,
208
+ &quot;id&quot; : 45,
209
+ &quot;type&quot; : &quot;transport&quot;,
210
+ &quot;action&quot; : &quot;cluster:monitor/tasks/lists&quot;,
211
+ &quot;start_time_in_millis&quot; : 1513823752749,
212
+ &quot;running_time_in_nanos&quot; : 293139,
213
+ &quot;cancellable&quot; : false,
214
+ &quot;headers&quot; : {
215
+ &quot;X-Opaque-Id&quot; : &quot;123456&quot;
216
+ },
217
+ &quot;children&quot; : [
218
+ {
219
+ &quot;node&quot; : &quot;u5lcZHqcQhu-rUoFaqDphA&quot;,
220
+ &quot;id&quot; : 46,
221
+ &quot;type&quot; : &quot;direct&quot;,
222
+ &quot;action&quot; : &quot;cluster:monitor/tasks/lists[n]&quot;,
223
+ &quot;start_time_in_millis&quot; : 1513823752750,
224
+ &quot;running_time_in_nanos&quot; : 92133,
225
+ &quot;cancellable&quot; : false,
226
+ &quot;parent_task_id&quot; : &quot;u5lcZHqcQhu-rUoFaqDphA:45&quot;,
227
+ &quot;headers&quot; : {
228
+ &quot;X-Opaque-Id&quot; : &quot;123456&quot;
229
+ }
230
+ }
231
+ ]
232
+ }
233
+ }
234
+ }
235
+ </code></pre>
236
+ <p>In this example, <code>X-Opaque-Id: 123456</code> is the ID as a part of the response header.
237
+ The <code>X-Opaque-Id</code> in the task <code>headers</code> is the ID for the task that was initiated by the REST request.
238
+ The <code>X-Opaque-Id</code> in the children <code>headers</code> is the child task of the task that was initiated by the REST request.</p>
239
+
240
+
241
+ `<https://www.elastic.co/docs/api/doc/elasticsearch/v9/group/endpoint-tasks>`_
242
+
243
+ :param actions: A comma-separated list or wildcard expression of actions used
244
+ to limit the request. For example, you can use `cluser:*` to retrieve all
245
+ cluster-related tasks.
246
+ :param detailed: If `true`, the response includes detailed information about
247
+ the running tasks. This information is useful to distinguish tasks from each
248
+ other but is more costly to run.
249
+ :param group_by: A key that is used to group tasks in the response. The task
250
+ lists can be grouped either by nodes or by parent tasks.
251
+ :param nodes: A comma-separated list of node IDs or names that is used to limit
252
+ the returned information.
253
+ :param parent_task_id: A parent task identifier that is used to limit returned
254
+ information. To return all tasks, omit this parameter or use a value of `-1`.
255
+ If the parent task is not found, the API does not return a 404 response code.
256
+ :param timeout: The period to wait for each node to respond. If a node does not
257
+ respond before its timeout expires, the response does not include its information.
258
+ However, timed out nodes are included in the `node_failures` property.
259
+ :param wait_for_completion: If `true`, the request blocks until the operation
260
+ is complete.
261
+ """
262
+ __path_parts: t.Dict[str, str] = {}
263
+ __path = "/_tasks"
264
+ __query: t.Dict[str, t.Any] = {}
265
+ if actions is not None:
266
+ __query["actions"] = actions
267
+ if detailed is not None:
268
+ __query["detailed"] = detailed
269
+ if error_trace is not None:
270
+ __query["error_trace"] = error_trace
271
+ if filter_path is not None:
272
+ __query["filter_path"] = filter_path
273
+ if group_by is not None:
274
+ __query["group_by"] = group_by
275
+ if human is not None:
276
+ __query["human"] = human
277
+ if nodes is not None:
278
+ __query["nodes"] = nodes
279
+ if parent_task_id is not None:
280
+ __query["parent_task_id"] = parent_task_id
281
+ if pretty is not None:
282
+ __query["pretty"] = pretty
283
+ if timeout is not None:
284
+ __query["timeout"] = timeout
285
+ if wait_for_completion is not None:
286
+ __query["wait_for_completion"] = wait_for_completion
287
+ __headers = {"accept": "application/json"}
288
+ return self.perform_request( # type: ignore[return-value]
289
+ "GET",
290
+ __path,
291
+ params=__query,
292
+ headers=__headers,
293
+ endpoint_id="tasks.list",
294
+ path_parts=__path_parts,
295
+ )