|
54 | 54 | browsers, |
55 | 55 | profiles, |
56 | 56 | projects, |
| 57 | + telemetry, |
57 | 58 | audit_logs, |
58 | 59 | extensions, |
59 | 60 | credentials, |
|
75 | 76 | from .resources.browser_pools import BrowserPoolsResource, AsyncBrowserPoolsResource |
76 | 77 | from .resources.browsers.browsers import BrowsersResource, AsyncBrowsersResource |
77 | 78 | from .resources.projects.projects import ProjectsResource, AsyncProjectsResource |
| 79 | + from .resources.telemetry.telemetry import TelemetryResource, AsyncTelemetryResource |
78 | 80 | from .resources.credential_providers import CredentialProvidersResource, AsyncCredentialProvidersResource |
79 | 81 | from .resources.audit_logs.audit_logs import AuditLogsResource, AsyncAuditLogsResource |
80 | 82 | from .resources.organization.organization import OrganizationResource, AsyncOrganizationResource |
@@ -240,6 +242,12 @@ def auth(self) -> AuthResource: |
240 | 242 |
|
241 | 243 | return AuthResource(self) |
242 | 244 |
|
| 245 | + @cached_property |
| 246 | + def telemetry(self) -> TelemetryResource: |
| 247 | + from .resources.telemetry import TelemetryResource |
| 248 | + |
| 249 | + return TelemetryResource(self) |
| 250 | + |
243 | 251 | @cached_property |
244 | 252 | def proxies(self) -> ProxiesResource: |
245 | 253 | """Create and manage proxy configurations for routing browser traffic.""" |
@@ -603,6 +611,12 @@ def auth(self) -> AsyncAuthResource: |
603 | 611 |
|
604 | 612 | return AsyncAuthResource(self) |
605 | 613 |
|
| 614 | + @cached_property |
| 615 | + def telemetry(self) -> AsyncTelemetryResource: |
| 616 | + from .resources.telemetry import AsyncTelemetryResource |
| 617 | + |
| 618 | + return AsyncTelemetryResource(self) |
| 619 | + |
606 | 620 | @cached_property |
607 | 621 | def proxies(self) -> AsyncProxiesResource: |
608 | 622 | """Create and manage proxy configurations for routing browser traffic.""" |
@@ -870,6 +884,12 @@ def auth(self) -> auth.AuthResourceWithRawResponse: |
870 | 884 |
|
871 | 885 | return AuthResourceWithRawResponse(self._client.auth) |
872 | 886 |
|
| 887 | + @cached_property |
| 888 | + def telemetry(self) -> telemetry.TelemetryResourceWithRawResponse: |
| 889 | + from .resources.telemetry import TelemetryResourceWithRawResponse |
| 890 | + |
| 891 | + return TelemetryResourceWithRawResponse(self._client.telemetry) |
| 892 | + |
873 | 893 | @cached_property |
874 | 894 | def proxies(self) -> proxies.ProxiesResourceWithRawResponse: |
875 | 895 | """Create and manage proxy configurations for routing browser traffic.""" |
@@ -984,6 +1004,12 @@ def auth(self) -> auth.AsyncAuthResourceWithRawResponse: |
984 | 1004 |
|
985 | 1005 | return AsyncAuthResourceWithRawResponse(self._client.auth) |
986 | 1006 |
|
| 1007 | + @cached_property |
| 1008 | + def telemetry(self) -> telemetry.AsyncTelemetryResourceWithRawResponse: |
| 1009 | + from .resources.telemetry import AsyncTelemetryResourceWithRawResponse |
| 1010 | + |
| 1011 | + return AsyncTelemetryResourceWithRawResponse(self._client.telemetry) |
| 1012 | + |
987 | 1013 | @cached_property |
988 | 1014 | def proxies(self) -> proxies.AsyncProxiesResourceWithRawResponse: |
989 | 1015 | """Create and manage proxy configurations for routing browser traffic.""" |
@@ -1098,6 +1124,12 @@ def auth(self) -> auth.AuthResourceWithStreamingResponse: |
1098 | 1124 |
|
1099 | 1125 | return AuthResourceWithStreamingResponse(self._client.auth) |
1100 | 1126 |
|
| 1127 | + @cached_property |
| 1128 | + def telemetry(self) -> telemetry.TelemetryResourceWithStreamingResponse: |
| 1129 | + from .resources.telemetry import TelemetryResourceWithStreamingResponse |
| 1130 | + |
| 1131 | + return TelemetryResourceWithStreamingResponse(self._client.telemetry) |
| 1132 | + |
1101 | 1133 | @cached_property |
1102 | 1134 | def proxies(self) -> proxies.ProxiesResourceWithStreamingResponse: |
1103 | 1135 | """Create and manage proxy configurations for routing browser traffic.""" |
@@ -1212,6 +1244,12 @@ def auth(self) -> auth.AsyncAuthResourceWithStreamingResponse: |
1212 | 1244 |
|
1213 | 1245 | return AsyncAuthResourceWithStreamingResponse(self._client.auth) |
1214 | 1246 |
|
| 1247 | + @cached_property |
| 1248 | + def telemetry(self) -> telemetry.AsyncTelemetryResourceWithStreamingResponse: |
| 1249 | + from .resources.telemetry import AsyncTelemetryResourceWithStreamingResponse |
| 1250 | + |
| 1251 | + return AsyncTelemetryResourceWithStreamingResponse(self._client.telemetry) |
| 1252 | + |
1215 | 1253 | @cached_property |
1216 | 1254 | def proxies(self) -> proxies.AsyncProxiesResourceWithStreamingResponse: |
1217 | 1255 | """Create and manage proxy configurations for routing browser traffic.""" |
|
0 commit comments