File tree Expand file tree Collapse file tree 7 files changed +2159
-0
lines changed Expand file tree Collapse file tree 7 files changed +2159
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ arguments are required for all calls.
21
21
api/cat
22
22
api/ccr
23
23
api/cluster
24
+ api/connector
24
25
api/dangling-indices
25
26
api/enrich-policies
26
27
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 46
46
from .cat import CatClient
47
47
from .ccr import CcrClient
48
48
from .cluster import ClusterClient
49
+ from .connector import ConnectorClient
49
50
from .dangling_indices import DanglingIndicesClient
50
51
from .enrich import EnrichClient
51
52
from .eql import EqlClient
@@ -433,6 +434,7 @@ def __init__(
433
434
self .autoscaling = AutoscalingClient (self )
434
435
self .cat = CatClient (self )
435
436
self .cluster = ClusterClient (self )
437
+ self .connector = ConnectorClient (self )
436
438
self .fleet = FleetClient (self )
437
439
self .features = FeaturesClient (self )
438
440
self .indices = IndicesClient (self )
You can’t perform that action at this time.
0 commit comments