File tree Expand file tree Collapse file tree 6 files changed +17
-1
lines changed
Expand file tree Collapse file tree 6 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 66 :no-index:
77
88.. autoclass :: IndicesClient
9- :members:
9+ :members:
Original file line number Diff line number Diff line change 1+ .. _streams :
2+
3+ Streams
4+ -------
5+ .. py :module :: elasticsearch.client
6+ :no-index:
7+
8+ .. autoclass :: StreamsClient
9+ :members:
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ arguments are required for all calls.
5050 api/snapshots
5151 api/snapshottable-features
5252 api/sql
53+ api/streams
5354 api/synonyms
5455 api/tls-ssl
5556 api/tasks
Original file line number Diff line number Diff line change 7474from .snapshot import SnapshotClient
7575from .sql import SqlClient
7676from .ssl import SslClient
77+ from .streams import StreamsClient
7778from .synonyms import SynonymsClient
7879from .tasks import TasksClient
7980from .text_structure import TextStructureClient
@@ -378,6 +379,7 @@ def __init__(
378379 self .shutdown = ShutdownClient (self )
379380 self .sql = SqlClient (self )
380381 self .ssl = SslClient (self )
382+ self .streams = StreamsClient (self )
381383 self .synonyms = SynonymsClient (self )
382384 self .text_structure = TextStructureClient (self )
383385 self .transform = TransformClient (self )
Original file line number Diff line number Diff line change 7474from .snapshot import SnapshotClient
7575from .sql import SqlClient
7676from .ssl import SslClient
77+ from .streams import StreamsClient
7778from .synonyms import SynonymsClient
7879from .tasks import TasksClient
7980from .text_structure import TextStructureClient
@@ -378,6 +379,7 @@ def __init__(
378379 self .shutdown = ShutdownClient (self )
379380 self .sql = SqlClient (self )
380381 self .ssl = SslClient (self )
382+ self .streams = StreamsClient (self )
381383 self .synonyms = SynonymsClient (self )
382384 self .text_structure = TextStructureClient (self )
383385 self .transform = TransformClient (self )
Original file line number Diff line number Diff line change 6262from ._sync .client .snapshot import SnapshotClient as SnapshotClient # noqa: F401
6363from ._sync .client .sql import SqlClient as SqlClient # noqa: F401
6464from ._sync .client .ssl import SslClient as SslClient # noqa: F401
65+ from ._sync .client .streams import StreamsClient as StreamsClient # noqa: F401
6566from ._sync .client .synonyms import SynonymsClient as SynonymsClient # noqa: F401
6667from ._sync .client .tasks import TasksClient as TasksClient # noqa: F401
6768from ._sync .client .text_structure import ( # noqa: F401
115116 "SnapshotClient" ,
116117 "SqlClient" ,
117118 "SslClient" ,
119+ "StreamsClient" ,
118120 "TasksClient" ,
119121 "TextStructureClient" ,
120122 "TransformClient" ,
You can’t perform that action at this time.
0 commit comments