6363from .ml import MlClient
6464from .monitoring import MonitoringClient
6565from .nodes import NodesClient
66+ from .project import ProjectClient
6667from .query_rules import QueryRulesClient
6768from .rollup import RollupClient
6869from .search_application import SearchApplicationClient
7475from .snapshot import SnapshotClient
7576from .sql import SqlClient
7677from .ssl import SslClient
78+ from .streams import StreamsClient
7779from .synonyms import SynonymsClient
7880from .tasks import TasksClient
7981from .text_structure import TextStructureClient
@@ -368,6 +370,7 @@ def __init__(
368370 self .migration = MigrationClient (self )
369371 self .ml = MlClient (self )
370372 self .monitoring = MonitoringClient (self )
373+ self .project = ProjectClient (self )
371374 self .query_rules = QueryRulesClient (self )
372375 self .rollup = RollupClient (self )
373376 self .search_application = SearchApplicationClient (self )
@@ -378,6 +381,7 @@ def __init__(
378381 self .shutdown = ShutdownClient (self )
379382 self .sql = SqlClient (self )
380383 self .ssl = SslClient (self )
384+ self .streams = StreamsClient (self )
381385 self .synonyms = SynonymsClient (self )
382386 self .text_structure = TextStructureClient (self )
383387 self .transform = TransformClient (self )
0 commit comments