88
99import httpx
1010
11+ from .findall import (
12+ FindallResource ,
13+ AsyncFindallResource ,
14+ FindallResourceWithRawResponse ,
15+ AsyncFindallResourceWithRawResponse ,
16+ FindallResourceWithStreamingResponse ,
17+ AsyncFindallResourceWithStreamingResponse ,
18+ )
1119from ..._types import Body , Omit , Query , Headers , NotGiven , SequenceNotStr , omit , not_given
1220from ..._utils import is_given , maybe_transform , strip_not_given , async_maybe_transform
1321from .task_run import (
@@ -55,6 +63,10 @@ def task_run(self) -> TaskRunResource:
5563 def task_group (self ) -> TaskGroupResource :
5664 return TaskGroupResource (self ._client )
5765
66+ @cached_property
67+ def findall (self ) -> FindallResource :
68+ return FindallResource (self ._client )
69+
5870 @cached_property
5971 def with_raw_response (self ) -> BetaResourceWithRawResponse :
6072 """
@@ -259,6 +271,10 @@ def task_run(self) -> AsyncTaskRunResource:
259271 def task_group (self ) -> AsyncTaskGroupResource :
260272 return AsyncTaskGroupResource (self ._client )
261273
274+ @cached_property
275+ def findall (self ) -> AsyncFindallResource :
276+ return AsyncFindallResource (self ._client )
277+
262278 @cached_property
263279 def with_raw_response (self ) -> AsyncBetaResourceWithRawResponse :
264280 """
@@ -473,6 +489,10 @@ def task_run(self) -> TaskRunResourceWithRawResponse:
473489 def task_group (self ) -> TaskGroupResourceWithRawResponse :
474490 return TaskGroupResourceWithRawResponse (self ._beta .task_group )
475491
492+ @cached_property
493+ def findall (self ) -> FindallResourceWithRawResponse :
494+ return FindallResourceWithRawResponse (self ._beta .findall )
495+
476496
477497class AsyncBetaResourceWithRawResponse :
478498 def __init__ (self , beta : AsyncBetaResource ) -> None :
@@ -493,6 +513,10 @@ def task_run(self) -> AsyncTaskRunResourceWithRawResponse:
493513 def task_group (self ) -> AsyncTaskGroupResourceWithRawResponse :
494514 return AsyncTaskGroupResourceWithRawResponse (self ._beta .task_group )
495515
516+ @cached_property
517+ def findall (self ) -> AsyncFindallResourceWithRawResponse :
518+ return AsyncFindallResourceWithRawResponse (self ._beta .findall )
519+
496520
497521class BetaResourceWithStreamingResponse :
498522 def __init__ (self , beta : BetaResource ) -> None :
@@ -513,6 +537,10 @@ def task_run(self) -> TaskRunResourceWithStreamingResponse:
513537 def task_group (self ) -> TaskGroupResourceWithStreamingResponse :
514538 return TaskGroupResourceWithStreamingResponse (self ._beta .task_group )
515539
540+ @cached_property
541+ def findall (self ) -> FindallResourceWithStreamingResponse :
542+ return FindallResourceWithStreamingResponse (self ._beta .findall )
543+
516544
517545class AsyncBetaResourceWithStreamingResponse :
518546 def __init__ (self , beta : AsyncBetaResource ) -> None :
@@ -532,3 +560,7 @@ def task_run(self) -> AsyncTaskRunResourceWithStreamingResponse:
532560 @cached_property
533561 def task_group (self ) -> AsyncTaskGroupResourceWithStreamingResponse :
534562 return AsyncTaskGroupResourceWithStreamingResponse (self ._beta .task_group )
563+
564+ @cached_property
565+ def findall (self ) -> AsyncFindallResourceWithStreamingResponse :
566+ return AsyncFindallResourceWithStreamingResponse (self ._beta .findall )
0 commit comments