|
92 | 92 | dns_firewall,
|
93 | 93 | healthchecks,
|
94 | 94 | security_txt,
|
95 |
| - abuse_reports, |
96 | 95 | email_routing,
|
97 | 96 | magic_transit,
|
98 | 97 | waiting_rooms,
|
|
151 | 150 | from .resources.speed.speed import SpeedResource, AsyncSpeedResource
|
152 | 151 | from .resources.zones.zones import ZonesResource, AsyncZonesResource
|
153 | 152 | from .resources.security_txt import SecurityTXTResource, AsyncSecurityTXTResource
|
154 |
| - from .resources.abuse_reports import AbuseReportsResource, AsyncAbuseReportsResource |
155 | 153 | from .resources.images.images import ImagesResource, AsyncImagesResource
|
156 | 154 | from .resources.queues.queues import QueuesResource, AsyncQueuesResource
|
157 | 155 | from .resources.stream.stream import StreamResource, AsyncStreamResource
|
@@ -820,12 +818,6 @@ def content_scanning(self) -> ContentScanningResource:
|
820 | 818 |
|
821 | 819 | return ContentScanningResource(self)
|
822 | 820 |
|
823 |
| - @cached_property |
824 |
| - def abuse_reports(self) -> AbuseReportsResource: |
825 |
| - from .resources.abuse_reports import AbuseReportsResource |
826 |
| - |
827 |
| - return AbuseReportsResource(self) |
828 |
| - |
829 | 821 | @cached_property
|
830 | 822 | def ai(self) -> AIResource:
|
831 | 823 | from .resources.ai import AIResource
|
@@ -1591,12 +1583,6 @@ def content_scanning(self) -> AsyncContentScanningResource:
|
1591 | 1583 |
|
1592 | 1584 | return AsyncContentScanningResource(self)
|
1593 | 1585 |
|
1594 |
| - @cached_property |
1595 |
| - def abuse_reports(self) -> AsyncAbuseReportsResource: |
1596 |
| - from .resources.abuse_reports import AsyncAbuseReportsResource |
1597 |
| - |
1598 |
| - return AsyncAbuseReportsResource(self) |
1599 |
| - |
1600 | 1586 | @cached_property
|
1601 | 1587 | def ai(self) -> AsyncAIResource:
|
1602 | 1588 | from .resources.ai import AsyncAIResource
|
@@ -2297,12 +2283,6 @@ def content_scanning(self) -> content_scanning.ContentScanningResourceWithRawRes
|
2297 | 2283 |
|
2298 | 2284 | return ContentScanningResourceWithRawResponse(self._client.content_scanning)
|
2299 | 2285 |
|
2300 |
| - @cached_property |
2301 |
| - def abuse_reports(self) -> abuse_reports.AbuseReportsResourceWithRawResponse: |
2302 |
| - from .resources.abuse_reports import AbuseReportsResourceWithRawResponse |
2303 |
| - |
2304 |
| - return AbuseReportsResourceWithRawResponse(self._client.abuse_reports) |
2305 |
| - |
2306 | 2286 | @cached_property
|
2307 | 2287 | def ai(self) -> ai.AIResourceWithRawResponse:
|
2308 | 2288 | from .resources.ai import AIResourceWithRawResponse
|
@@ -2822,12 +2802,6 @@ def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithR
|
2822 | 2802 |
|
2823 | 2803 | return AsyncContentScanningResourceWithRawResponse(self._client.content_scanning)
|
2824 | 2804 |
|
2825 |
| - @cached_property |
2826 |
| - def abuse_reports(self) -> abuse_reports.AsyncAbuseReportsResourceWithRawResponse: |
2827 |
| - from .resources.abuse_reports import AsyncAbuseReportsResourceWithRawResponse |
2828 |
| - |
2829 |
| - return AsyncAbuseReportsResourceWithRawResponse(self._client.abuse_reports) |
2830 |
| - |
2831 | 2805 | @cached_property
|
2832 | 2806 | def ai(self) -> ai.AsyncAIResourceWithRawResponse:
|
2833 | 2807 | from .resources.ai import AsyncAIResourceWithRawResponse
|
@@ -3347,12 +3321,6 @@ def content_scanning(self) -> content_scanning.ContentScanningResourceWithStream
|
3347 | 3321 |
|
3348 | 3322 | return ContentScanningResourceWithStreamingResponse(self._client.content_scanning)
|
3349 | 3323 |
|
3350 |
| - @cached_property |
3351 |
| - def abuse_reports(self) -> abuse_reports.AbuseReportsResourceWithStreamingResponse: |
3352 |
| - from .resources.abuse_reports import AbuseReportsResourceWithStreamingResponse |
3353 |
| - |
3354 |
| - return AbuseReportsResourceWithStreamingResponse(self._client.abuse_reports) |
3355 |
| - |
3356 | 3324 | @cached_property
|
3357 | 3325 | def ai(self) -> ai.AIResourceWithStreamingResponse:
|
3358 | 3326 | from .resources.ai import AIResourceWithStreamingResponse
|
@@ -3882,12 +3850,6 @@ def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithS
|
3882 | 3850 |
|
3883 | 3851 | return AsyncContentScanningResourceWithStreamingResponse(self._client.content_scanning)
|
3884 | 3852 |
|
3885 |
| - @cached_property |
3886 |
| - def abuse_reports(self) -> abuse_reports.AsyncAbuseReportsResourceWithStreamingResponse: |
3887 |
| - from .resources.abuse_reports import AsyncAbuseReportsResourceWithStreamingResponse |
3888 |
| - |
3889 |
| - return AsyncAbuseReportsResourceWithStreamingResponse(self._client.abuse_reports) |
3890 |
| - |
3891 | 3853 | @cached_property
|
3892 | 3854 | def ai(self) -> ai.AsyncAIResourceWithStreamingResponse:
|
3893 | 3855 | from .resources.ai import AsyncAIResourceWithStreamingResponse
|
|
0 commit comments