File tree Expand file tree Collapse file tree 7 files changed +2955
-0
lines changed Expand file tree Collapse file tree 7 files changed +2955
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ arguments are required for all calls.
2121 api/cat
2222 api/ccr
2323 api/cluster
24+ api/connector
2425 api/dangling-indices
2526 api/enrich-policies
2627 api/eql
Original file line number Diff line number Diff line change 1+ .. _cluster :
2+
3+ Connector
4+ ---------
5+ .. py :module :: elasticsearch.client
6+ :noindex:
7+
8+ .. autoclass :: ConnectorClient
9+ :members:
Original file line number Diff line number Diff line change 4646from .cat import CatClient
4747from .ccr import CcrClient
4848from .cluster import ClusterClient
49+ from .connector import ConnectorClient
4950from .dangling_indices import DanglingIndicesClient
5051from .enrich import EnrichClient
5152from .eql import EqlClient
@@ -433,6 +434,7 @@ def __init__(
433434 self .autoscaling = AutoscalingClient (self )
434435 self .cat = CatClient (self )
435436 self .cluster = ClusterClient (self )
437+ self .connector = ConnectorClient (self )
436438 self .fleet = FleetClient (self )
437439 self .features = FeaturesClient (self )
438440 self .indices = IndicesClient (self )
You can’t perform that action at this time.
0 commit comments