Skip to content

Commit ceec61a

Browse files
authored
Add Connector API (#78)
1 parent 0536195 commit ceec61a

File tree

6 files changed

+2670
-0
lines changed

6 files changed

+2670
-0
lines changed

docs/sphinx/api.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
4553
Enrich Policies
4654
---------------
4755

elasticsearch_serverless/_async/client/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
from .async_search import AsyncSearchClient
3838
from .cat import CatClient
3939
from .cluster import ClusterClient
40+
from .connector import ConnectorClient
4041
from .enrich import EnrichClient
4142
from .eql import EqlClient
4243
from .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)

0 commit comments

Comments
 (0)