|
93 | 93 | dns_firewall, |
94 | 94 | healthchecks, |
95 | 95 | security_txt, |
96 | | - abuse_reports, |
97 | 96 | email_routing, |
98 | 97 | magic_transit, |
99 | 98 | organizations, |
|
162 | 161 | from .resources.zones.zones import ZonesResource, AsyncZonesResource |
163 | 162 | from .resources.custom_pages import CustomPagesResource, AsyncCustomPagesResource |
164 | 163 | from .resources.security_txt import SecurityTXTResource, AsyncSecurityTXTResource |
165 | | - from .resources.abuse_reports import AbuseReportsResource, AsyncAbuseReportsResource |
166 | 164 | from .resources.images.images import ImagesResource, AsyncImagesResource |
167 | 165 | from .resources.queues.queues import QueuesResource, AsyncQueuesResource |
168 | 166 | from .resources.stream.stream import StreamResource, AsyncStreamResource |
@@ -873,12 +871,6 @@ def content_scanning(self) -> ContentScanningResource: |
873 | 871 |
|
874 | 872 | return ContentScanningResource(self) |
875 | 873 |
|
876 | | - @cached_property |
877 | | - def abuse_reports(self) -> AbuseReportsResource: |
878 | | - from .resources.abuse_reports import AbuseReportsResource |
879 | | - |
880 | | - return AbuseReportsResource(self) |
881 | | - |
882 | 874 | @cached_property |
883 | 875 | def ai(self) -> AIResource: |
884 | 876 | from .resources.ai import AIResource |
@@ -1711,12 +1703,6 @@ def content_scanning(self) -> AsyncContentScanningResource: |
1711 | 1703 |
|
1712 | 1704 | return AsyncContentScanningResource(self) |
1713 | 1705 |
|
1714 | | - @cached_property |
1715 | | - def abuse_reports(self) -> AsyncAbuseReportsResource: |
1716 | | - from .resources.abuse_reports import AsyncAbuseReportsResource |
1717 | | - |
1718 | | - return AsyncAbuseReportsResource(self) |
1719 | | - |
1720 | 1706 | @cached_property |
1721 | 1707 | def ai(self) -> AsyncAIResource: |
1722 | 1708 | from .resources.ai import AsyncAIResource |
@@ -2479,12 +2465,6 @@ def content_scanning(self) -> content_scanning.ContentScanningResourceWithRawRes |
2479 | 2465 |
|
2480 | 2466 | return ContentScanningResourceWithRawResponse(self._client.content_scanning) |
2481 | 2467 |
|
2482 | | - @cached_property |
2483 | | - def abuse_reports(self) -> abuse_reports.AbuseReportsResourceWithRawResponse: |
2484 | | - from .resources.abuse_reports import AbuseReportsResourceWithRawResponse |
2485 | | - |
2486 | | - return AbuseReportsResourceWithRawResponse(self._client.abuse_reports) |
2487 | | - |
2488 | 2468 | @cached_property |
2489 | 2469 | def ai(self) -> ai.AIResourceWithRawResponse: |
2490 | 2470 | from .resources.ai import AIResourceWithRawResponse |
@@ -3064,12 +3044,6 @@ def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithR |
3064 | 3044 |
|
3065 | 3045 | return AsyncContentScanningResourceWithRawResponse(self._client.content_scanning) |
3066 | 3046 |
|
3067 | | - @cached_property |
3068 | | - def abuse_reports(self) -> abuse_reports.AsyncAbuseReportsResourceWithRawResponse: |
3069 | | - from .resources.abuse_reports import AsyncAbuseReportsResourceWithRawResponse |
3070 | | - |
3071 | | - return AsyncAbuseReportsResourceWithRawResponse(self._client.abuse_reports) |
3072 | | - |
3073 | 3047 | @cached_property |
3074 | 3048 | def ai(self) -> ai.AsyncAIResourceWithRawResponse: |
3075 | 3049 | from .resources.ai import AsyncAIResourceWithRawResponse |
@@ -3649,12 +3623,6 @@ def content_scanning(self) -> content_scanning.ContentScanningResourceWithStream |
3649 | 3623 |
|
3650 | 3624 | return ContentScanningResourceWithStreamingResponse(self._client.content_scanning) |
3651 | 3625 |
|
3652 | | - @cached_property |
3653 | | - def abuse_reports(self) -> abuse_reports.AbuseReportsResourceWithStreamingResponse: |
3654 | | - from .resources.abuse_reports import AbuseReportsResourceWithStreamingResponse |
3655 | | - |
3656 | | - return AbuseReportsResourceWithStreamingResponse(self._client.abuse_reports) |
3657 | | - |
3658 | 3626 | @cached_property |
3659 | 3627 | def ai(self) -> ai.AIResourceWithStreamingResponse: |
3660 | 3628 | from .resources.ai import AIResourceWithStreamingResponse |
@@ -4244,12 +4212,6 @@ def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithS |
4244 | 4212 |
|
4245 | 4213 | return AsyncContentScanningResourceWithStreamingResponse(self._client.content_scanning) |
4246 | 4214 |
|
4247 | | - @cached_property |
4248 | | - def abuse_reports(self) -> abuse_reports.AsyncAbuseReportsResourceWithStreamingResponse: |
4249 | | - from .resources.abuse_reports import AsyncAbuseReportsResourceWithStreamingResponse |
4250 | | - |
4251 | | - return AsyncAbuseReportsResourceWithStreamingResponse(self._client.abuse_reports) |
4252 | | - |
4253 | 4215 | @cached_property |
4254 | 4216 | def ai(self) -> ai.AsyncAIResourceWithStreamingResponse: |
4255 | 4217 | from .resources.ai import AsyncAIResourceWithStreamingResponse |
|
0 commit comments