|
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, |
|
125 | 127 | origin_ca_certificates, |
126 | 128 | origin_tls_client_auth, |
127 | 129 | certificate_authorities, |
| 130 | + leaked_credential_checks, |
128 | 131 | magic_network_monitoring, |
129 | 132 | origin_post_quantum_encryption, |
130 | 133 | ) |
|
140 | 143 | from .resources.rum.rum import RUMResource, AsyncRUMResource |
141 | 144 | from .resources.ssl.ssl import SSLResource, AsyncSSLResource |
142 | 145 | from .resources.argo.argo import ArgoResource, AsyncArgoResource |
| 146 | + from .resources.logs.logs import LogsResource, AsyncLogsResource |
143 | 147 | from .resources.pipelines import PipelinesResource, AsyncPipelinesResource |
144 | 148 | from .resources.user.user import UserResource, AsyncUserResource |
145 | 149 | from .resources.web3.web3 import Web3Resource, AsyncWeb3Resource |
|
181 | 185 | from .resources.registrar.registrar import RegistrarResource, AsyncRegistrarResource |
182 | 186 | from .resources.turnstile.turnstile import TurnstileResource, AsyncTurnstileResource |
183 | 187 | from .resources.vectorize.vectorize import VectorizeResource, AsyncVectorizeResource |
| 188 | + from .resources.workflows.workflows import WorkflowsResource, AsyncWorkflowsResource |
184 | 189 | from .resources.keyless_certificates import KeylessCertificatesResource, AsyncKeylessCertificatesResource |
185 | 190 | from .resources.addressing.addressing import AddressingResource, AsyncAddressingResource |
186 | 191 | from .resources.ai_gateway.ai_gateway import AIGatewayResource, AsyncAIGatewayResource |
|
241 | 246 | CertificateAuthoritiesResource, |
242 | 247 | AsyncCertificateAuthoritiesResource, |
243 | 248 | ) |
| 249 | + from .resources.leaked_credential_checks.leaked_credential_checks import ( |
| 250 | + LeakedCredentialChecksResource, |
| 251 | + AsyncLeakedCredentialChecksResource, |
| 252 | + ) |
244 | 253 | from .resources.magic_network_monitoring.magic_network_monitoring import ( |
245 | 254 | MagicNetworkMonitoringResource, |
246 | 255 | AsyncMagicNetworkMonitoringResource, |
@@ -492,6 +501,12 @@ def logpush(self) -> LogpushResource: |
492 | 501 |
|
493 | 502 | return LogpushResource(self) |
494 | 503 |
|
| 504 | + @cached_property |
| 505 | + def logs(self) -> LogsResource: |
| 506 | + from .resources.logs import LogsResource |
| 507 | + |
| 508 | + return LogsResource(self) |
| 509 | + |
495 | 510 | @cached_property |
496 | 511 | def origin_tls_client_auth(self) -> OriginTLSClientAuthResource: |
497 | 512 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResource |
@@ -834,12 +849,24 @@ def security_txt(self) -> SecurityTXTResource: |
834 | 849 |
|
835 | 850 | return SecurityTXTResource(self) |
836 | 851 |
|
| 852 | + @cached_property |
| 853 | + def workflows(self) -> WorkflowsResource: |
| 854 | + from .resources.workflows import WorkflowsResource |
| 855 | + |
| 856 | + return WorkflowsResource(self) |
| 857 | + |
837 | 858 | @cached_property |
838 | 859 | def resource_sharing(self) -> ResourceSharingResource: |
839 | 860 | from .resources.resource_sharing import ResourceSharingResource |
840 | 861 |
|
841 | 862 | return ResourceSharingResource(self) |
842 | 863 |
|
| 864 | + @cached_property |
| 865 | + def leaked_credential_checks(self) -> LeakedCredentialChecksResource: |
| 866 | + from .resources.leaked_credential_checks import LeakedCredentialChecksResource |
| 867 | + |
| 868 | + return LeakedCredentialChecksResource(self) |
| 869 | + |
843 | 870 | @cached_property |
844 | 871 | def content_scanning(self) -> ContentScanningResource: |
845 | 872 | from .resources.content_scanning import ContentScanningResource |
@@ -1312,6 +1339,12 @@ def logpush(self) -> AsyncLogpushResource: |
1312 | 1339 |
|
1313 | 1340 | return AsyncLogpushResource(self) |
1314 | 1341 |
|
| 1342 | + @cached_property |
| 1343 | + def logs(self) -> AsyncLogsResource: |
| 1344 | + from .resources.logs import AsyncLogsResource |
| 1345 | + |
| 1346 | + return AsyncLogsResource(self) |
| 1347 | + |
1315 | 1348 | @cached_property |
1316 | 1349 | def origin_tls_client_auth(self) -> AsyncOriginTLSClientAuthResource: |
1317 | 1350 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResource |
@@ -1654,12 +1687,24 @@ def security_txt(self) -> AsyncSecurityTXTResource: |
1654 | 1687 |
|
1655 | 1688 | return AsyncSecurityTXTResource(self) |
1656 | 1689 |
|
| 1690 | + @cached_property |
| 1691 | + def workflows(self) -> AsyncWorkflowsResource: |
| 1692 | + from .resources.workflows import AsyncWorkflowsResource |
| 1693 | + |
| 1694 | + return AsyncWorkflowsResource(self) |
| 1695 | + |
1657 | 1696 | @cached_property |
1658 | 1697 | def resource_sharing(self) -> AsyncResourceSharingResource: |
1659 | 1698 | from .resources.resource_sharing import AsyncResourceSharingResource |
1660 | 1699 |
|
1661 | 1700 | return AsyncResourceSharingResource(self) |
1662 | 1701 |
|
| 1702 | + @cached_property |
| 1703 | + def leaked_credential_checks(self) -> AsyncLeakedCredentialChecksResource: |
| 1704 | + from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResource |
| 1705 | + |
| 1706 | + return AsyncLeakedCredentialChecksResource(self) |
| 1707 | + |
1663 | 1708 | @cached_property |
1664 | 1709 | def content_scanning(self) -> AsyncContentScanningResource: |
1665 | 1710 | from .resources.content_scanning import AsyncContentScanningResource |
@@ -2060,6 +2105,12 @@ def logpush(self) -> logpush.LogpushResourceWithRawResponse: |
2060 | 2105 |
|
2061 | 2106 | return LogpushResourceWithRawResponse(self._client.logpush) |
2062 | 2107 |
|
| 2108 | + @cached_property |
| 2109 | + def logs(self) -> logs.LogsResourceWithRawResponse: |
| 2110 | + from .resources.logs import LogsResourceWithRawResponse |
| 2111 | + |
| 2112 | + return LogsResourceWithRawResponse(self._client.logs) |
| 2113 | + |
2063 | 2114 | @cached_property |
2064 | 2115 | def origin_tls_client_auth(self) -> origin_tls_client_auth.OriginTLSClientAuthResourceWithRawResponse: |
2065 | 2116 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResourceWithRawResponse |
@@ -2404,12 +2455,24 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithRawResponse: |
2404 | 2455 |
|
2405 | 2456 | return SecurityTXTResourceWithRawResponse(self._client.security_txt) |
2406 | 2457 |
|
| 2458 | + @cached_property |
| 2459 | + def workflows(self) -> workflows.WorkflowsResourceWithRawResponse: |
| 2460 | + from .resources.workflows import WorkflowsResourceWithRawResponse |
| 2461 | + |
| 2462 | + return WorkflowsResourceWithRawResponse(self._client.workflows) |
| 2463 | + |
2407 | 2464 | @cached_property |
2408 | 2465 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithRawResponse: |
2409 | 2466 | from .resources.resource_sharing import ResourceSharingResourceWithRawResponse |
2410 | 2467 |
|
2411 | 2468 | return ResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
2412 | 2469 |
|
| 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 | + |
2413 | 2476 | @cached_property |
2414 | 2477 | def content_scanning(self) -> content_scanning.ContentScanningResourceWithRawResponse: |
2415 | 2478 | from .resources.content_scanning import ContentScanningResourceWithRawResponse |
@@ -2627,6 +2690,12 @@ def logpush(self) -> logpush.AsyncLogpushResourceWithRawResponse: |
2627 | 2690 |
|
2628 | 2691 | return AsyncLogpushResourceWithRawResponse(self._client.logpush) |
2629 | 2692 |
|
| 2693 | + @cached_property |
| 2694 | + def logs(self) -> logs.AsyncLogsResourceWithRawResponse: |
| 2695 | + from .resources.logs import AsyncLogsResourceWithRawResponse |
| 2696 | + |
| 2697 | + return AsyncLogsResourceWithRawResponse(self._client.logs) |
| 2698 | + |
2630 | 2699 | @cached_property |
2631 | 2700 | def origin_tls_client_auth(self) -> origin_tls_client_auth.AsyncOriginTLSClientAuthResourceWithRawResponse: |
2632 | 2701 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResourceWithRawResponse |
@@ -2971,12 +3040,24 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithRawResponse: |
2971 | 3040 |
|
2972 | 3041 | return AsyncSecurityTXTResourceWithRawResponse(self._client.security_txt) |
2973 | 3042 |
|
| 3043 | + @cached_property |
| 3044 | + def workflows(self) -> workflows.AsyncWorkflowsResourceWithRawResponse: |
| 3045 | + from .resources.workflows import AsyncWorkflowsResourceWithRawResponse |
| 3046 | + |
| 3047 | + return AsyncWorkflowsResourceWithRawResponse(self._client.workflows) |
| 3048 | + |
2974 | 3049 | @cached_property |
2975 | 3050 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithRawResponse: |
2976 | 3051 | from .resources.resource_sharing import AsyncResourceSharingResourceWithRawResponse |
2977 | 3052 |
|
2978 | 3053 | return AsyncResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
2979 | 3054 |
|
| 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 | + |
2980 | 3061 | @cached_property |
2981 | 3062 | def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithRawResponse: |
2982 | 3063 | from .resources.content_scanning import AsyncContentScanningResourceWithRawResponse |
@@ -3194,6 +3275,12 @@ def logpush(self) -> logpush.LogpushResourceWithStreamingResponse: |
3194 | 3275 |
|
3195 | 3276 | return LogpushResourceWithStreamingResponse(self._client.logpush) |
3196 | 3277 |
|
| 3278 | + @cached_property |
| 3279 | + def logs(self) -> logs.LogsResourceWithStreamingResponse: |
| 3280 | + from .resources.logs import LogsResourceWithStreamingResponse |
| 3281 | + |
| 3282 | + return LogsResourceWithStreamingResponse(self._client.logs) |
| 3283 | + |
3197 | 3284 | @cached_property |
3198 | 3285 | def origin_tls_client_auth(self) -> origin_tls_client_auth.OriginTLSClientAuthResourceWithStreamingResponse: |
3199 | 3286 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResourceWithStreamingResponse |
@@ -3538,12 +3625,24 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithStreamingResponse: |
3538 | 3625 |
|
3539 | 3626 | return SecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
3540 | 3627 |
|
| 3628 | + @cached_property |
| 3629 | + def workflows(self) -> workflows.WorkflowsResourceWithStreamingResponse: |
| 3630 | + from .resources.workflows import WorkflowsResourceWithStreamingResponse |
| 3631 | + |
| 3632 | + return WorkflowsResourceWithStreamingResponse(self._client.workflows) |
| 3633 | + |
3541 | 3634 | @cached_property |
3542 | 3635 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithStreamingResponse: |
3543 | 3636 | from .resources.resource_sharing import ResourceSharingResourceWithStreamingResponse |
3544 | 3637 |
|
3545 | 3638 | return ResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
3546 | 3639 |
|
| 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 | + |
3547 | 3646 | @cached_property |
3548 | 3647 | def content_scanning(self) -> content_scanning.ContentScanningResourceWithStreamingResponse: |
3549 | 3648 | from .resources.content_scanning import ContentScanningResourceWithStreamingResponse |
@@ -3763,6 +3862,12 @@ def logpush(self) -> logpush.AsyncLogpushResourceWithStreamingResponse: |
3763 | 3862 |
|
3764 | 3863 | return AsyncLogpushResourceWithStreamingResponse(self._client.logpush) |
3765 | 3864 |
|
| 3865 | + @cached_property |
| 3866 | + def logs(self) -> logs.AsyncLogsResourceWithStreamingResponse: |
| 3867 | + from .resources.logs import AsyncLogsResourceWithStreamingResponse |
| 3868 | + |
| 3869 | + return AsyncLogsResourceWithStreamingResponse(self._client.logs) |
| 3870 | + |
3766 | 3871 | @cached_property |
3767 | 3872 | def origin_tls_client_auth(self) -> origin_tls_client_auth.AsyncOriginTLSClientAuthResourceWithStreamingResponse: |
3768 | 3873 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResourceWithStreamingResponse |
@@ -4113,12 +4218,26 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithStreamingResp |
4113 | 4218 |
|
4114 | 4219 | return AsyncSecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
4115 | 4220 |
|
| 4221 | + @cached_property |
| 4222 | + def workflows(self) -> workflows.AsyncWorkflowsResourceWithStreamingResponse: |
| 4223 | + from .resources.workflows import AsyncWorkflowsResourceWithStreamingResponse |
| 4224 | + |
| 4225 | + return AsyncWorkflowsResourceWithStreamingResponse(self._client.workflows) |
| 4226 | + |
4116 | 4227 | @cached_property |
4117 | 4228 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithStreamingResponse: |
4118 | 4229 | from .resources.resource_sharing import AsyncResourceSharingResourceWithStreamingResponse |
4119 | 4230 |
|
4120 | 4231 | return AsyncResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
4121 | 4232 |
|
| 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 | + |
4122 | 4241 | @cached_property |
4123 | 4242 | def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithStreamingResponse: |
4124 | 4243 | from .resources.content_scanning import AsyncContentScanningResourceWithStreamingResponse |
|
0 commit comments