|
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, |
|
127 | 125 | origin_ca_certificates, |
128 | 126 | origin_tls_client_auth, |
129 | 127 | certificate_authorities, |
130 | | - leaked_credential_checks, |
131 | 128 | magic_network_monitoring, |
132 | 129 | origin_post_quantum_encryption, |
133 | 130 | ) |
|
143 | 140 | from .resources.rum.rum import RUMResource, AsyncRUMResource |
144 | 141 | from .resources.ssl.ssl import SSLResource, AsyncSSLResource |
145 | 142 | from .resources.argo.argo import ArgoResource, AsyncArgoResource |
146 | | - from .resources.logs.logs import LogsResource, AsyncLogsResource |
147 | 143 | from .resources.pipelines import PipelinesResource, AsyncPipelinesResource |
148 | 144 | from .resources.user.user import UserResource, AsyncUserResource |
149 | 145 | 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 |
|
246 | 241 | CertificateAuthoritiesResource, |
247 | 242 | AsyncCertificateAuthoritiesResource, |
248 | 243 | ) |
249 | | - from .resources.leaked_credential_checks.leaked_credential_checks import ( |
250 | | - LeakedCredentialChecksResource, |
251 | | - AsyncLeakedCredentialChecksResource, |
252 | | - ) |
253 | 244 | from .resources.magic_network_monitoring.magic_network_monitoring import ( |
254 | 245 | MagicNetworkMonitoringResource, |
255 | 246 | AsyncMagicNetworkMonitoringResource, |
@@ -501,12 +492,6 @@ def logpush(self) -> LogpushResource: |
501 | 492 |
|
502 | 493 | return LogpushResource(self) |
503 | 494 |
|
504 | | - @cached_property |
505 | | - def logs(self) -> LogsResource: |
506 | | - from .resources.logs import LogsResource |
507 | | - |
508 | | - return LogsResource(self) |
509 | | - |
510 | 495 | @cached_property |
511 | 496 | def origin_tls_client_auth(self) -> OriginTLSClientAuthResource: |
512 | 497 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResource |
@@ -855,24 +840,12 @@ def security_txt(self) -> SecurityTXTResource: |
855 | 840 |
|
856 | 841 | return SecurityTXTResource(self) |
857 | 842 |
|
858 | | - @cached_property |
859 | | - def workflows(self) -> WorkflowsResource: |
860 | | - from .resources.workflows import WorkflowsResource |
861 | | - |
862 | | - return WorkflowsResource(self) |
863 | | - |
864 | 843 | @cached_property |
865 | 844 | def resource_sharing(self) -> ResourceSharingResource: |
866 | 845 | from .resources.resource_sharing import ResourceSharingResource |
867 | 846 |
|
868 | 847 | return ResourceSharingResource(self) |
869 | 848 |
|
870 | | - @cached_property |
871 | | - def leaked_credential_checks(self) -> LeakedCredentialChecksResource: |
872 | | - from .resources.leaked_credential_checks import LeakedCredentialChecksResource |
873 | | - |
874 | | - return LeakedCredentialChecksResource(self) |
875 | | - |
876 | 849 | @cached_property |
877 | 850 | def content_scanning(self) -> ContentScanningResource: |
878 | 851 | from .resources.content_scanning import ContentScanningResource |
@@ -1339,12 +1312,6 @@ def logpush(self) -> AsyncLogpushResource: |
1339 | 1312 |
|
1340 | 1313 | return AsyncLogpushResource(self) |
1341 | 1314 |
|
1342 | | - @cached_property |
1343 | | - def logs(self) -> AsyncLogsResource: |
1344 | | - from .resources.logs import AsyncLogsResource |
1345 | | - |
1346 | | - return AsyncLogsResource(self) |
1347 | | - |
1348 | 1315 | @cached_property |
1349 | 1316 | def origin_tls_client_auth(self) -> AsyncOriginTLSClientAuthResource: |
1350 | 1317 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResource |
@@ -1693,24 +1660,12 @@ def security_txt(self) -> AsyncSecurityTXTResource: |
1693 | 1660 |
|
1694 | 1661 | return AsyncSecurityTXTResource(self) |
1695 | 1662 |
|
1696 | | - @cached_property |
1697 | | - def workflows(self) -> AsyncWorkflowsResource: |
1698 | | - from .resources.workflows import AsyncWorkflowsResource |
1699 | | - |
1700 | | - return AsyncWorkflowsResource(self) |
1701 | | - |
1702 | 1663 | @cached_property |
1703 | 1664 | def resource_sharing(self) -> AsyncResourceSharingResource: |
1704 | 1665 | from .resources.resource_sharing import AsyncResourceSharingResource |
1705 | 1666 |
|
1706 | 1667 | return AsyncResourceSharingResource(self) |
1707 | 1668 |
|
1708 | | - @cached_property |
1709 | | - def leaked_credential_checks(self) -> AsyncLeakedCredentialChecksResource: |
1710 | | - from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResource |
1711 | | - |
1712 | | - return AsyncLeakedCredentialChecksResource(self) |
1713 | | - |
1714 | 1669 | @cached_property |
1715 | 1670 | def content_scanning(self) -> AsyncContentScanningResource: |
1716 | 1671 | from .resources.content_scanning import AsyncContentScanningResource |
@@ -2105,12 +2060,6 @@ def logpush(self) -> logpush.LogpushResourceWithRawResponse: |
2105 | 2060 |
|
2106 | 2061 | return LogpushResourceWithRawResponse(self._client.logpush) |
2107 | 2062 |
|
2108 | | - @cached_property |
2109 | | - def logs(self) -> logs.LogsResourceWithRawResponse: |
2110 | | - from .resources.logs import LogsResourceWithRawResponse |
2111 | | - |
2112 | | - return LogsResourceWithRawResponse(self._client.logs) |
2113 | | - |
2114 | 2063 | @cached_property |
2115 | 2064 | def origin_tls_client_auth(self) -> origin_tls_client_auth.OriginTLSClientAuthResourceWithRawResponse: |
2116 | 2065 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResourceWithRawResponse |
@@ -2461,24 +2410,12 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithRawResponse: |
2461 | 2410 |
|
2462 | 2411 | return SecurityTXTResourceWithRawResponse(self._client.security_txt) |
2463 | 2412 |
|
2464 | | - @cached_property |
2465 | | - def workflows(self) -> workflows.WorkflowsResourceWithRawResponse: |
2466 | | - from .resources.workflows import WorkflowsResourceWithRawResponse |
2467 | | - |
2468 | | - return WorkflowsResourceWithRawResponse(self._client.workflows) |
2469 | | - |
2470 | 2413 | @cached_property |
2471 | 2414 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithRawResponse: |
2472 | 2415 | from .resources.resource_sharing import ResourceSharingResourceWithRawResponse |
2473 | 2416 |
|
2474 | 2417 | return ResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
2475 | 2418 |
|
2476 | | - @cached_property |
2477 | | - def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialChecksResourceWithRawResponse: |
2478 | | - from .resources.leaked_credential_checks import LeakedCredentialChecksResourceWithRawResponse |
2479 | | - |
2480 | | - return LeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
2481 | | - |
2482 | 2419 | @cached_property |
2483 | 2420 | def content_scanning(self) -> content_scanning.ContentScanningResourceWithRawResponse: |
2484 | 2421 | from .resources.content_scanning import ContentScanningResourceWithRawResponse |
@@ -2690,12 +2627,6 @@ def logpush(self) -> logpush.AsyncLogpushResourceWithRawResponse: |
2690 | 2627 |
|
2691 | 2628 | return AsyncLogpushResourceWithRawResponse(self._client.logpush) |
2692 | 2629 |
|
2693 | | - @cached_property |
2694 | | - def logs(self) -> logs.AsyncLogsResourceWithRawResponse: |
2695 | | - from .resources.logs import AsyncLogsResourceWithRawResponse |
2696 | | - |
2697 | | - return AsyncLogsResourceWithRawResponse(self._client.logs) |
2698 | | - |
2699 | 2630 | @cached_property |
2700 | 2631 | def origin_tls_client_auth(self) -> origin_tls_client_auth.AsyncOriginTLSClientAuthResourceWithRawResponse: |
2701 | 2632 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResourceWithRawResponse |
@@ -3046,24 +2977,12 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithRawResponse: |
3046 | 2977 |
|
3047 | 2978 | return AsyncSecurityTXTResourceWithRawResponse(self._client.security_txt) |
3048 | 2979 |
|
3049 | | - @cached_property |
3050 | | - def workflows(self) -> workflows.AsyncWorkflowsResourceWithRawResponse: |
3051 | | - from .resources.workflows import AsyncWorkflowsResourceWithRawResponse |
3052 | | - |
3053 | | - return AsyncWorkflowsResourceWithRawResponse(self._client.workflows) |
3054 | | - |
3055 | 2980 | @cached_property |
3056 | 2981 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithRawResponse: |
3057 | 2982 | from .resources.resource_sharing import AsyncResourceSharingResourceWithRawResponse |
3058 | 2983 |
|
3059 | 2984 | return AsyncResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
3060 | 2985 |
|
3061 | | - @cached_property |
3062 | | - def leaked_credential_checks(self) -> leaked_credential_checks.AsyncLeakedCredentialChecksResourceWithRawResponse: |
3063 | | - from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResourceWithRawResponse |
3064 | | - |
3065 | | - return AsyncLeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
3066 | | - |
3067 | 2986 | @cached_property |
3068 | 2987 | def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithRawResponse: |
3069 | 2988 | from .resources.content_scanning import AsyncContentScanningResourceWithRawResponse |
@@ -3275,12 +3194,6 @@ def logpush(self) -> logpush.LogpushResourceWithStreamingResponse: |
3275 | 3194 |
|
3276 | 3195 | return LogpushResourceWithStreamingResponse(self._client.logpush) |
3277 | 3196 |
|
3278 | | - @cached_property |
3279 | | - def logs(self) -> logs.LogsResourceWithStreamingResponse: |
3280 | | - from .resources.logs import LogsResourceWithStreamingResponse |
3281 | | - |
3282 | | - return LogsResourceWithStreamingResponse(self._client.logs) |
3283 | | - |
3284 | 3197 | @cached_property |
3285 | 3198 | def origin_tls_client_auth(self) -> origin_tls_client_auth.OriginTLSClientAuthResourceWithStreamingResponse: |
3286 | 3199 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResourceWithStreamingResponse |
@@ -3631,24 +3544,12 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithStreamingResponse: |
3631 | 3544 |
|
3632 | 3545 | return SecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
3633 | 3546 |
|
3634 | | - @cached_property |
3635 | | - def workflows(self) -> workflows.WorkflowsResourceWithStreamingResponse: |
3636 | | - from .resources.workflows import WorkflowsResourceWithStreamingResponse |
3637 | | - |
3638 | | - return WorkflowsResourceWithStreamingResponse(self._client.workflows) |
3639 | | - |
3640 | 3547 | @cached_property |
3641 | 3548 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithStreamingResponse: |
3642 | 3549 | from .resources.resource_sharing import ResourceSharingResourceWithStreamingResponse |
3643 | 3550 |
|
3644 | 3551 | return ResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
3645 | 3552 |
|
3646 | | - @cached_property |
3647 | | - def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialChecksResourceWithStreamingResponse: |
3648 | | - from .resources.leaked_credential_checks import LeakedCredentialChecksResourceWithStreamingResponse |
3649 | | - |
3650 | | - return LeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
3651 | | - |
3652 | 3553 | @cached_property |
3653 | 3554 | def content_scanning(self) -> content_scanning.ContentScanningResourceWithStreamingResponse: |
3654 | 3555 | from .resources.content_scanning import ContentScanningResourceWithStreamingResponse |
@@ -3862,12 +3763,6 @@ def logpush(self) -> logpush.AsyncLogpushResourceWithStreamingResponse: |
3862 | 3763 |
|
3863 | 3764 | return AsyncLogpushResourceWithStreamingResponse(self._client.logpush) |
3864 | 3765 |
|
3865 | | - @cached_property |
3866 | | - def logs(self) -> logs.AsyncLogsResourceWithStreamingResponse: |
3867 | | - from .resources.logs import AsyncLogsResourceWithStreamingResponse |
3868 | | - |
3869 | | - return AsyncLogsResourceWithStreamingResponse(self._client.logs) |
3870 | | - |
3871 | 3766 | @cached_property |
3872 | 3767 | def origin_tls_client_auth(self) -> origin_tls_client_auth.AsyncOriginTLSClientAuthResourceWithStreamingResponse: |
3873 | 3768 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResourceWithStreamingResponse |
@@ -4224,26 +4119,12 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithStreamingResp |
4224 | 4119 |
|
4225 | 4120 | return AsyncSecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
4226 | 4121 |
|
4227 | | - @cached_property |
4228 | | - def workflows(self) -> workflows.AsyncWorkflowsResourceWithStreamingResponse: |
4229 | | - from .resources.workflows import AsyncWorkflowsResourceWithStreamingResponse |
4230 | | - |
4231 | | - return AsyncWorkflowsResourceWithStreamingResponse(self._client.workflows) |
4232 | | - |
4233 | 4122 | @cached_property |
4234 | 4123 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithStreamingResponse: |
4235 | 4124 | from .resources.resource_sharing import AsyncResourceSharingResourceWithStreamingResponse |
4236 | 4125 |
|
4237 | 4126 | return AsyncResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
4238 | 4127 |
|
4239 | | - @cached_property |
4240 | | - def leaked_credential_checks( |
4241 | | - self, |
4242 | | - ) -> leaked_credential_checks.AsyncLeakedCredentialChecksResourceWithStreamingResponse: |
4243 | | - from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResourceWithStreamingResponse |
4244 | | - |
4245 | | - return AsyncLeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
4246 | | - |
4247 | 4128 | @cached_property |
4248 | 4129 | def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithStreamingResponse: |
4249 | 4130 | from .resources.content_scanning import AsyncContentScanningResourceWithStreamingResponse |
|
0 commit comments