|
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 |
|
179 | 183 | from .resources.registrar.registrar import RegistrarResource, AsyncRegistrarResource |
180 | 184 | from .resources.turnstile.turnstile import TurnstileResource, AsyncTurnstileResource |
181 | 185 | from .resources.vectorize.vectorize import VectorizeResource, AsyncVectorizeResource |
| 186 | + from .resources.workflows.workflows import WorkflowsResource, AsyncWorkflowsResource |
182 | 187 | from .resources.keyless_certificates import KeylessCertificatesResource, AsyncKeylessCertificatesResource |
183 | 188 | from .resources.addressing.addressing import AddressingResource, AsyncAddressingResource |
184 | 189 | 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, |
@@ -490,6 +499,12 @@ def logpush(self) -> LogpushResource: |
490 | 499 |
|
491 | 500 | return LogpushResource(self) |
492 | 501 |
|
| 502 | + @cached_property |
| 503 | + def logs(self) -> LogsResource: |
| 504 | + from .resources.logs import LogsResource |
| 505 | + |
| 506 | + return LogsResource(self) |
| 507 | + |
493 | 508 | @cached_property |
494 | 509 | def origin_tls_client_auth(self) -> OriginTLSClientAuthResource: |
495 | 510 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResource |
@@ -832,12 +847,24 @@ def security_txt(self) -> SecurityTXTResource: |
832 | 847 |
|
833 | 848 | return SecurityTXTResource(self) |
834 | 849 |
|
| 850 | + @cached_property |
| 851 | + def workflows(self) -> WorkflowsResource: |
| 852 | + from .resources.workflows import WorkflowsResource |
| 853 | + |
| 854 | + return WorkflowsResource(self) |
| 855 | + |
835 | 856 | @cached_property |
836 | 857 | def resource_sharing(self) -> ResourceSharingResource: |
837 | 858 | from .resources.resource_sharing import ResourceSharingResource |
838 | 859 |
|
839 | 860 | return ResourceSharingResource(self) |
840 | 861 |
|
| 862 | + @cached_property |
| 863 | + def leaked_credential_checks(self) -> LeakedCredentialChecksResource: |
| 864 | + from .resources.leaked_credential_checks import LeakedCredentialChecksResource |
| 865 | + |
| 866 | + return LeakedCredentialChecksResource(self) |
| 867 | + |
841 | 868 | @cached_property |
842 | 869 | def content_scanning(self) -> ContentScanningResource: |
843 | 870 | from .resources.content_scanning import ContentScanningResource |
@@ -1304,6 +1331,12 @@ def logpush(self) -> AsyncLogpushResource: |
1304 | 1331 |
|
1305 | 1332 | return AsyncLogpushResource(self) |
1306 | 1333 |
|
| 1334 | + @cached_property |
| 1335 | + def logs(self) -> AsyncLogsResource: |
| 1336 | + from .resources.logs import AsyncLogsResource |
| 1337 | + |
| 1338 | + return AsyncLogsResource(self) |
| 1339 | + |
1307 | 1340 | @cached_property |
1308 | 1341 | def origin_tls_client_auth(self) -> AsyncOriginTLSClientAuthResource: |
1309 | 1342 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResource |
@@ -1646,12 +1679,24 @@ def security_txt(self) -> AsyncSecurityTXTResource: |
1646 | 1679 |
|
1647 | 1680 | return AsyncSecurityTXTResource(self) |
1648 | 1681 |
|
| 1682 | + @cached_property |
| 1683 | + def workflows(self) -> AsyncWorkflowsResource: |
| 1684 | + from .resources.workflows import AsyncWorkflowsResource |
| 1685 | + |
| 1686 | + return AsyncWorkflowsResource(self) |
| 1687 | + |
1649 | 1688 | @cached_property |
1650 | 1689 | def resource_sharing(self) -> AsyncResourceSharingResource: |
1651 | 1690 | from .resources.resource_sharing import AsyncResourceSharingResource |
1652 | 1691 |
|
1653 | 1692 | return AsyncResourceSharingResource(self) |
1654 | 1693 |
|
| 1694 | + @cached_property |
| 1695 | + def leaked_credential_checks(self) -> AsyncLeakedCredentialChecksResource: |
| 1696 | + from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResource |
| 1697 | + |
| 1698 | + return AsyncLeakedCredentialChecksResource(self) |
| 1699 | + |
1655 | 1700 | @cached_property |
1656 | 1701 | def content_scanning(self) -> AsyncContentScanningResource: |
1657 | 1702 | from .resources.content_scanning import AsyncContentScanningResource |
@@ -2046,6 +2091,12 @@ def logpush(self) -> logpush.LogpushResourceWithRawResponse: |
2046 | 2091 |
|
2047 | 2092 | return LogpushResourceWithRawResponse(self._client.logpush) |
2048 | 2093 |
|
| 2094 | + @cached_property |
| 2095 | + def logs(self) -> logs.LogsResourceWithRawResponse: |
| 2096 | + from .resources.logs import LogsResourceWithRawResponse |
| 2097 | + |
| 2098 | + return LogsResourceWithRawResponse(self._client.logs) |
| 2099 | + |
2049 | 2100 | @cached_property |
2050 | 2101 | def origin_tls_client_auth(self) -> origin_tls_client_auth.OriginTLSClientAuthResourceWithRawResponse: |
2051 | 2102 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResourceWithRawResponse |
@@ -2390,12 +2441,24 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithRawResponse: |
2390 | 2441 |
|
2391 | 2442 | return SecurityTXTResourceWithRawResponse(self._client.security_txt) |
2392 | 2443 |
|
| 2444 | + @cached_property |
| 2445 | + def workflows(self) -> workflows.WorkflowsResourceWithRawResponse: |
| 2446 | + from .resources.workflows import WorkflowsResourceWithRawResponse |
| 2447 | + |
| 2448 | + return WorkflowsResourceWithRawResponse(self._client.workflows) |
| 2449 | + |
2393 | 2450 | @cached_property |
2394 | 2451 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithRawResponse: |
2395 | 2452 | from .resources.resource_sharing import ResourceSharingResourceWithRawResponse |
2396 | 2453 |
|
2397 | 2454 | return ResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
2398 | 2455 |
|
| 2456 | + @cached_property |
| 2457 | + def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialChecksResourceWithRawResponse: |
| 2458 | + from .resources.leaked_credential_checks import LeakedCredentialChecksResourceWithRawResponse |
| 2459 | + |
| 2460 | + return LeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
| 2461 | + |
2399 | 2462 | @cached_property |
2400 | 2463 | def content_scanning(self) -> content_scanning.ContentScanningResourceWithRawResponse: |
2401 | 2464 | from .resources.content_scanning import ContentScanningResourceWithRawResponse |
@@ -2607,6 +2670,12 @@ def logpush(self) -> logpush.AsyncLogpushResourceWithRawResponse: |
2607 | 2670 |
|
2608 | 2671 | return AsyncLogpushResourceWithRawResponse(self._client.logpush) |
2609 | 2672 |
|
| 2673 | + @cached_property |
| 2674 | + def logs(self) -> logs.AsyncLogsResourceWithRawResponse: |
| 2675 | + from .resources.logs import AsyncLogsResourceWithRawResponse |
| 2676 | + |
| 2677 | + return AsyncLogsResourceWithRawResponse(self._client.logs) |
| 2678 | + |
2610 | 2679 | @cached_property |
2611 | 2680 | def origin_tls_client_auth(self) -> origin_tls_client_auth.AsyncOriginTLSClientAuthResourceWithRawResponse: |
2612 | 2681 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResourceWithRawResponse |
@@ -2951,12 +3020,24 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithRawResponse: |
2951 | 3020 |
|
2952 | 3021 | return AsyncSecurityTXTResourceWithRawResponse(self._client.security_txt) |
2953 | 3022 |
|
| 3023 | + @cached_property |
| 3024 | + def workflows(self) -> workflows.AsyncWorkflowsResourceWithRawResponse: |
| 3025 | + from .resources.workflows import AsyncWorkflowsResourceWithRawResponse |
| 3026 | + |
| 3027 | + return AsyncWorkflowsResourceWithRawResponse(self._client.workflows) |
| 3028 | + |
2954 | 3029 | @cached_property |
2955 | 3030 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithRawResponse: |
2956 | 3031 | from .resources.resource_sharing import AsyncResourceSharingResourceWithRawResponse |
2957 | 3032 |
|
2958 | 3033 | return AsyncResourceSharingResourceWithRawResponse(self._client.resource_sharing) |
2959 | 3034 |
|
| 3035 | + @cached_property |
| 3036 | + def leaked_credential_checks(self) -> leaked_credential_checks.AsyncLeakedCredentialChecksResourceWithRawResponse: |
| 3037 | + from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResourceWithRawResponse |
| 3038 | + |
| 3039 | + return AsyncLeakedCredentialChecksResourceWithRawResponse(self._client.leaked_credential_checks) |
| 3040 | + |
2960 | 3041 | @cached_property |
2961 | 3042 | def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithRawResponse: |
2962 | 3043 | from .resources.content_scanning import AsyncContentScanningResourceWithRawResponse |
@@ -3168,6 +3249,12 @@ def logpush(self) -> logpush.LogpushResourceWithStreamingResponse: |
3168 | 3249 |
|
3169 | 3250 | return LogpushResourceWithStreamingResponse(self._client.logpush) |
3170 | 3251 |
|
| 3252 | + @cached_property |
| 3253 | + def logs(self) -> logs.LogsResourceWithStreamingResponse: |
| 3254 | + from .resources.logs import LogsResourceWithStreamingResponse |
| 3255 | + |
| 3256 | + return LogsResourceWithStreamingResponse(self._client.logs) |
| 3257 | + |
3171 | 3258 | @cached_property |
3172 | 3259 | def origin_tls_client_auth(self) -> origin_tls_client_auth.OriginTLSClientAuthResourceWithStreamingResponse: |
3173 | 3260 | from .resources.origin_tls_client_auth import OriginTLSClientAuthResourceWithStreamingResponse |
@@ -3512,12 +3599,24 @@ def security_txt(self) -> security_txt.SecurityTXTResourceWithStreamingResponse: |
3512 | 3599 |
|
3513 | 3600 | return SecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
3514 | 3601 |
|
| 3602 | + @cached_property |
| 3603 | + def workflows(self) -> workflows.WorkflowsResourceWithStreamingResponse: |
| 3604 | + from .resources.workflows import WorkflowsResourceWithStreamingResponse |
| 3605 | + |
| 3606 | + return WorkflowsResourceWithStreamingResponse(self._client.workflows) |
| 3607 | + |
3515 | 3608 | @cached_property |
3516 | 3609 | def resource_sharing(self) -> resource_sharing.ResourceSharingResourceWithStreamingResponse: |
3517 | 3610 | from .resources.resource_sharing import ResourceSharingResourceWithStreamingResponse |
3518 | 3611 |
|
3519 | 3612 | return ResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
3520 | 3613 |
|
| 3614 | + @cached_property |
| 3615 | + def leaked_credential_checks(self) -> leaked_credential_checks.LeakedCredentialChecksResourceWithStreamingResponse: |
| 3616 | + from .resources.leaked_credential_checks import LeakedCredentialChecksResourceWithStreamingResponse |
| 3617 | + |
| 3618 | + return LeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
| 3619 | + |
3521 | 3620 | @cached_property |
3522 | 3621 | def content_scanning(self) -> content_scanning.ContentScanningResourceWithStreamingResponse: |
3523 | 3622 | from .resources.content_scanning import ContentScanningResourceWithStreamingResponse |
@@ -3731,6 +3830,12 @@ def logpush(self) -> logpush.AsyncLogpushResourceWithStreamingResponse: |
3731 | 3830 |
|
3732 | 3831 | return AsyncLogpushResourceWithStreamingResponse(self._client.logpush) |
3733 | 3832 |
|
| 3833 | + @cached_property |
| 3834 | + def logs(self) -> logs.AsyncLogsResourceWithStreamingResponse: |
| 3835 | + from .resources.logs import AsyncLogsResourceWithStreamingResponse |
| 3836 | + |
| 3837 | + return AsyncLogsResourceWithStreamingResponse(self._client.logs) |
| 3838 | + |
3734 | 3839 | @cached_property |
3735 | 3840 | def origin_tls_client_auth(self) -> origin_tls_client_auth.AsyncOriginTLSClientAuthResourceWithStreamingResponse: |
3736 | 3841 | from .resources.origin_tls_client_auth import AsyncOriginTLSClientAuthResourceWithStreamingResponse |
@@ -4081,12 +4186,26 @@ def security_txt(self) -> security_txt.AsyncSecurityTXTResourceWithStreamingResp |
4081 | 4186 |
|
4082 | 4187 | return AsyncSecurityTXTResourceWithStreamingResponse(self._client.security_txt) |
4083 | 4188 |
|
| 4189 | + @cached_property |
| 4190 | + def workflows(self) -> workflows.AsyncWorkflowsResourceWithStreamingResponse: |
| 4191 | + from .resources.workflows import AsyncWorkflowsResourceWithStreamingResponse |
| 4192 | + |
| 4193 | + return AsyncWorkflowsResourceWithStreamingResponse(self._client.workflows) |
| 4194 | + |
4084 | 4195 | @cached_property |
4085 | 4196 | def resource_sharing(self) -> resource_sharing.AsyncResourceSharingResourceWithStreamingResponse: |
4086 | 4197 | from .resources.resource_sharing import AsyncResourceSharingResourceWithStreamingResponse |
4087 | 4198 |
|
4088 | 4199 | return AsyncResourceSharingResourceWithStreamingResponse(self._client.resource_sharing) |
4089 | 4200 |
|
| 4201 | + @cached_property |
| 4202 | + def leaked_credential_checks( |
| 4203 | + self, |
| 4204 | + ) -> leaked_credential_checks.AsyncLeakedCredentialChecksResourceWithStreamingResponse: |
| 4205 | + from .resources.leaked_credential_checks import AsyncLeakedCredentialChecksResourceWithStreamingResponse |
| 4206 | + |
| 4207 | + return AsyncLeakedCredentialChecksResourceWithStreamingResponse(self._client.leaked_credential_checks) |
| 4208 | + |
4090 | 4209 | @cached_property |
4091 | 4210 | def content_scanning(self) -> content_scanning.AsyncContentScanningResourceWithStreamingResponse: |
4092 | 4211 | from .resources.content_scanning import AsyncContentScanningResourceWithStreamingResponse |
|
0 commit comments