|
108 | 108 | request_tracers, |
109 | 109 | security_center, |
110 | 110 | brand_protection, |
111 | | - content_scanning, |
112 | 111 | custom_hostnames, |
113 | 112 | resource_sharing, |
114 | 113 | browser_rendering, |
|
126 | 125 | origin_ca_certificates, |
127 | 126 | origin_tls_client_auth, |
128 | 127 | certificate_authorities, |
| 128 | + leaked_credential_checks, |
129 | 129 | magic_network_monitoring, |
130 | 130 | origin_post_quantum_encryption, |
131 | 131 | ) |
|
213 | 213 | from .resources.request_tracers.request_tracers import RequestTracersResource, AsyncRequestTracersResource |
214 | 214 | from .resources.security_center.security_center import SecurityCenterResource, AsyncSecurityCenterResource |
215 | 215 | from .resources.brand_protection.brand_protection import BrandProtectionResource, AsyncBrandProtectionResource |
216 | | - from .resources.content_scanning.content_scanning import ContentScanningResource, AsyncContentScanningResource |
217 | 216 | from .resources.custom_hostnames.custom_hostnames import CustomHostnamesResource, AsyncCustomHostnamesResource |
218 | 217 | from .resources.resource_sharing.resource_sharing import ResourceSharingResource, AsyncResourceSharingResource |
219 | 218 | from .resources.browser_rendering.browser_rendering import BrowserRenderingResource, AsyncBrowserRenderingResource |
|
243 | 242 | CertificateAuthoritiesResource, |
244 | 243 | AsyncCertificateAuthoritiesResource, |
245 | 244 | ) |
| 245 | + from .resources.leaked_credential_checks.leaked_credential_checks import ( |
| 246 | + LeakedCredentialChecksResource, |
| 247 | + AsyncLeakedCredentialChecksResource, |
| 248 | + ) |
246 | 249 | from .resources.magic_network_monitoring.magic_network_monitoring import ( |
247 | 250 | MagicNetworkMonitoringResource, |
248 | 251 | AsyncMagicNetworkMonitoringResource, |
@@ -849,10 +852,10 @@ def resource_sharing(self) -> ResourceSharingResource: |
849 | 852 | return ResourceSharingResource(self) |
850 | 853 |
|
851 | 854 | @cached_property |
852 | | - def content_scanning(self) -> ContentScanningResource: |
853 | | - from .resources.content_scanning import ContentScanningResource |
| 855 | + def leaked_credential_checks(self) -> LeakedCredentialChecksResource: |
| 856 | + from .resources.leaked_credential_checks import LeakedCredentialChecksResource |
854 | 857 |
|
855 | | - return ContentScanningResource(self) |
| 858 | + return LeakedCredentialChecksResource(self) |
856 | 859 |
|
857 | 860 | @cached_property |
858 | 861 | def abuse_reports(self) -> AbuseReportsResource: |
@@ -1675,10 +1678,10 @@ def resource_sharing(self) -> AsyncResourceSharingResource: |
1675 | 1678 | return AsyncResourceSharingResource(self) |
1676 | 1679 |
|
1677 | 1680 | @cached_property |
1678 | | - def content_scanning(self) -> AsyncContentScanningResource: |
1679 | | - from .resources.content_scanning import AsyncContentScanningResource |
| 1681 | + def leaked_credential_checks(self) -> AsyncLeakedCredentialChecksResource: |
| 1682 | + from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResource |
1680 | 1683 |
|
1681 | | - return AsyncContentScanningResource(self) |
| 1684 | + return AsyncLeakedCredentialChecksResource(self) |
1682 | 1685 |
|
1683 | 1686 | @cached_property |
1684 | 1687 | def abuse_reports(self) -> AsyncAbuseReportsResource: |
@@ -2431,10 +2434,10 @@ def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithRawRes |
2431 | 2434 | return ResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
2432 | 2435 |
|
2433 | 2436 | @cached_property |
2434 | | - def content_scanning(self) -> content_scanning.ContentScanningResourceWithRawResponse: |
2435 | | - from .resources.content_scanning import ContentScanningResourceWithRawResponse |
| 2437 | + def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialChecksResourceWithRawResponse: |
| 2438 | + from .resources.leaked_credential_checks import LeakedCredentialChecksResourceWithRawResponse |
2436 | 2439 |
|
2437 | | - return ContentScanningResourceWithRawResponse(self._client.content_scanning) |
| 2440 | + return LeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
2438 | 2441 |
|
2439 | 2442 | @cached_property |
2440 | 2443 | def abuse_reports(self) -> abuse_reports.AbuseReportsResourceWithRawResponse: |
@@ -3004,10 +3007,10 @@ def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithR |
3004 | 3007 | return AsyncResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
3005 | 3008 |
|
3006 | 3009 | @cached_property |
3007 | | - def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithRawResponse: |
3008 | | - from .resources.content_scanning import AsyncContentScanningResourceWithRawResponse |
| 3010 | + def leaked_credential_checks(self) -> leaked_credential_checks.AsyncLeakedCredentialChecksResourceWithRawResponse: |
| 3011 | + from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResourceWithRawResponse |
3009 | 3012 |
|
3010 | | - return AsyncContentScanningResourceWithRawResponse(self._client.content_scanning) |
| 3013 | + return AsyncLeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
3011 | 3014 |
|
3012 | 3015 | @cached_property |
3013 | 3016 | def abuse_reports(self) -> abuse_reports.AsyncAbuseReportsResourceWithRawResponse: |
@@ -3577,10 +3580,10 @@ def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithStream |
3577 | 3580 | return ResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
3578 | 3581 |
|
3579 | 3582 | @cached_property |
3580 | | - def content_scanning(self) -> content_scanning.ContentScanningResourceWithStreamingResponse: |
3581 | | - from .resources.content_scanning import ContentScanningResourceWithStreamingResponse |
| 3583 | + def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialChecksResourceWithStreamingResponse: |
| 3584 | + from .resources.leaked_credential_checks import LeakedCredentialChecksResourceWithStreamingResponse |
3582 | 3585 |
|
3583 | | - return ContentScanningResourceWithStreamingResponse(self._client.content_scanning) |
| 3586 | + return LeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
3584 | 3587 |
|
3585 | 3588 | @cached_property |
3586 | 3589 | def abuse_reports(self) -> abuse_reports.AbuseReportsResourceWithStreamingResponse: |
@@ -4158,10 +4161,12 @@ def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithS |
4158 | 4161 | return AsyncResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
4159 | 4162 |
|
4160 | 4163 | @cached_property |
4161 | | - def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithStreamingResponse: |
4162 | | - from .resources.content_scanning import AsyncContentScanningResourceWithStreamingResponse |
| 4164 | + def leaked_credential_checks( |
| 4165 | + self, |
| 4166 | + ) -> leaked_credential_checks.AsyncLeakedCredentialChecksResourceWithStreamingResponse: |
| 4167 | + from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResourceWithStreamingResponse |
4163 | 4168 |
|
4164 | | - return AsyncContentScanningResourceWithStreamingResponse(self._client.content_scanning) |
| 4169 | + return AsyncLeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
4165 | 4170 |
|
4166 | 4171 | @cached_property |
4167 | 4172 | def abuse_reports(self) -> abuse_reports.AsyncAbuseReportsResourceWithStreamingResponse: |
|
0 commit comments