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 @@ -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 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 7575from .snapshot import SnapshotClient
7676from .sql import SqlClient
7777from .ssl import SslClient
78+ from .streams import StreamsClient
7879from .synonyms import SynonymsClient
7980from .tasks import TasksClient
8081from .text_structure import TextStructureClient
@@ -470,6 +471,7 @@ def __init__(
470471 self .shutdown = ShutdownClient (self )
471472 self .sql = SqlClient (self )
472473 self .ssl = SslClient (self )
474+ self .streams = StreamsClient (self )
473475 self .synonyms = SynonymsClient (self )
474476 self .text_structure = TextStructureClient (self )
475477 self .transform = TransformClient (self )
Original file line number Diff line number Diff line change 7575from .snapshot import SnapshotClient
7676from .sql import SqlClient
7777from .ssl import SslClient
78+ from .streams import StreamsClient
7879from .synonyms import SynonymsClient
7980from .tasks import TasksClient
8081from .text_structure import TextStructureClient
@@ -470,6 +471,7 @@ def __init__(
470471 self .shutdown = ShutdownClient (self )
471472 self .sql = SqlClient (self )
472473 self .ssl = SslClient (self )
474+ self .streams = StreamsClient (self )
473475 self .synonyms = SynonymsClient (self )
474476 self .text_structure = TextStructureClient (self )
475477 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