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