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
4242.. autoclass :: ClusterClient
4343 :members:
4444
45+ Connector
46+ ---------
47+ .. py :module :: elasticsearch.client
48+ :noindex:
49+
50+ .. autoclass :: ConnectorClient
51+ :members:
52+
4553Enrich Policies
4654---------------
4755
Original file line number Diff line number Diff line change 3737from .async_search import AsyncSearchClient
3838from .cat import CatClient
3939from .cluster import ClusterClient
40+ from .connector import ConnectorClient
4041from .enrich import EnrichClient
4142from .eql import EqlClient
4243from .esql import EsqlClient
@@ -279,6 +280,7 @@ def __init__(
279280 # namespaced clients for compatibility with API names
280281 self .async_search = AsyncSearchClient (self )
281282 self .cat = CatClient (self )
283+ self .connector = ConnectorClient (self )
282284 self .cluster = ClusterClient (self )
283285 self .indices = IndicesClient (self )
284286 self .inference = InferenceClient (self )
You can’t perform that action at this time.
0 commit comments