File tree Expand file tree Collapse file tree 6 files changed +2670
-0
lines changed Expand file tree Collapse file tree 6 files changed +2670
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,14 @@ Cluster
42
42
.. autoclass :: ClusterClient
43
43
:members:
44
44
45
+ Connector
46
+ ---------
47
+ .. py :module :: elasticsearch.client
48
+ :noindex:
49
+
50
+ .. autoclass :: ConnectorClient
51
+ :members:
52
+
45
53
Enrich Policies
46
54
---------------
47
55
Original file line number Diff line number Diff line change 37
37
from .async_search import AsyncSearchClient
38
38
from .cat import CatClient
39
39
from .cluster import ClusterClient
40
+ from .connector import ConnectorClient
40
41
from .enrich import EnrichClient
41
42
from .eql import EqlClient
42
43
from .esql import EsqlClient
@@ -279,6 +280,7 @@ def __init__(
279
280
# namespaced clients for compatibility with API names
280
281
self .async_search = AsyncSearchClient (self )
281
282
self .cat = CatClient (self )
283
+ self .connector = ConnectorClient (self )
282
284
self .cluster = ClusterClient (self )
283
285
self .indices = IndicesClient (self )
284
286
self .inference = InferenceClient (self )
You can’t perform that action at this time.
0 commit comments