|
94 | 94 | dns_firewall, |
95 | 95 | healthchecks, |
96 | 96 | security_txt, |
97 | | - abuse_reports, |
98 | 97 | email_routing, |
99 | 98 | magic_transit, |
100 | 99 | organizations, |
|
113 | 112 | content_scanning, |
114 | 113 | custom_hostnames, |
115 | 114 | resource_sharing, |
116 | | - token_validation, |
117 | 115 | browser_rendering, |
118 | 116 | mtls_certificates, |
119 | 117 | schema_validation, |
|
164 | 162 | from .resources.zones.zones import ZonesResource, AsyncZonesResource |
165 | 163 | from .resources.custom_pages import CustomPagesResource, AsyncCustomPagesResource |
166 | 164 | from .resources.security_txt import SecurityTXTResource, AsyncSecurityTXTResource |
167 | | - from .resources.abuse_reports import AbuseReportsResource, AsyncAbuseReportsResource |
168 | 165 | from .resources.images.images import ImagesResource, AsyncImagesResource |
169 | 166 | from .resources.queues.queues import QueuesResource, AsyncQueuesResource |
170 | 167 | from .resources.stream.stream import StreamResource, AsyncStreamResource |
|
222 | 219 | from .resources.content_scanning.content_scanning import ContentScanningResource, AsyncContentScanningResource |
223 | 220 | from .resources.custom_hostnames.custom_hostnames import CustomHostnamesResource, AsyncCustomHostnamesResource |
224 | 221 | from .resources.resource_sharing.resource_sharing import ResourceSharingResource, AsyncResourceSharingResource |
225 | | - from .resources.token_validation.token_validation import TokenValidationResource, AsyncTokenValidationResource |
226 | 222 | from .resources.browser_rendering.browser_rendering import BrowserRenderingResource, AsyncBrowserRenderingResource |
227 | 223 | from .resources.mtls_certificates.mtls_certificates import MTLSCertificatesResource, AsyncMTLSCertificatesResource |
228 | 224 | from .resources.schema_validation.schema_validation import SchemaValidationResource, AsyncSchemaValidationResource |
@@ -883,12 +879,6 @@ def content_scanning(self) -> ContentScanningResource: |
883 | 879 |
|
884 | 880 | return ContentScanningResource(self) |
885 | 881 |
|
886 | | - @cached_property |
887 | | - def abuse_reports(self) -> AbuseReportsResource: |
888 | | - from .resources.abuse_reports import AbuseReportsResource |
889 | | - |
890 | | - return AbuseReportsResource(self) |
891 | | - |
892 | 882 | @cached_property |
893 | 883 | def ai(self) -> AIResource: |
894 | 884 | from .resources.ai import AIResource |
@@ -931,12 +921,6 @@ def schema_validation(self) -> SchemaValidationResource: |
931 | 921 |
|
932 | 922 | return SchemaValidationResource(self) |
933 | 923 |
|
934 | | - @cached_property |
935 | | - def token_validation(self) -> TokenValidationResource: |
936 | | - from .resources.token_validation import TokenValidationResource |
937 | | - |
938 | | - return TokenValidationResource(self) |
939 | | - |
940 | 924 | @cached_property |
941 | 925 | def with_raw_response(self) -> CloudflareWithRawResponse: |
942 | 926 | return CloudflareWithRawResponse(self) |
@@ -1733,12 +1717,6 @@ def content_scanning(self) -> AsyncContentScanningResource: |
1733 | 1717 |
|
1734 | 1718 | return AsyncContentScanningResource(self) |
1735 | 1719 |
|
1736 | | - @cached_property |
1737 | | - def abuse_reports(self) -> AsyncAbuseReportsResource: |
1738 | | - from .resources.abuse_reports import AsyncAbuseReportsResource |
1739 | | - |
1740 | | - return AsyncAbuseReportsResource(self) |
1741 | | - |
1742 | 1720 | @cached_property |
1743 | 1721 | def ai(self) -> AsyncAIResource: |
1744 | 1722 | from .resources.ai import AsyncAIResource |
@@ -1781,12 +1759,6 @@ def schema_validation(self) -> AsyncSchemaValidationResource: |
1781 | 1759 |
|
1782 | 1760 | return AsyncSchemaValidationResource(self) |
1783 | 1761 |
|
1784 | | - @cached_property |
1785 | | - def token_validation(self) -> AsyncTokenValidationResource: |
1786 | | - from .resources.token_validation import AsyncTokenValidationResource |
1787 | | - |
1788 | | - return AsyncTokenValidationResource(self) |
1789 | | - |
1790 | 1762 | @cached_property |
1791 | 1763 | def with_raw_response(self) -> AsyncCloudflareWithRawResponse: |
1792 | 1764 | return AsyncCloudflareWithRawResponse(self) |
@@ -2513,12 +2485,6 @@ def content_scanning(self) -> content_scanning.ContentScanningResourceWithRawRes |
2513 | 2485 |
|
2514 | 2486 | return ContentScanningResourceWithRawResponse(self._client.content_scanning) |
2515 | 2487 |
|
2516 | | - @cached_property |
2517 | | - def abuse_reports(self) -> abuse_reports.AbuseReportsResourceWithRawResponse: |
2518 | | - from .resources.abuse_reports import AbuseReportsResourceWithRawResponse |
2519 | | - |
2520 | | - return AbuseReportsResourceWithRawResponse(self._client.abuse_reports) |
2521 | | - |
2522 | 2488 | @cached_property |
2523 | 2489 | def ai(self) -> ai.AIResourceWithRawResponse: |
2524 | 2490 | from .resources.ai import AIResourceWithRawResponse |
@@ -2561,12 +2527,6 @@ def schema_validation(self) -> schema_validation.SchemaValidationResourceWithRaw |
2561 | 2527 |
|
2562 | 2528 | return SchemaValidationResourceWithRawResponse(self._client.schema_validation) |
2563 | 2529 |
|
2564 | | - @cached_property |
2565 | | - def token_validation(self) -> token_validation.TokenValidationResourceWithRawResponse: |
2566 | | - from .resources.token_validation import TokenValidationResourceWithRawResponse |
2567 | | - |
2568 | | - return TokenValidationResourceWithRawResponse(self._client.token_validation) |
2569 | | - |
2570 | 2530 |
|
2571 | 2531 | class AsyncCloudflareWithRawResponse: |
2572 | 2532 | _client: AsyncCloudflare |
@@ -3110,12 +3070,6 @@ def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithR |
3110 | 3070 |
|
3111 | 3071 | return AsyncContentScanningResourceWithRawResponse(self._client.content_scanning) |
3112 | 3072 |
|
3113 | | - @cached_property |
3114 | | - def abuse_reports(self) -> abuse_reports.AsyncAbuseReportsResourceWithRawResponse: |
3115 | | - from .resources.abuse_reports import AsyncAbuseReportsResourceWithRawResponse |
3116 | | - |
3117 | | - return AsyncAbuseReportsResourceWithRawResponse(self._client.abuse_reports) |
3118 | | - |
3119 | 3073 | @cached_property |
3120 | 3074 | def ai(self) -> ai.AsyncAIResourceWithRawResponse: |
3121 | 3075 | from .resources.ai import AsyncAIResourceWithRawResponse |
@@ -3158,12 +3112,6 @@ def schema_validation(self) -> schema_validation.AsyncSchemaValidationResourceWi |
3158 | 3112 |
|
3159 | 3113 | return AsyncSchemaValidationResourceWithRawResponse(self._client.schema_validation) |
3160 | 3114 |
|
3161 | | - @cached_property |
3162 | | - def token_validation(self) -> token_validation.AsyncTokenValidationResourceWithRawResponse: |
3163 | | - from .resources.token_validation import AsyncTokenValidationResourceWithRawResponse |
3164 | | - |
3165 | | - return AsyncTokenValidationResourceWithRawResponse(self._client.token_validation) |
3166 | | - |
3167 | 3115 |
|
3168 | 3116 | class CloudflareWithStreamedResponse: |
3169 | 3117 | _client: Cloudflare |
@@ -3707,12 +3655,6 @@ def content_scanning(self) -> content_scanning.ContentScanningResourceWithStream |
3707 | 3655 |
|
3708 | 3656 | return ContentScanningResourceWithStreamingResponse(self._client.content_scanning) |
3709 | 3657 |
|
3710 | | - @cached_property |
3711 | | - def abuse_reports(self) -> abuse_reports.AbuseReportsResourceWithStreamingResponse: |
3712 | | - from .resources.abuse_reports import AbuseReportsResourceWithStreamingResponse |
3713 | | - |
3714 | | - return AbuseReportsResourceWithStreamingResponse(self._client.abuse_reports) |
3715 | | - |
3716 | 3658 | @cached_property |
3717 | 3659 | def ai(self) -> ai.AIResourceWithStreamingResponse: |
3718 | 3660 | from .resources.ai import AIResourceWithStreamingResponse |
@@ -3755,12 +3697,6 @@ def schema_validation(self) -> schema_validation.SchemaValidationResourceWithStr |
3755 | 3697 |
|
3756 | 3698 | return SchemaValidationResourceWithStreamingResponse(self._client.schema_validation) |
3757 | 3699 |
|
3758 | | - @cached_property |
3759 | | - def token_validation(self) -> token_validation.TokenValidationResourceWithStreamingResponse: |
3760 | | - from .resources.token_validation import TokenValidationResourceWithStreamingResponse |
3761 | | - |
3762 | | - return TokenValidationResourceWithStreamingResponse(self._client.token_validation) |
3763 | | - |
3764 | 3700 |
|
3765 | 3701 | class AsyncCloudflareWithStreamedResponse: |
3766 | 3702 | _client: AsyncCloudflare |
@@ -4314,12 +4250,6 @@ def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithS |
4314 | 4250 |
|
4315 | 4251 | return AsyncContentScanningResourceWithStreamingResponse(self._client.content_scanning) |
4316 | 4252 |
|
4317 | | - @cached_property |
4318 | | - def abuse_reports(self) -> abuse_reports.AsyncAbuseReportsResourceWithStreamingResponse: |
4319 | | - from .resources.abuse_reports import AsyncAbuseReportsResourceWithStreamingResponse |
4320 | | - |
4321 | | - return AsyncAbuseReportsResourceWithStreamingResponse(self._client.abuse_reports) |
4322 | | - |
4323 | 4253 | @cached_property |
4324 | 4254 | def ai(self) -> ai.AsyncAIResourceWithStreamingResponse: |
4325 | 4255 | from .resources.ai import AsyncAIResourceWithStreamingResponse |
@@ -4362,12 +4292,6 @@ def schema_validation(self) -> schema_validation.AsyncSchemaValidationResourceWi |
4362 | 4292 |
|
4363 | 4293 | return AsyncSchemaValidationResourceWithStreamingResponse(self._client.schema_validation) |
4364 | 4294 |
|
4365 | | - @cached_property |
4366 | | - def token_validation(self) -> token_validation.AsyncTokenValidationResourceWithStreamingResponse: |
4367 | | - from .resources.token_validation import AsyncTokenValidationResourceWithStreamingResponse |
4368 | | - |
4369 | | - return AsyncTokenValidationResourceWithStreamingResponse(self._client.token_validation) |
4370 | | - |
4371 | 4295 |
|
4372 | 4296 | Client = Cloudflare |
4373 | 4297 |
|
|
0 commit comments