File tree Expand file tree Collapse file tree 5 files changed +35
-2
lines changed
Expand file tree Collapse file tree 5 files changed +35
-2
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ arguments are required for all calls.
5151 api/snapshots
5252 api/snapshottable-features
5353 api/sql
54+ api/streams
5455 api/synonyms
5556 api/tls-ssl
5657 api/tasks
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
@@ -380,6 +381,7 @@ def __init__(
380381 self .shutdown = ShutdownClient (self )
381382 self .sql = SqlClient (self )
382383 self .ssl = SslClient (self )
384+ self .streams = StreamsClient (self )
383385 self .synonyms = SynonymsClient (self )
384386 self .text_structure = TextStructureClient (self )
385387 self .transform = TransformClient (self )
Original file line number Diff line number Diff line change 1515# specific language governing permissions and limitations
1616# under the License.
1717
18- class C :
18+ import typing as t
19+
20+ from elastic_transport import ObjectApiResponse , TextApiResponse
21+
22+ from ._base import NamespacedClient
23+ from .utils import (
24+ SKIP_IN_PATH ,
25+ Stability ,
26+ _availability_warning ,
27+ _quote ,
28+ _rewrite_parameters ,
29+ )
30+
31+
32+ class StreamsClient (NamespacedClient ):
1933
2034 @_rewrite_parameters ()
2135 @_availability_warning (Stability .EXPERIMENTAL )
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
@@ -380,6 +381,7 @@ def __init__(
380381 self .shutdown = ShutdownClient (self )
381382 self .sql = SqlClient (self )
382383 self .ssl = SslClient (self )
384+ self .streams = StreamsClient (self )
383385 self .synonyms = SynonymsClient (self )
384386 self .text_structure = TextStructureClient (self )
385387 self .transform = TransformClient (self )
Original file line number Diff line number Diff line change 1515# specific language governing permissions and limitations
1616# under the License.
1717
18- class C :
18+ import typing as t
19+
20+ from elastic_transport import ObjectApiResponse , TextApiResponse
21+
22+ from ._base import NamespacedClient
23+ from .utils import (
24+ SKIP_IN_PATH ,
25+ Stability ,
26+ _availability_warning ,
27+ _quote ,
28+ _rewrite_parameters ,
29+ )
30+
31+
32+ class StreamsClient (NamespacedClient ):
1933
2034 @_rewrite_parameters ()
2135 @_availability_warning (Stability .EXPERIMENTAL )
You can’t perform that action at this time.
0 commit comments