|
34 | 34 | from .resources import ( |
35 | 35 | apps, |
36 | 36 | auth, |
37 | | - agents, |
38 | 37 | proxies, |
39 | 38 | browsers, |
40 | 39 | profiles, |
|
53 | 52 | from .resources.credentials import CredentialsResource, AsyncCredentialsResource |
54 | 53 | from .resources.deployments import DeploymentsResource, AsyncDeploymentsResource |
55 | 54 | from .resources.invocations import InvocationsResource, AsyncInvocationsResource |
56 | | - from .resources.agents.agents import AgentsResource, AsyncAgentsResource |
57 | 55 | from .resources.browser_pools import BrowserPoolsResource, AsyncBrowserPoolsResource |
58 | 56 | from .resources.browsers.browsers import BrowsersResource, AsyncBrowsersResource |
59 | 57 | from .resources.credential_providers import CredentialProvidersResource, AsyncCredentialProvidersResource |
@@ -209,12 +207,6 @@ def browser_pools(self) -> BrowserPoolsResource: |
209 | 207 |
|
210 | 208 | return BrowserPoolsResource(self) |
211 | 209 |
|
212 | | - @cached_property |
213 | | - def agents(self) -> AgentsResource: |
214 | | - from .resources.agents import AgentsResource |
215 | | - |
216 | | - return AgentsResource(self) |
217 | | - |
218 | 210 | @cached_property |
219 | 211 | def credentials(self) -> CredentialsResource: |
220 | 212 | from .resources.credentials import CredentialsResource |
@@ -475,12 +467,6 @@ def browser_pools(self) -> AsyncBrowserPoolsResource: |
475 | 467 |
|
476 | 468 | return AsyncBrowserPoolsResource(self) |
477 | 469 |
|
478 | | - @cached_property |
479 | | - def agents(self) -> AsyncAgentsResource: |
480 | | - from .resources.agents import AsyncAgentsResource |
481 | | - |
482 | | - return AsyncAgentsResource(self) |
483 | | - |
484 | 470 | @cached_property |
485 | 471 | def credentials(self) -> AsyncCredentialsResource: |
486 | 472 | from .resources.credentials import AsyncCredentialsResource |
@@ -668,12 +654,6 @@ def browser_pools(self) -> browser_pools.BrowserPoolsResourceWithRawResponse: |
668 | 654 |
|
669 | 655 | return BrowserPoolsResourceWithRawResponse(self._client.browser_pools) |
670 | 656 |
|
671 | | - @cached_property |
672 | | - def agents(self) -> agents.AgentsResourceWithRawResponse: |
673 | | - from .resources.agents import AgentsResourceWithRawResponse |
674 | | - |
675 | | - return AgentsResourceWithRawResponse(self._client.agents) |
676 | | - |
677 | 657 | @cached_property |
678 | 658 | def credentials(self) -> credentials.CredentialsResourceWithRawResponse: |
679 | 659 | from .resources.credentials import CredentialsResourceWithRawResponse |
@@ -747,12 +727,6 @@ def browser_pools(self) -> browser_pools.AsyncBrowserPoolsResourceWithRawRespons |
747 | 727 |
|
748 | 728 | return AsyncBrowserPoolsResourceWithRawResponse(self._client.browser_pools) |
749 | 729 |
|
750 | | - @cached_property |
751 | | - def agents(self) -> agents.AsyncAgentsResourceWithRawResponse: |
752 | | - from .resources.agents import AsyncAgentsResourceWithRawResponse |
753 | | - |
754 | | - return AsyncAgentsResourceWithRawResponse(self._client.agents) |
755 | | - |
756 | 730 | @cached_property |
757 | 731 | def credentials(self) -> credentials.AsyncCredentialsResourceWithRawResponse: |
758 | 732 | from .resources.credentials import AsyncCredentialsResourceWithRawResponse |
@@ -826,12 +800,6 @@ def browser_pools(self) -> browser_pools.BrowserPoolsResourceWithStreamingRespon |
826 | 800 |
|
827 | 801 | return BrowserPoolsResourceWithStreamingResponse(self._client.browser_pools) |
828 | 802 |
|
829 | | - @cached_property |
830 | | - def agents(self) -> agents.AgentsResourceWithStreamingResponse: |
831 | | - from .resources.agents import AgentsResourceWithStreamingResponse |
832 | | - |
833 | | - return AgentsResourceWithStreamingResponse(self._client.agents) |
834 | | - |
835 | 803 | @cached_property |
836 | 804 | def credentials(self) -> credentials.CredentialsResourceWithStreamingResponse: |
837 | 805 | from .resources.credentials import CredentialsResourceWithStreamingResponse |
@@ -905,12 +873,6 @@ def browser_pools(self) -> browser_pools.AsyncBrowserPoolsResourceWithStreamingR |
905 | 873 |
|
906 | 874 | return AsyncBrowserPoolsResourceWithStreamingResponse(self._client.browser_pools) |
907 | 875 |
|
908 | | - @cached_property |
909 | | - def agents(self) -> agents.AsyncAgentsResourceWithStreamingResponse: |
910 | | - from .resources.agents import AsyncAgentsResourceWithStreamingResponse |
911 | | - |
912 | | - return AsyncAgentsResourceWithStreamingResponse(self._client.agents) |
913 | | - |
914 | 876 | @cached_property |
915 | 877 | def credentials(self) -> credentials.AsyncCredentialsResourceWithStreamingResponse: |
916 | 878 | from .resources.credentials import AsyncCredentialsResourceWithStreamingResponse |
|
0 commit comments