|
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, |
|
142 | 140 | from .resources.rum.rum import RUMResource, AsyncRUMResource |
143 | 141 | from .resources.ssl.ssl import SSLResource, AsyncSSLResource |
144 | 142 | from .resources.argo.argo import ArgoResource, AsyncArgoResource |
145 | | - from .resources.logs.logs import LogsResource, AsyncLogsResource |
146 | 143 | from .resources.pipelines import PipelinesResource, AsyncPipelinesResource |
147 | 144 | from .resources.user.user import UserResource, AsyncUserResource |
148 | 145 | from .resources.web3.web3 import Web3Resource, AsyncWeb3Resource |
|
184 | 181 | from .resources.registrar.registrar import RegistrarResource, AsyncRegistrarResource |
185 | 182 | from .resources.turnstile.turnstile import TurnstileResource, AsyncTurnstileResource |
186 | 183 | from .resources.vectorize.vectorize import VectorizeResource, AsyncVectorizeResource |
187 | | - from .resources.workflows.workflows import WorkflowsResource, AsyncWorkflowsResource |
188 | 184 | from .resources.keyless_certificates import KeylessCertificatesResource, AsyncKeylessCertificatesResource |
189 | 185 | from .resources.addressing.addressing import AddressingResource, AsyncAddressingResource |
190 | 186 | from .resources.ai_gateway.ai_gateway import AIGatewayResource, AsyncAIGatewayResource |
@@ -493,12 +489,6 @@ def logpush(self) -> LogpushResource: |
493 | 489 |
|
494 | 490 | return LogpushResource(self) |
495 | 491 |
|
496 | | - @cached_property |
497 | | - def logs(self) -> LogsResource: |
498 | | - from .resources.logs import LogsResource |
499 | | - |
500 | | - return LogsResource(self) |
501 | | - |
502 | 492 | @cached_property |
503 | 493 | def origin_tls_client_auth(self) -> OriginTLSClientAuthResource: |
504 | 494 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResource |
@@ -841,12 +831,6 @@ def security_txt(self) -> SecurityTXTResource: |
841 | 831 |
|
842 | 832 | return SecurityTXTResource(self) |
843 | 833 |
|
844 | | - @cached_property |
845 | | - def workflows(self) -> WorkflowsResource: |
846 | | - from .resources.workflows import WorkflowsResource |
847 | | - |
848 | | - return WorkflowsResource(self) |
849 | | - |
850 | 834 | @cached_property |
851 | 835 | def resource_sharing(self) -> ResourceSharingResource: |
852 | 836 | from .resources.resource_sharing import ResourceSharingResource |
@@ -1325,12 +1309,6 @@ def logpush(self) -> AsyncLogpushResource: |
1325 | 1309 |
|
1326 | 1310 | return AsyncLogpushResource(self) |
1327 | 1311 |
|
1328 | | - @cached_property |
1329 | | - def logs(self) -> AsyncLogsResource: |
1330 | | - from .resources.logs import AsyncLogsResource |
1331 | | - |
1332 | | - return AsyncLogsResource(self) |
1333 | | - |
1334 | 1312 | @cached_property |
1335 | 1313 | def origin_tls_client_auth(self) -> AsyncOriginTLSClientAuthResource: |
1336 | 1314 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResource |
@@ -1673,12 +1651,6 @@ def security_txt(self) -> AsyncSecurityTXTResource: |
1673 | 1651 |
|
1674 | 1652 | return AsyncSecurityTXTResource(self) |
1675 | 1653 |
|
1676 | | - @cached_property |
1677 | | - def workflows(self) -> AsyncWorkflowsResource: |
1678 | | - from .resources.workflows import AsyncWorkflowsResource |
1679 | | - |
1680 | | - return AsyncWorkflowsResource(self) |
1681 | | - |
1682 | 1654 | @cached_property |
1683 | 1655 | def resource_sharing(self) -> AsyncResourceSharingResource: |
1684 | 1656 | from .resources.resource_sharing import AsyncResourceSharingResource |
@@ -2085,12 +2057,6 @@ def logpush(self) -> logpush.LogpushResourceWithRawResponse: |
2085 | 2057 |
|
2086 | 2058 | return LogpushResourceWithRawResponse(self._client.logpush) |
2087 | 2059 |
|
2088 | | - @cached_property |
2089 | | - def logs(self) -> logs.LogsResourceWithRawResponse: |
2090 | | - from .resources.logs import LogsResourceWithRawResponse |
2091 | | - |
2092 | | - return LogsResourceWithRawResponse(self._client.logs) |
2093 | | - |
2094 | 2060 | @cached_property |
2095 | 2061 | def origin_tls_client_auth(self) -> origin_tls_client_auth.OriginTLSClientAuthResourceWithRawResponse: |
2096 | 2062 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResourceWithRawResponse |
@@ -2435,12 +2401,6 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithRawResponse: |
2435 | 2401 |
|
2436 | 2402 | return SecurityTXTResourceWithRawResponse(self._client.security_txt) |
2437 | 2403 |
|
2438 | | - @cached_property |
2439 | | - def workflows(self) -> workflows.WorkflowsResourceWithRawResponse: |
2440 | | - from .resources.workflows import WorkflowsResourceWithRawResponse |
2441 | | - |
2442 | | - return WorkflowsResourceWithRawResponse(self._client.workflows) |
2443 | | - |
2444 | 2404 | @cached_property |
2445 | 2405 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithRawResponse: |
2446 | 2406 | from .resources.resource_sharing import ResourceSharingResourceWithRawResponse |
@@ -2664,12 +2624,6 @@ def logpush(self) -> logpush.AsyncLogpushResourceWithRawResponse: |
2664 | 2624 |
|
2665 | 2625 | return AsyncLogpushResourceWithRawResponse(self._client.logpush) |
2666 | 2626 |
|
2667 | | - @cached_property |
2668 | | - def logs(self) -> logs.AsyncLogsResourceWithRawResponse: |
2669 | | - from .resources.logs import AsyncLogsResourceWithRawResponse |
2670 | | - |
2671 | | - return AsyncLogsResourceWithRawResponse(self._client.logs) |
2672 | | - |
2673 | 2627 | @cached_property |
2674 | 2628 | def origin_tls_client_auth(self) -> origin_tls_client_auth.AsyncOriginTLSClientAuthResourceWithRawResponse: |
2675 | 2629 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResourceWithRawResponse |
@@ -3014,12 +2968,6 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithRawResponse: |
3014 | 2968 |
|
3015 | 2969 | return AsyncSecurityTXTResourceWithRawResponse(self._client.security_txt) |
3016 | 2970 |
|
3017 | | - @cached_property |
3018 | | - def workflows(self) -> workflows.AsyncWorkflowsResourceWithRawResponse: |
3019 | | - from .resources.workflows import AsyncWorkflowsResourceWithRawResponse |
3020 | | - |
3021 | | - return AsyncWorkflowsResourceWithRawResponse(self._client.workflows) |
3022 | | - |
3023 | 2971 | @cached_property |
3024 | 2972 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithRawResponse: |
3025 | 2973 | from .resources.resource_sharing import AsyncResourceSharingResourceWithRawResponse |
@@ -3243,12 +3191,6 @@ def logpush(self) -> logpush.LogpushResourceWithStreamingResponse: |
3243 | 3191 |
|
3244 | 3192 | return LogpushResourceWithStreamingResponse(self._client.logpush) |
3245 | 3193 |
|
3246 | | - @cached_property |
3247 | | - def logs(self) -> logs.LogsResourceWithStreamingResponse: |
3248 | | - from .resources.logs import LogsResourceWithStreamingResponse |
3249 | | - |
3250 | | - return LogsResourceWithStreamingResponse(self._client.logs) |
3251 | | - |
3252 | 3194 | @cached_property |
3253 | 3195 | def origin_tls_client_auth(self) -> origin_tls_client_auth.OriginTLSClientAuthResourceWithStreamingResponse: |
3254 | 3196 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResourceWithStreamingResponse |
@@ -3593,12 +3535,6 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithStreamingResponse: |
3593 | 3535 |
|
3594 | 3536 | return SecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
3595 | 3537 |
|
3596 | | - @cached_property |
3597 | | - def workflows(self) -> workflows.WorkflowsResourceWithStreamingResponse: |
3598 | | - from .resources.workflows import WorkflowsResourceWithStreamingResponse |
3599 | | - |
3600 | | - return WorkflowsResourceWithStreamingResponse(self._client.workflows) |
3601 | | - |
3602 | 3538 | @cached_property |
3603 | 3539 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithStreamingResponse: |
3604 | 3540 | from .resources.resource_sharing import ResourceSharingResourceWithStreamingResponse |
@@ -3824,12 +3760,6 @@ def logpush(self) -> logpush.AsyncLogpushResourceWithStreamingResponse: |
3824 | 3760 |
|
3825 | 3761 | return AsyncLogpushResourceWithStreamingResponse(self._client.logpush) |
3826 | 3762 |
|
3827 | | - @cached_property |
3828 | | - def logs(self) -> logs.AsyncLogsResourceWithStreamingResponse: |
3829 | | - from .resources.logs import AsyncLogsResourceWithStreamingResponse |
3830 | | - |
3831 | | - return AsyncLogsResourceWithStreamingResponse(self._client.logs) |
3832 | | - |
3833 | 3763 | @cached_property |
3834 | 3764 | def origin_tls_client_auth(self) -> origin_tls_client_auth.AsyncOriginTLSClientAuthResourceWithStreamingResponse: |
3835 | 3765 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResourceWithStreamingResponse |
@@ -4180,12 +4110,6 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithStreamingResp |
4180 | 4110 |
|
4181 | 4111 | return AsyncSecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
4182 | 4112 |
|
4183 | | - @cached_property |
4184 | | - def workflows(self) -> workflows.AsyncWorkflowsResourceWithStreamingResponse: |
4185 | | - from .resources.workflows import AsyncWorkflowsResourceWithStreamingResponse |
4186 | | - |
4187 | | - return AsyncWorkflowsResourceWithStreamingResponse(self._client.workflows) |
4188 | | - |
4189 | 4113 | @cached_property |
4190 | 4114 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithStreamingResponse: |
4191 | 4115 | from .resources.resource_sharing import AsyncResourceSharingResourceWithStreamingResponse |
|
0 commit comments