Skip to content

Commit e0e9fa1

Browse files
remove streams
1 parent 71d9f6b commit e0e9fa1

File tree

5 files changed

+0
-16
lines changed

5 files changed

+0
-16
lines changed

docs/sphinx/api/streams.rst

Lines changed: 0 additions & 9 deletions
This file was deleted.

docs/sphinx/es_api.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ arguments are required for all calls.
5151
api/snapshots
5252
api/snapshottable-features
5353
api/sql
54-
api/streams
5554
api/synonyms
5655
api/tls-ssl
5756
api/tasks

elasticsearch/_async/client/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
from .snapshot import SnapshotClient
7676
from .sql import SqlClient
7777
from .ssl import SslClient
78-
from .streams import StreamsClient
7978
from .synonyms import SynonymsClient
8079
from .tasks import TasksClient
8180
from .text_structure import TextStructureClient
@@ -381,7 +380,6 @@ def __init__(
381380
self.shutdown = ShutdownClient(self)
382381
self.sql = SqlClient(self)
383382
self.ssl = SslClient(self)
384-
self.streams = StreamsClient(self)
385383
self.synonyms = SynonymsClient(self)
386384
self.text_structure = TextStructureClient(self)
387385
self.transform = TransformClient(self)

elasticsearch/_sync/client/__init__.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
from .snapshot import SnapshotClient
7676
from .sql import SqlClient
7777
from .ssl import SslClient
78-
from .streams import StreamsClient
7978
from .synonyms import SynonymsClient
8079
from .tasks import TasksClient
8180
from .text_structure import TextStructureClient
@@ -381,7 +380,6 @@ def __init__(
381380
self.shutdown = ShutdownClient(self)
382381
self.sql = SqlClient(self)
383382
self.ssl = SslClient(self)
384-
self.streams = StreamsClient(self)
385383
self.synonyms = SynonymsClient(self)
386384
self.text_structure = TextStructureClient(self)
387385
self.transform = TransformClient(self)

elasticsearch/client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@
6363
from ._sync.client.snapshot import SnapshotClient as SnapshotClient # noqa: F401
6464
from ._sync.client.sql import SqlClient as SqlClient # noqa: F401
6565
from ._sync.client.ssl import SslClient as SslClient # noqa: F401
66-
from ._sync.client.streams import StreamsClient as StreamsClient # noqa: F401
6766
from ._sync.client.synonyms import SynonymsClient as SynonymsClient # noqa: F401
6867
from ._sync.client.tasks import TasksClient as TasksClient # noqa: F401
6968
from ._sync.client.text_structure import ( # noqa: F401
@@ -118,7 +117,6 @@
118117
"SnapshotClient",
119118
"SqlClient",
120119
"SslClient",
121-
"StreamsClient",
122120
"TasksClient",
123121
"TextStructureClient",
124122
"TransformClient",

0 commit comments

Comments
 (0)