|
108 | 108 | request_tracers, |
109 | 109 | security_center, |
110 | 110 | brand_protection, |
| 111 | + content_scanning, |
111 | 112 | custom_hostnames, |
112 | 113 | resource_sharing, |
113 | 114 | browser_rendering, |
|
208 | 209 | from .resources.request_tracers.request_tracers import RequestTracersResource, AsyncRequestTracersResource |
209 | 210 | from .resources.security_center.security_center import SecurityCenterResource, AsyncSecurityCenterResource |
210 | 211 | from .resources.brand_protection.brand_protection import BrandProtectionResource, AsyncBrandProtectionResource |
| 212 | + from .resources.content_scanning.content_scanning import ContentScanningResource, AsyncContentScanningResource |
211 | 213 | from .resources.custom_hostnames.custom_hostnames import CustomHostnamesResource, AsyncCustomHostnamesResource |
212 | 214 | from .resources.resource_sharing.resource_sharing import ResourceSharingResource, AsyncResourceSharingResource |
213 | 215 | from .resources.browser_rendering.browser_rendering import BrowserRenderingResource, AsyncBrowserRenderingResource |
@@ -846,6 +848,12 @@ def leaked_credential_checks(self) -> LeakedCredentialChecksResource: |
846 | 848 |
|
847 | 849 | return LeakedCredentialChecksResource(self) |
848 | 850 |
|
| 851 | + @cached_property |
| 852 | + def content_scanning(self) -> ContentScanningResource: |
| 853 | + from .resources.content_scanning import ContentScanningResource |
| 854 | + |
| 855 | + return ContentScanningResource(self) |
| 856 | + |
849 | 857 | @cached_property |
850 | 858 | def abuse_reports(self) -> AbuseReportsResource: |
851 | 859 | from .resources.abuse_reports import AbuseReportsResource |
@@ -1666,6 +1674,12 @@ def leaked_credential_checks(self) -> AsyncLeakedCredentialChecksResource: |
1666 | 1674 |
|
1667 | 1675 | return AsyncLeakedCredentialChecksResource(self) |
1668 | 1676 |
|
| 1677 | + @cached_property |
| 1678 | + def content_scanning(self) -> AsyncContentScanningResource: |
| 1679 | + from .resources.content_scanning import AsyncContentScanningResource |
| 1680 | + |
| 1681 | + return AsyncContentScanningResource(self) |
| 1682 | + |
1669 | 1683 | @cached_property |
1670 | 1684 | def abuse_reports(self) -> AsyncAbuseReportsResource: |
1671 | 1685 | from .resources.abuse_reports import AsyncAbuseReportsResource |
@@ -2414,6 +2428,12 @@ def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialC |
2414 | 2428 |
|
2415 | 2429 | return LeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
2416 | 2430 |
|
| 2431 | + @cached_property |
| 2432 | + def content_scanning(self) -> content_scanning.ContentScanningResourceWithRawResponse: |
| 2433 | + from .resources.content_scanning import ContentScanningResourceWithRawResponse |
| 2434 | + |
| 2435 | + return ContentScanningResourceWithRawResponse(self._client.content_scanning) |
| 2436 | + |
2417 | 2437 | @cached_property |
2418 | 2438 | def abuse_reports(self) -> abuse_reports.AbuseReportsResourceWithRawResponse: |
2419 | 2439 | from .resources.abuse_reports import AbuseReportsResourceWithRawResponse |
@@ -2979,6 +2999,12 @@ def leaked_credential_checks(self) -> leaked_credential_checks.AsyncLeakedCreden |
2979 | 2999 |
|
2980 | 3000 | return AsyncLeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
2981 | 3001 |
|
| 3002 | + @cached_property |
| 3003 | + def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithRawResponse: |
| 3004 | + from .resources.content_scanning import AsyncContentScanningResourceWithRawResponse |
| 3005 | + |
| 3006 | + return AsyncContentScanningResourceWithRawResponse(self._client.content_scanning) |
| 3007 | + |
2982 | 3008 | @cached_property |
2983 | 3009 | def abuse_reports(self) -> abuse_reports.AsyncAbuseReportsResourceWithRawResponse: |
2984 | 3010 | from .resources.abuse_reports import AsyncAbuseReportsResourceWithRawResponse |
@@ -3544,6 +3570,12 @@ def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialC |
3544 | 3570 |
|
3545 | 3571 | return LeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
3546 | 3572 |
|
| 3573 | + @cached_property |
| 3574 | + def content_scanning(self) -> content_scanning.ContentScanningResourceWithStreamingResponse: |
| 3575 | + from .resources.content_scanning import ContentScanningResourceWithStreamingResponse |
| 3576 | + |
| 3577 | + return ContentScanningResourceWithStreamingResponse(self._client.content_scanning) |
| 3578 | + |
3547 | 3579 | @cached_property |
3548 | 3580 | def abuse_reports(self) -> abuse_reports.AbuseReportsResourceWithStreamingResponse: |
3549 | 3581 | from .resources.abuse_reports import AbuseReportsResourceWithStreamingResponse |
@@ -4115,6 +4147,12 @@ def leaked_credential_checks( |
4115 | 4147 |
|
4116 | 4148 | return AsyncLeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
4117 | 4149 |
|
| 4150 | + @cached_property |
| 4151 | + def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithStreamingResponse: |
| 4152 | + from .resources.content_scanning import AsyncContentScanningResourceWithStreamingResponse |
| 4153 | + |
| 4154 | + return AsyncContentScanningResourceWithStreamingResponse(self._client.content_scanning) |
| 4155 | + |
4118 | 4156 | @cached_property |
4119 | 4157 | def abuse_reports(self) -> abuse_reports.AsyncAbuseReportsResourceWithStreamingResponse: |
4120 | 4158 | from .resources.abuse_reports import AsyncAbuseReportsResourceWithStreamingResponse |
|
0 commit comments