Skip to content

[Backport 8.15] Add Connector API #2623

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/sphinx/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ arguments are required for all calls.
api/cat
api/ccr
api/cluster
api/connector
api/dangling-indices
api/enrich-policies
api/eql
Expand Down
9 changes: 9 additions & 0 deletions docs/sphinx/api/connector.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.. _connector:

Connector
---------
.. py:module:: elasticsearch.client
:noindex:

.. autoclass:: ConnectorClient
:members:
2 changes: 2 additions & 0 deletions elasticsearch/_async/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
from .cat import CatClient
from .ccr import CcrClient
from .cluster import ClusterClient
from .connector import ConnectorClient
from .dangling_indices import DanglingIndicesClient
from .enrich import EnrichClient
from .eql import EqlClient
Expand Down Expand Up @@ -433,6 +434,7 @@ def __init__(
self.autoscaling = AutoscalingClient(self)
self.cat = CatClient(self)
self.cluster = ClusterClient(self)
self.connector = ConnectorClient(self)
self.fleet = FleetClient(self)
self.features = FeaturesClient(self)
self.indices = IndicesClient(self)
Expand Down
Loading
Loading