|
62 | 62 | deployments, |
63 | 63 | invocations, |
64 | 64 | organization, |
65 | | - site_configs, |
66 | 65 | browser_pools, |
| 66 | + config_registry, |
67 | 67 | credential_providers, |
68 | 68 | ) |
69 | 69 | from .resources.apps import AppsResource, AsyncAppsResource |
|
75 | 75 | from .resources.credentials import CredentialsResource, AsyncCredentialsResource |
76 | 76 | from .resources.deployments import DeploymentsResource, AsyncDeploymentsResource |
77 | 77 | from .resources.invocations import InvocationsResource, AsyncInvocationsResource |
78 | | - from .resources.site_configs import SiteConfigsResource, AsyncSiteConfigsResource |
79 | 78 | from .resources.browser_pools import BrowserPoolsResource, AsyncBrowserPoolsResource |
80 | 79 | from .resources.browsers.browsers import BrowsersResource, AsyncBrowsersResource |
81 | 80 | from .resources.projects.projects import ProjectsResource, AsyncProjectsResource |
82 | 81 | from .resources.telemetry.telemetry import TelemetryResource, AsyncTelemetryResource |
83 | 82 | from .resources.credential_providers import CredentialProvidersResource, AsyncCredentialProvidersResource |
84 | 83 | from .resources.audit_logs.audit_logs import AuditLogsResource, AsyncAuditLogsResource |
85 | 84 | from .resources.organization.organization import OrganizationResource, AsyncOrganizationResource |
| 85 | + from .resources.config_registry.config_registry import ConfigRegistryResource, AsyncConfigRegistryResource |
86 | 86 |
|
87 | 87 | __all__ = [ |
88 | 88 | "ENVIRONMENTS", |
@@ -226,11 +226,11 @@ def invocations(self) -> InvocationsResource: |
226 | 226 | return InvocationsResource(self) |
227 | 227 |
|
228 | 228 | @cached_property |
229 | | - def site_configs(self) -> SiteConfigsResource: |
| 229 | + def config_registry(self) -> ConfigRegistryResource: |
230 | 230 | """Resolve browser and proxy recommendations for bot-protected sites.""" |
231 | | - from .resources.site_configs import SiteConfigsResource |
| 231 | + from .resources.config_registry import ConfigRegistryResource |
232 | 232 |
|
233 | | - return SiteConfigsResource(self) |
| 233 | + return ConfigRegistryResource(self) |
234 | 234 |
|
235 | 235 | @cached_property |
236 | 236 | def browsers(self) -> BrowsersResource: |
@@ -609,11 +609,11 @@ def invocations(self) -> AsyncInvocationsResource: |
609 | 609 | return AsyncInvocationsResource(self) |
610 | 610 |
|
611 | 611 | @cached_property |
612 | | - def site_configs(self) -> AsyncSiteConfigsResource: |
| 612 | + def config_registry(self) -> AsyncConfigRegistryResource: |
613 | 613 | """Resolve browser and proxy recommendations for bot-protected sites.""" |
614 | | - from .resources.site_configs import AsyncSiteConfigsResource |
| 614 | + from .resources.config_registry import AsyncConfigRegistryResource |
615 | 615 |
|
616 | | - return AsyncSiteConfigsResource(self) |
| 616 | + return AsyncConfigRegistryResource(self) |
617 | 617 |
|
618 | 618 | @cached_property |
619 | 619 | def browsers(self) -> AsyncBrowsersResource: |
@@ -896,11 +896,11 @@ def invocations(self) -> invocations.InvocationsResourceWithRawResponse: |
896 | 896 | return InvocationsResourceWithRawResponse(self._client.invocations) |
897 | 897 |
|
898 | 898 | @cached_property |
899 | | - def site_configs(self) -> site_configs.SiteConfigsResourceWithRawResponse: |
| 899 | + def config_registry(self) -> config_registry.ConfigRegistryResourceWithRawResponse: |
900 | 900 | """Resolve browser and proxy recommendations for bot-protected sites.""" |
901 | | - from .resources.site_configs import SiteConfigsResourceWithRawResponse |
| 901 | + from .resources.config_registry import ConfigRegistryResourceWithRawResponse |
902 | 902 |
|
903 | | - return SiteConfigsResourceWithRawResponse(self._client.site_configs) |
| 903 | + return ConfigRegistryResourceWithRawResponse(self._client.config_registry) |
904 | 904 |
|
905 | 905 | @cached_property |
906 | 906 | def browsers(self) -> browsers.BrowsersResourceWithRawResponse: |
@@ -1023,11 +1023,11 @@ def invocations(self) -> invocations.AsyncInvocationsResourceWithRawResponse: |
1023 | 1023 | return AsyncInvocationsResourceWithRawResponse(self._client.invocations) |
1024 | 1024 |
|
1025 | 1025 | @cached_property |
1026 | | - def site_configs(self) -> site_configs.AsyncSiteConfigsResourceWithRawResponse: |
| 1026 | + def config_registry(self) -> config_registry.AsyncConfigRegistryResourceWithRawResponse: |
1027 | 1027 | """Resolve browser and proxy recommendations for bot-protected sites.""" |
1028 | | - from .resources.site_configs import AsyncSiteConfigsResourceWithRawResponse |
| 1028 | + from .resources.config_registry import AsyncConfigRegistryResourceWithRawResponse |
1029 | 1029 |
|
1030 | | - return AsyncSiteConfigsResourceWithRawResponse(self._client.site_configs) |
| 1030 | + return AsyncConfigRegistryResourceWithRawResponse(self._client.config_registry) |
1031 | 1031 |
|
1032 | 1032 | @cached_property |
1033 | 1033 | def browsers(self) -> browsers.AsyncBrowsersResourceWithRawResponse: |
@@ -1150,11 +1150,11 @@ def invocations(self) -> invocations.InvocationsResourceWithStreamingResponse: |
1150 | 1150 | return InvocationsResourceWithStreamingResponse(self._client.invocations) |
1151 | 1151 |
|
1152 | 1152 | @cached_property |
1153 | | - def site_configs(self) -> site_configs.SiteConfigsResourceWithStreamingResponse: |
| 1153 | + def config_registry(self) -> config_registry.ConfigRegistryResourceWithStreamingResponse: |
1154 | 1154 | """Resolve browser and proxy recommendations for bot-protected sites.""" |
1155 | | - from .resources.site_configs import SiteConfigsResourceWithStreamingResponse |
| 1155 | + from .resources.config_registry import ConfigRegistryResourceWithStreamingResponse |
1156 | 1156 |
|
1157 | | - return SiteConfigsResourceWithStreamingResponse(self._client.site_configs) |
| 1157 | + return ConfigRegistryResourceWithStreamingResponse(self._client.config_registry) |
1158 | 1158 |
|
1159 | 1159 | @cached_property |
1160 | 1160 | def browsers(self) -> browsers.BrowsersResourceWithStreamingResponse: |
@@ -1277,11 +1277,11 @@ def invocations(self) -> invocations.AsyncInvocationsResourceWithStreamingRespon |
1277 | 1277 | return AsyncInvocationsResourceWithStreamingResponse(self._client.invocations) |
1278 | 1278 |
|
1279 | 1279 | @cached_property |
1280 | | - def site_configs(self) -> site_configs.AsyncSiteConfigsResourceWithStreamingResponse: |
| 1280 | + def config_registry(self) -> config_registry.AsyncConfigRegistryResourceWithStreamingResponse: |
1281 | 1281 | """Resolve browser and proxy recommendations for bot-protected sites.""" |
1282 | | - from .resources.site_configs import AsyncSiteConfigsResourceWithStreamingResponse |
| 1282 | + from .resources.config_registry import AsyncConfigRegistryResourceWithStreamingResponse |
1283 | 1283 |
|
1284 | | - return AsyncSiteConfigsResourceWithStreamingResponse(self._client.site_configs) |
| 1284 | + return AsyncConfigRegistryResourceWithStreamingResponse(self._client.config_registry) |
1285 | 1285 |
|
1286 | 1286 | @cached_property |
1287 | 1287 | def browsers(self) -> browsers.AsyncBrowsersResourceWithStreamingResponse: |
|
0 commit comments