|
45 | 45 | rum, |
46 | 46 | ssl, |
47 | 47 | argo, |
48 | | - logs, |
49 | 48 | user, |
50 | 49 | web3, |
51 | 50 | cache, |
|
75 | 74 | registrar, |
76 | 75 | turnstile, |
77 | 76 | vectorize, |
78 | | - workflows, |
79 | 77 | addressing, |
80 | 78 | ai_gateway, |
81 | 79 | audit_logs, |
|
126 | 124 | origin_ca_certificates, |
127 | 125 | origin_tls_client_auth, |
128 | 126 | certificate_authorities, |
129 | | - leaked_credential_checks, |
130 | 127 | magic_network_monitoring, |
131 | 128 | origin_post_quantum_encryption, |
132 | 129 | ) |
|
142 | 139 | from .resources.rum.rum import RUMResource, AsyncRUMResource |
143 | 140 | from .resources.ssl.ssl import SSLResource, AsyncSSLResource |
144 | 141 | from .resources.argo.argo import ArgoResource, AsyncArgoResource |
145 | | - from .resources.logs.logs import LogsResource, AsyncLogsResource |
146 | 142 | from .resources.pipelines import PipelinesResource, AsyncPipelinesResource |
147 | 143 | from .resources.user.user import UserResource, AsyncUserResource |
148 | 144 | from .resources.web3.web3 import Web3Resource, AsyncWeb3Resource |
|
184 | 180 | from .resources.registrar.registrar import RegistrarResource, AsyncRegistrarResource |
185 | 181 | from .resources.turnstile.turnstile import TurnstileResource, AsyncTurnstileResource |
186 | 182 | from .resources.vectorize.vectorize import VectorizeResource, AsyncVectorizeResource |
187 | | - from .resources.workflows.workflows import WorkflowsResource, AsyncWorkflowsResource |
188 | 183 | from .resources.keyless_certificates import KeylessCertificatesResource, AsyncKeylessCertificatesResource |
189 | 184 | from .resources.addressing.addressing import AddressingResource, AsyncAddressingResource |
190 | 185 | from .resources.ai_gateway.ai_gateway import AIGatewayResource, AsyncAIGatewayResource |
|
244 | 239 | CertificateAuthoritiesResource, |
245 | 240 | AsyncCertificateAuthoritiesResource, |
246 | 241 | ) |
247 | | - from .resources.leaked_credential_checks.leaked_credential_checks import ( |
248 | | - LeakedCredentialChecksResource, |
249 | | - AsyncLeakedCredentialChecksResource, |
250 | | - ) |
251 | 242 | from .resources.magic_network_monitoring.magic_network_monitoring import ( |
252 | 243 | MagicNetworkMonitoringResource, |
253 | 244 | AsyncMagicNetworkMonitoringResource, |
@@ -493,12 +484,6 @@ def logpush(self) -> LogpushResource: |
493 | 484 |
|
494 | 485 | return LogpushResource(self) |
495 | 486 |
|
496 | | - @cached_property |
497 | | - def logs(self) -> LogsResource: |
498 | | - from .resources.logs import LogsResource |
499 | | - |
500 | | - return LogsResource(self) |
501 | | - |
502 | 487 | @cached_property |
503 | 488 | def origin_tls_client_auth(self) -> OriginTLSClientAuthResource: |
504 | 489 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResource |
@@ -841,24 +826,12 @@ def security_txt(self) -> SecurityTXTResource: |
841 | 826 |
|
842 | 827 | return SecurityTXTResource(self) |
843 | 828 |
|
844 | | - @cached_property |
845 | | - def workflows(self) -> WorkflowsResource: |
846 | | - from .resources.workflows import WorkflowsResource |
847 | | - |
848 | | - return WorkflowsResource(self) |
849 | | - |
850 | 829 | @cached_property |
851 | 830 | def resource_sharing(self) -> ResourceSharingResource: |
852 | 831 | from .resources.resource_sharing import ResourceSharingResource |
853 | 832 |
|
854 | 833 | return ResourceSharingResource(self) |
855 | 834 |
|
856 | | - @cached_property |
857 | | - def leaked_credential_checks(self) -> LeakedCredentialChecksResource: |
858 | | - from .resources.leaked_credential_checks import LeakedCredentialChecksResource |
859 | | - |
860 | | - return LeakedCredentialChecksResource(self) |
861 | | - |
862 | 835 | @cached_property |
863 | 836 | def content_scanning(self) -> ContentScanningResource: |
864 | 837 | from .resources.content_scanning import ContentScanningResource |
@@ -1325,12 +1298,6 @@ def logpush(self) -> AsyncLogpushResource: |
1325 | 1298 |
|
1326 | 1299 | return AsyncLogpushResource(self) |
1327 | 1300 |
|
1328 | | - @cached_property |
1329 | | - def logs(self) -> AsyncLogsResource: |
1330 | | - from .resources.logs import AsyncLogsResource |
1331 | | - |
1332 | | - return AsyncLogsResource(self) |
1333 | | - |
1334 | 1301 | @cached_property |
1335 | 1302 | def origin_tls_client_auth(self) -> AsyncOriginTLSClientAuthResource: |
1336 | 1303 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResource |
@@ -1673,24 +1640,12 @@ def security_txt(self) -> AsyncSecurityTXTResource: |
1673 | 1640 |
|
1674 | 1641 | return AsyncSecurityTXTResource(self) |
1675 | 1642 |
|
1676 | | - @cached_property |
1677 | | - def workflows(self) -> AsyncWorkflowsResource: |
1678 | | - from .resources.workflows import AsyncWorkflowsResource |
1679 | | - |
1680 | | - return AsyncWorkflowsResource(self) |
1681 | | - |
1682 | 1643 | @cached_property |
1683 | 1644 | def resource_sharing(self) -> AsyncResourceSharingResource: |
1684 | 1645 | from .resources.resource_sharing import AsyncResourceSharingResource |
1685 | 1646 |
|
1686 | 1647 | return AsyncResourceSharingResource(self) |
1687 | 1648 |
|
1688 | | - @cached_property |
1689 | | - def leaked_credential_checks(self) -> AsyncLeakedCredentialChecksResource: |
1690 | | - from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResource |
1691 | | - |
1692 | | - return AsyncLeakedCredentialChecksResource(self) |
1693 | | - |
1694 | 1649 | @cached_property |
1695 | 1650 | def content_scanning(self) -> AsyncContentScanningResource: |
1696 | 1651 | from .resources.content_scanning import AsyncContentScanningResource |
@@ -2085,12 +2040,6 @@ def logpush(self) -> logpush.LogpushResourceWithRawResponse: |
2085 | 2040 |
|
2086 | 2041 | return LogpushResourceWithRawResponse(self._client.logpush) |
2087 | 2042 |
|
2088 | | - @cached_property |
2089 | | - def logs(self) -> logs.LogsResourceWithRawResponse: |
2090 | | - from .resources.logs import LogsResourceWithRawResponse |
2091 | | - |
2092 | | - return LogsResourceWithRawResponse(self._client.logs) |
2093 | | - |
2094 | 2043 | @cached_property |
2095 | 2044 | def origin_tls_client_auth(self) -> origin_tls_client_auth.OriginTLSClientAuthResourceWithRawResponse: |
2096 | 2045 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResourceWithRawResponse |
@@ -2435,24 +2384,12 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithRawResponse: |
2435 | 2384 |
|
2436 | 2385 | return SecurityTXTResourceWithRawResponse(self._client.security_txt) |
2437 | 2386 |
|
2438 | | - @cached_property |
2439 | | - def workflows(self) -> workflows.WorkflowsResourceWithRawResponse: |
2440 | | - from .resources.workflows import WorkflowsResourceWithRawResponse |
2441 | | - |
2442 | | - return WorkflowsResourceWithRawResponse(self._client.workflows) |
2443 | | - |
2444 | 2387 | @cached_property |
2445 | 2388 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithRawResponse: |
2446 | 2389 | from .resources.resource_sharing import ResourceSharingResourceWithRawResponse |
2447 | 2390 |
|
2448 | 2391 | return ResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
2449 | 2392 |
|
2450 | | - @cached_property |
2451 | | - def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialChecksResourceWithRawResponse: |
2452 | | - from .resources.leaked_credential_checks import LeakedCredentialChecksResourceWithRawResponse |
2453 | | - |
2454 | | - return LeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
2455 | | - |
2456 | 2393 | @cached_property |
2457 | 2394 | def content_scanning(self) -> content_scanning.ContentScanningResourceWithRawResponse: |
2458 | 2395 | from .resources.content_scanning import ContentScanningResourceWithRawResponse |
@@ -2664,12 +2601,6 @@ def logpush(self) -> logpush.AsyncLogpushResourceWithRawResponse: |
2664 | 2601 |
|
2665 | 2602 | return AsyncLogpushResourceWithRawResponse(self._client.logpush) |
2666 | 2603 |
|
2667 | | - @cached_property |
2668 | | - def logs(self) -> logs.AsyncLogsResourceWithRawResponse: |
2669 | | - from .resources.logs import AsyncLogsResourceWithRawResponse |
2670 | | - |
2671 | | - return AsyncLogsResourceWithRawResponse(self._client.logs) |
2672 | | - |
2673 | 2604 | @cached_property |
2674 | 2605 | def origin_tls_client_auth(self) -> origin_tls_client_auth.AsyncOriginTLSClientAuthResourceWithRawResponse: |
2675 | 2606 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResourceWithRawResponse |
@@ -3014,24 +2945,12 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithRawResponse: |
3014 | 2945 |
|
3015 | 2946 | return AsyncSecurityTXTResourceWithRawResponse(self._client.security_txt) |
3016 | 2947 |
|
3017 | | - @cached_property |
3018 | | - def workflows(self) -> workflows.AsyncWorkflowsResourceWithRawResponse: |
3019 | | - from .resources.workflows import AsyncWorkflowsResourceWithRawResponse |
3020 | | - |
3021 | | - return AsyncWorkflowsResourceWithRawResponse(self._client.workflows) |
3022 | | - |
3023 | 2948 | @cached_property |
3024 | 2949 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithRawResponse: |
3025 | 2950 | from .resources.resource_sharing import AsyncResourceSharingResourceWithRawResponse |
3026 | 2951 |
|
3027 | 2952 | return AsyncResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
3028 | 2953 |
|
3029 | | - @cached_property |
3030 | | - def leaked_credential_checks(self) -> leaked_credential_checks.AsyncLeakedCredentialChecksResourceWithRawResponse: |
3031 | | - from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResourceWithRawResponse |
3032 | | - |
3033 | | - return AsyncLeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
3034 | | - |
3035 | 2954 | @cached_property |
3036 | 2955 | def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithRawResponse: |
3037 | 2956 | from .resources.content_scanning import AsyncContentScanningResourceWithRawResponse |
@@ -3243,12 +3162,6 @@ def logpush(self) -> logpush.LogpushResourceWithStreamingResponse: |
3243 | 3162 |
|
3244 | 3163 | return LogpushResourceWithStreamingResponse(self._client.logpush) |
3245 | 3164 |
|
3246 | | - @cached_property |
3247 | | - def logs(self) -> logs.LogsResourceWithStreamingResponse: |
3248 | | - from .resources.logs import LogsResourceWithStreamingResponse |
3249 | | - |
3250 | | - return LogsResourceWithStreamingResponse(self._client.logs) |
3251 | | - |
3252 | 3165 | @cached_property |
3253 | 3166 | def origin_tls_client_auth(self) -> origin_tls_client_auth.OriginTLSClientAuthResourceWithStreamingResponse: |
3254 | 3167 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResourceWithStreamingResponse |
@@ -3593,24 +3506,12 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithStreamingResponse: |
3593 | 3506 |
|
3594 | 3507 | return SecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
3595 | 3508 |
|
3596 | | - @cached_property |
3597 | | - def workflows(self) -> workflows.WorkflowsResourceWithStreamingResponse: |
3598 | | - from .resources.workflows import WorkflowsResourceWithStreamingResponse |
3599 | | - |
3600 | | - return WorkflowsResourceWithStreamingResponse(self._client.workflows) |
3601 | | - |
3602 | 3509 | @cached_property |
3603 | 3510 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithStreamingResponse: |
3604 | 3511 | from .resources.resource_sharing import ResourceSharingResourceWithStreamingResponse |
3605 | 3512 |
|
3606 | 3513 | return ResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
3607 | 3514 |
|
3608 | | - @cached_property |
3609 | | - def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialChecksResourceWithStreamingResponse: |
3610 | | - from .resources.leaked_credential_checks import LeakedCredentialChecksResourceWithStreamingResponse |
3611 | | - |
3612 | | - return LeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
3613 | | - |
3614 | 3515 | @cached_property |
3615 | 3516 | def content_scanning(self) -> content_scanning.ContentScanningResourceWithStreamingResponse: |
3616 | 3517 | from .resources.content_scanning import ContentScanningResourceWithStreamingResponse |
@@ -3824,12 +3725,6 @@ def logpush(self) -> logpush.AsyncLogpushResourceWithStreamingResponse: |
3824 | 3725 |
|
3825 | 3726 | return AsyncLogpushResourceWithStreamingResponse(self._client.logpush) |
3826 | 3727 |
|
3827 | | - @cached_property |
3828 | | - def logs(self) -> logs.AsyncLogsResourceWithStreamingResponse: |
3829 | | - from .resources.logs import AsyncLogsResourceWithStreamingResponse |
3830 | | - |
3831 | | - return AsyncLogsResourceWithStreamingResponse(self._client.logs) |
3832 | | - |
3833 | 3728 | @cached_property |
3834 | 3729 | def origin_tls_client_auth(self) -> origin_tls_client_auth.AsyncOriginTLSClientAuthResourceWithStreamingResponse: |
3835 | 3730 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResourceWithStreamingResponse |
@@ -4180,26 +4075,12 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithStreamingResp |
4180 | 4075 |
|
4181 | 4076 | return AsyncSecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
4182 | 4077 |
|
4183 | | - @cached_property |
4184 | | - def workflows(self) -> workflows.AsyncWorkflowsResourceWithStreamingResponse: |
4185 | | - from .resources.workflows import AsyncWorkflowsResourceWithStreamingResponse |
4186 | | - |
4187 | | - return AsyncWorkflowsResourceWithStreamingResponse(self._client.workflows) |
4188 | | - |
4189 | 4078 | @cached_property |
4190 | 4079 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithStreamingResponse: |
4191 | 4080 | from .resources.resource_sharing import AsyncResourceSharingResourceWithStreamingResponse |
4192 | 4081 |
|
4193 | 4082 | return AsyncResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
4194 | 4083 |
|
4195 | | - @cached_property |
4196 | | - def leaked_credential_checks( |
4197 | | - self, |
4198 | | - ) -> leaked_credential_checks.AsyncLeakedCredentialChecksResourceWithStreamingResponse: |
4199 | | - from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResourceWithStreamingResponse |
4200 | | - |
4201 | | - return AsyncLeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
4202 | | - |
4203 | 4084 | @cached_property |
4204 | 4085 | def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithStreamingResponse: |
4205 | 4086 | from .resources.content_scanning import AsyncContentScanningResourceWithStreamingResponse |
|
0 commit comments