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