File tree 5 files changed +13
-7
lines changed
5 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -9,22 +9,28 @@ The :ref:`Asynchronous API <async_api>` classes are documented separately.
9
9
.. py :module :: elasticsearch_dsl
10
10
11
11
.. autoclass :: Search
12
+ :inherited-members:
12
13
:members:
13
14
14
15
.. autoclass :: MultiSearch
16
+ :inherited-members:
15
17
:members:
16
18
17
19
.. autoclass :: Document
20
+ :inherited-members:
18
21
:members:
19
22
20
23
.. autoclass :: Index
24
+ :inherited-members:
21
25
:members:
22
26
23
27
.. autoclass :: FacetedSearch
28
+ :inherited-members:
24
29
:members:
25
30
26
31
.. autoclass :: UpdateByQuery
27
- :members:
32
+ :inherited-members:
33
+ :members:
28
34
29
35
Mappings
30
36
--------
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ to the ``Elasticsearch`` class from ``elasticsearch-py``.
45
45
46
46
To see all
47
47
possible configuration options refer to the `documentation
48
- <http ://elasticsearch-py.readthedocs.io/en/master /api.html#elasticsearch > `_.
48
+ <https ://elasticsearch-py.readthedocs.io/en/latest /api/elasticsearch .html> `_.
49
49
50
50
Multiple clusters
51
51
-----------------
Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ async def update(
255
255
:arg return_doc_meta: set to ``True`` to return all metadata from the
256
256
index API call instead of only the operation result
257
257
258
- :return operation result noop/updated
258
+ :return: operation result noop/updated
259
259
"""
260
260
body = {
261
261
"doc_as_upsert" : doc_as_upsert ,
@@ -346,7 +346,7 @@ async def save(
346
346
Any additional keyword arguments will be passed to
347
347
``Elasticsearch.index`` unchanged.
348
348
349
- :return operation result created/updated
349
+ :return: operation result created/updated
350
350
"""
351
351
if validate :
352
352
self .full_clean ()
Original file line number Diff line number Diff line change @@ -253,7 +253,7 @@ def update(
253
253
:arg return_doc_meta: set to ``True`` to return all metadata from the
254
254
index API call instead of only the operation result
255
255
256
- :return operation result noop/updated
256
+ :return: operation result noop/updated
257
257
"""
258
258
body = {
259
259
"doc_as_upsert" : doc_as_upsert ,
@@ -344,7 +344,7 @@ def save(
344
344
Any additional keyword arguments will be passed to
345
345
``Elasticsearch.index`` unchanged.
346
346
347
- :return operation result created/updated
347
+ :return: operation result created/updated
348
348
"""
349
349
if validate :
350
350
self .full_clean ()
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ def params(self, **kwargs):
143
143
"""
144
144
Specify query params to be used when executing the search. All the
145
145
keyword arguments will override the current values. See
146
- https://elasticsearch-py.readthedocs.io/en/master /api.html#elasticsearch.Elasticsearch.search
146
+ https://elasticsearch-py.readthedocs.io/en/latest /api/elasticsearch .html#elasticsearch.Elasticsearch.search
147
147
for all available parameters.
148
148
149
149
Example::
You can’t perform that action at this time.
0 commit comments