|
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 |
|
185 | 181 | from .resources.registrar.registrar import RegistrarResource, AsyncRegistrarResource |
186 | 182 | from .resources.turnstile.turnstile import TurnstileResource, AsyncTurnstileResource |
187 | 183 | from .resources.vectorize.vectorize import VectorizeResource, AsyncVectorizeResource |
188 | | - from .resources.workflows.workflows import WorkflowsResource, AsyncWorkflowsResource |
189 | 184 | from .resources.keyless_certificates import KeylessCertificatesResource, AsyncKeylessCertificatesResource |
190 | 185 | from .resources.addressing.addressing import AddressingResource, AsyncAddressingResource |
191 | 186 | 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 |
@@ -849,24 +834,12 @@ def security_txt(self) -> SecurityTXTResource: |
849 | 834 |
|
850 | 835 | return SecurityTXTResource(self) |
851 | 836 |
|
852 | | - @cached_property |
853 | | - def workflows(self) -> WorkflowsResource: |
854 | | - from .resources.workflows import WorkflowsResource |
855 | | - |
856 | | - return WorkflowsResource(self) |
857 | | - |
858 | 837 | @cached_property |
859 | 838 | def resource_sharing(self) -> ResourceSharingResource: |
860 | 839 | from .resources.resource_sharing import ResourceSharingResource |
861 | 840 |
|
862 | 841 | return ResourceSharingResource(self) |
863 | 842 |
|
864 | | - @cached_property |
865 | | - def leaked_credential_checks(self) -> LeakedCredentialChecksResource: |
866 | | - from .resources.leaked_credential_checks import LeakedCredentialChecksResource |
867 | | - |
868 | | - return LeakedCredentialChecksResource(self) |
869 | | - |
870 | 843 | @cached_property |
871 | 844 | def content_scanning(self) -> ContentScanningResource: |
872 | 845 | 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 |
@@ -1687,24 +1654,12 @@ def security_txt(self) -> AsyncSecurityTXTResource: |
1687 | 1654 |
|
1688 | 1655 | return AsyncSecurityTXTResource(self) |
1689 | 1656 |
|
1690 | | - @cached_property |
1691 | | - def workflows(self) -> AsyncWorkflowsResource: |
1692 | | - from .resources.workflows import AsyncWorkflowsResource |
1693 | | - |
1694 | | - return AsyncWorkflowsResource(self) |
1695 | | - |
1696 | 1657 | @cached_property |
1697 | 1658 | def resource_sharing(self) -> AsyncResourceSharingResource: |
1698 | 1659 | from .resources.resource_sharing import AsyncResourceSharingResource |
1699 | 1660 |
|
1700 | 1661 | return AsyncResourceSharingResource(self) |
1701 | 1662 |
|
1702 | | - @cached_property |
1703 | | - def leaked_credential_checks(self) -> AsyncLeakedCredentialChecksResource: |
1704 | | - from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResource |
1705 | | - |
1706 | | - return AsyncLeakedCredentialChecksResource(self) |
1707 | | - |
1708 | 1663 | @cached_property |
1709 | 1664 | def content_scanning(self) -> AsyncContentScanningResource: |
1710 | 1665 | 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 |
@@ -2455,24 +2404,12 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithRawResponse: |
2455 | 2404 |
|
2456 | 2405 | return SecurityTXTResourceWithRawResponse(self._client.security_txt) |
2457 | 2406 |
|
2458 | | - @cached_property |
2459 | | - def workflows(self) -> workflows.WorkflowsResourceWithRawResponse: |
2460 | | - from .resources.workflows import WorkflowsResourceWithRawResponse |
2461 | | - |
2462 | | - return WorkflowsResourceWithRawResponse(self._client.workflows) |
2463 | | - |
2464 | 2407 | @cached_property |
2465 | 2408 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithRawResponse: |
2466 | 2409 | from .resources.resource_sharing import ResourceSharingResourceWithRawResponse |
2467 | 2410 |
|
2468 | 2411 | return ResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
2469 | 2412 |
|
2470 | | - @cached_property |
2471 | | - def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialChecksResourceWithRawResponse: |
2472 | | - from .resources.leaked_credential_checks import LeakedCredentialChecksResourceWithRawResponse |
2473 | | - |
2474 | | - return LeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
2475 | | - |
2476 | 2413 | @cached_property |
2477 | 2414 | def content_scanning(self) -> content_scanning.ContentScanningResourceWithRawResponse: |
2478 | 2415 | 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 |
@@ -3040,24 +2971,12 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithRawResponse: |
3040 | 2971 |
|
3041 | 2972 | return AsyncSecurityTXTResourceWithRawResponse(self._client.security_txt) |
3042 | 2973 |
|
3043 | | - @cached_property |
3044 | | - def workflows(self) -> workflows.AsyncWorkflowsResourceWithRawResponse: |
3045 | | - from .resources.workflows import AsyncWorkflowsResourceWithRawResponse |
3046 | | - |
3047 | | - return AsyncWorkflowsResourceWithRawResponse(self._client.workflows) |
3048 | | - |
3049 | 2974 | @cached_property |
3050 | 2975 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithRawResponse: |
3051 | 2976 | from .resources.resource_sharing import AsyncResourceSharingResourceWithRawResponse |
3052 | 2977 |
|
3053 | 2978 | return AsyncResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
3054 | 2979 |
|
3055 | | - @cached_property |
3056 | | - def leaked_credential_checks(self) -> leaked_credential_checks.AsyncLeakedCredentialChecksResourceWithRawResponse: |
3057 | | - from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResourceWithRawResponse |
3058 | | - |
3059 | | - return AsyncLeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
3060 | | - |
3061 | 2980 | @cached_property |
3062 | 2981 | def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithRawResponse: |
3063 | 2982 | 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 |
@@ -3625,24 +3538,12 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithStreamingResponse: |
3625 | 3538 |
|
3626 | 3539 | return SecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
3627 | 3540 |
|
3628 | | - @cached_property |
3629 | | - def workflows(self) -> workflows.WorkflowsResourceWithStreamingResponse: |
3630 | | - from .resources.workflows import WorkflowsResourceWithStreamingResponse |
3631 | | - |
3632 | | - return WorkflowsResourceWithStreamingResponse(self._client.workflows) |
3633 | | - |
3634 | 3541 | @cached_property |
3635 | 3542 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithStreamingResponse: |
3636 | 3543 | from .resources.resource_sharing import ResourceSharingResourceWithStreamingResponse |
3637 | 3544 |
|
3638 | 3545 | return ResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
3639 | 3546 |
|
3640 | | - @cached_property |
3641 | | - def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialChecksResourceWithStreamingResponse: |
3642 | | - from .resources.leaked_credential_checks import LeakedCredentialChecksResourceWithStreamingResponse |
3643 | | - |
3644 | | - return LeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
3645 | | - |
3646 | 3547 | @cached_property |
3647 | 3548 | def content_scanning(self) -> content_scanning.ContentScanningResourceWithStreamingResponse: |
3648 | 3549 | 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 |
@@ -4218,26 +4113,12 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithStreamingResp |
4218 | 4113 |
|
4219 | 4114 | return AsyncSecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
4220 | 4115 |
|
4221 | | - @cached_property |
4222 | | - def workflows(self) -> workflows.AsyncWorkflowsResourceWithStreamingResponse: |
4223 | | - from .resources.workflows import AsyncWorkflowsResourceWithStreamingResponse |
4224 | | - |
4225 | | - return AsyncWorkflowsResourceWithStreamingResponse(self._client.workflows) |
4226 | | - |
4227 | 4116 | @cached_property |
4228 | 4117 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithStreamingResponse: |
4229 | 4118 | from .resources.resource_sharing import AsyncResourceSharingResourceWithStreamingResponse |
4230 | 4119 |
|
4231 | 4120 | return AsyncResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
4232 | 4121 |
|
4233 | | - @cached_property |
4234 | | - def leaked_credential_checks( |
4235 | | - self, |
4236 | | - ) -> leaked_credential_checks.AsyncLeakedCredentialChecksResourceWithStreamingResponse: |
4237 | | - from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResourceWithStreamingResponse |
4238 | | - |
4239 | | - return AsyncLeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
4240 | | - |
4241 | 4122 | @cached_property |
4242 | 4123 | def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithStreamingResponse: |
4243 | 4124 | from .resources.content_scanning import AsyncContentScanningResourceWithStreamingResponse |
|
0 commit comments