File tree Expand file tree Collapse file tree 6 files changed +1628
-458
lines changed Expand file tree Collapse file tree 6 files changed +1628
-458
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -1012,6 +1012,8 @@ async def get_alias(
1012
1012
"""
1013
1013
Get aliases. Retrieves information for one or more data stream or index aliases.
1014
1014
1015
+ `<https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-get-alias.html>`_
1016
+
1015
1017
:param index: Comma-separated list of data streams or indices used to limit the
1016
1018
request. Supports wildcards (`*`). To target all data streams and indices,
1017
1019
omit this parameter or use `*` or `_all`.
Original file line number Diff line number Diff line change @@ -46,12 +46,16 @@ async def get(
46
46
) -> ObjectApiResponse [t .Any ]:
47
47
"""
48
48
Get task information. Get information about a task currently running in the cluster.
49
+ WARNING: The task management API is new and should still be considered a beta
50
+ feature. The API may change in ways that are not backwards compatible. If the
51
+ task identifier is not found, a 404 response code indicates that there are no
52
+ resources that match the request.
49
53
50
54
`<https://www.elastic.co/guide/en/elasticsearch/reference/master/tasks.html>`_
51
55
52
- :param task_id: ID of the task.
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.
56
+ :param task_id: The task identifier .
57
+ :param timeout: The period to wait for a response. If no response is received
58
+ before the timeout expires, the request fails and returns an error.
55
59
:param wait_for_completion: If `true`, the request blocks until the task has
56
60
completed.
57
61
"""
You can’t perform that action at this time.
0 commit comments