|
103 | 103 | bot_management, |
104 | 104 | cloudforce_one, |
105 | 105 | dcv_delegation, |
| 106 | + email_security, |
106 | 107 | load_balancers, |
107 | 108 | cloud_connector, |
108 | 109 | durable_objects, |
| 110 | + r2_data_catalog, |
109 | 111 | request_tracers, |
110 | 112 | security_center, |
111 | 113 | brand_protection, |
|
207 | 209 | from .resources.secrets_store.secrets_store import SecretsStoreResource, AsyncSecretsStoreResource |
208 | 210 | from .resources.waiting_rooms.waiting_rooms import WaitingRoomsResource, AsyncWaitingRoomsResource |
209 | 211 | from .resources.cloudforce_one.cloudforce_one import CloudforceOneResource, AsyncCloudforceOneResource |
| 212 | + from .resources.email_security.email_security import EmailSecurityResource, AsyncEmailSecurityResource |
210 | 213 | from .resources.load_balancers.load_balancers import LoadBalancersResource, AsyncLoadBalancersResource |
211 | 214 | from .resources.origin_post_quantum_encryption import ( |
212 | 215 | OriginPostQuantumEncryptionResource, |
213 | 216 | AsyncOriginPostQuantumEncryptionResource, |
214 | 217 | ) |
215 | 218 | from .resources.cloud_connector.cloud_connector import CloudConnectorResource, AsyncCloudConnectorResource |
216 | 219 | from .resources.durable_objects.durable_objects import DurableObjectsResource, AsyncDurableObjectsResource |
| 220 | + from .resources.r2_data_catalog.r2_data_catalog import R2DataCatalogResource, AsyncR2DataCatalogResource |
217 | 221 | from .resources.request_tracers.request_tracers import RequestTracersResource, AsyncRequestTracersResource |
218 | 222 | from .resources.security_center.security_center import SecurityCenterResource, AsyncSecurityCenterResource |
219 | 223 | from .resources.brand_protection.brand_protection import BrandProtectionResource, AsyncBrandProtectionResource |
@@ -461,6 +465,12 @@ def dns(self) -> DNSResource: |
461 | 465 |
|
462 | 466 | return DNSResource(self) |
463 | 467 |
|
| 468 | + @cached_property |
| 469 | + def email_security(self) -> EmailSecurityResource: |
| 470 | + from .resources.email_security import EmailSecurityResource |
| 471 | + |
| 472 | + return EmailSecurityResource(self) |
| 473 | + |
464 | 474 | @cached_property |
465 | 475 | def email_routing(self) -> EmailRoutingResource: |
466 | 476 | from .resources.email_routing import EmailRoutingResource |
@@ -713,6 +723,12 @@ def r2(self) -> R2Resource: |
713 | 723 |
|
714 | 724 | return R2Resource(self) |
715 | 725 |
|
| 726 | + @cached_property |
| 727 | + def r2_data_catalog(self) -> R2DataCatalogResource: |
| 728 | + from .resources.r2_data_catalog import R2DataCatalogResource |
| 729 | + |
| 730 | + return R2DataCatalogResource(self) |
| 731 | + |
716 | 732 | @cached_property |
717 | 733 | def workers_for_platforms(self) -> WorkersForPlatformsResource: |
718 | 734 | from .resources.workers_for_platforms import WorkersForPlatformsResource |
@@ -1305,6 +1321,12 @@ def dns(self) -> AsyncDNSResource: |
1305 | 1321 |
|
1306 | 1322 | return AsyncDNSResource(self) |
1307 | 1323 |
|
| 1324 | + @cached_property |
| 1325 | + def email_security(self) -> AsyncEmailSecurityResource: |
| 1326 | + from .resources.email_security import AsyncEmailSecurityResource |
| 1327 | + |
| 1328 | + return AsyncEmailSecurityResource(self) |
| 1329 | + |
1308 | 1330 | @cached_property |
1309 | 1331 | def email_routing(self) -> AsyncEmailRoutingResource: |
1310 | 1332 | from .resources.email_routing import AsyncEmailRoutingResource |
@@ -1557,6 +1579,12 @@ def r2(self) -> AsyncR2Resource: |
1557 | 1579 |
|
1558 | 1580 | return AsyncR2Resource(self) |
1559 | 1581 |
|
| 1582 | + @cached_property |
| 1583 | + def r2_data_catalog(self) -> AsyncR2DataCatalogResource: |
| 1584 | + from .resources.r2_data_catalog import AsyncR2DataCatalogResource |
| 1585 | + |
| 1586 | + return AsyncR2DataCatalogResource(self) |
| 1587 | + |
1560 | 1588 | @cached_property |
1561 | 1589 | def workers_for_platforms(self) -> AsyncWorkersForPlatformsResource: |
1562 | 1590 | from .resources.workers_for_platforms import AsyncWorkersForPlatformsResource |
@@ -2077,6 +2105,12 @@ def dns(self) -> dns.DNSResourceWithRawResponse: |
2077 | 2105 |
|
2078 | 2106 | return DNSResourceWithRawResponse(self._client.dns) |
2079 | 2107 |
|
| 2108 | + @cached_property |
| 2109 | + def email_security(self) -> email_security.EmailSecurityResourceWithRawResponse: |
| 2110 | + from .resources.email_security import EmailSecurityResourceWithRawResponse |
| 2111 | + |
| 2112 | + return EmailSecurityResourceWithRawResponse(self._client.email_security) |
| 2113 | + |
2080 | 2114 | @cached_property |
2081 | 2115 | def email_routing(self) -> email_routing.EmailRoutingResourceWithRawResponse: |
2082 | 2116 | from .resources.email_routing import EmailRoutingResourceWithRawResponse |
@@ -2329,6 +2363,12 @@ def r2(self) -> r2.R2ResourceWithRawResponse: |
2329 | 2363 |
|
2330 | 2364 | return R2ResourceWithRawResponse(self._client.r2) |
2331 | 2365 |
|
| 2366 | + @cached_property |
| 2367 | + def r2_data_catalog(self) -> r2_data_catalog.R2DataCatalogResourceWithRawResponse: |
| 2368 | + from .resources.r2_data_catalog import R2DataCatalogResourceWithRawResponse |
| 2369 | + |
| 2370 | + return R2DataCatalogResourceWithRawResponse(self._client.r2_data_catalog) |
| 2371 | + |
2332 | 2372 | @cached_property |
2333 | 2373 | def workers_for_platforms(self) -> workers_for_platforms.WorkersForPlatformsResourceWithRawResponse: |
2334 | 2374 | from .resources.workers_for_platforms import WorkersForPlatformsResourceWithRawResponse |
@@ -2668,6 +2708,12 @@ def dns(self) -> dns.AsyncDNSResourceWithRawResponse: |
2668 | 2708 |
|
2669 | 2709 | return AsyncDNSResourceWithRawResponse(self._client.dns) |
2670 | 2710 |
|
| 2711 | + @cached_property |
| 2712 | + def email_security(self) -> email_security.AsyncEmailSecurityResourceWithRawResponse: |
| 2713 | + from .resources.email_security import AsyncEmailSecurityResourceWithRawResponse |
| 2714 | + |
| 2715 | + return AsyncEmailSecurityResourceWithRawResponse(self._client.email_security) |
| 2716 | + |
2671 | 2717 | @cached_property |
2672 | 2718 | def email_routing(self) -> email_routing.AsyncEmailRoutingResourceWithRawResponse: |
2673 | 2719 | from .resources.email_routing import AsyncEmailRoutingResourceWithRawResponse |
@@ -2920,6 +2966,12 @@ def r2(self) -> r2.AsyncR2ResourceWithRawResponse: |
2920 | 2966 |
|
2921 | 2967 | return AsyncR2ResourceWithRawResponse(self._client.r2) |
2922 | 2968 |
|
| 2969 | + @cached_property |
| 2970 | + def r2_data_catalog(self) -> r2_data_catalog.AsyncR2DataCatalogResourceWithRawResponse: |
| 2971 | + from .resources.r2_data_catalog import AsyncR2DataCatalogResourceWithRawResponse |
| 2972 | + |
| 2973 | + return AsyncR2DataCatalogResourceWithRawResponse(self._client.r2_data_catalog) |
| 2974 | + |
2923 | 2975 | @cached_property |
2924 | 2976 | def workers_for_platforms(self) -> workers_for_platforms.AsyncWorkersForPlatformsResourceWithRawResponse: |
2925 | 2977 | from .resources.workers_for_platforms import AsyncWorkersForPlatformsResourceWithRawResponse |
@@ -3259,6 +3311,12 @@ def dns(self) -> dns.DNSResourceWithStreamingResponse: |
3259 | 3311 |
|
3260 | 3312 | return DNSResourceWithStreamingResponse(self._client.dns) |
3261 | 3313 |
|
| 3314 | + @cached_property |
| 3315 | + def email_security(self) -> email_security.EmailSecurityResourceWithStreamingResponse: |
| 3316 | + from .resources.email_security import EmailSecurityResourceWithStreamingResponse |
| 3317 | + |
| 3318 | + return EmailSecurityResourceWithStreamingResponse(self._client.email_security) |
| 3319 | + |
3262 | 3320 | @cached_property |
3263 | 3321 | def email_routing(self) -> email_routing.EmailRoutingResourceWithStreamingResponse: |
3264 | 3322 | from .resources.email_routing import EmailRoutingResourceWithStreamingResponse |
@@ -3511,6 +3569,12 @@ def r2(self) -> r2.R2ResourceWithStreamingResponse: |
3511 | 3569 |
|
3512 | 3570 | return R2ResourceWithStreamingResponse(self._client.r2) |
3513 | 3571 |
|
| 3572 | + @cached_property |
| 3573 | + def r2_data_catalog(self) -> r2_data_catalog.R2DataCatalogResourceWithStreamingResponse: |
| 3574 | + from .resources.r2_data_catalog import R2DataCatalogResourceWithStreamingResponse |
| 3575 | + |
| 3576 | + return R2DataCatalogResourceWithStreamingResponse(self._client.r2_data_catalog) |
| 3577 | + |
3514 | 3578 | @cached_property |
3515 | 3579 | def workers_for_platforms(self) -> workers_for_platforms.WorkersForPlatformsResourceWithStreamingResponse: |
3516 | 3580 | from .resources.workers_for_platforms import WorkersForPlatformsResourceWithStreamingResponse |
@@ -3852,6 +3916,12 @@ def dns(self) -> dns.AsyncDNSResourceWithStreamingResponse: |
3852 | 3916 |
|
3853 | 3917 | return AsyncDNSResourceWithStreamingResponse(self._client.dns) |
3854 | 3918 |
|
| 3919 | + @cached_property |
| 3920 | + def email_security(self) -> email_security.AsyncEmailSecurityResourceWithStreamingResponse: |
| 3921 | + from .resources.email_security import AsyncEmailSecurityResourceWithStreamingResponse |
| 3922 | + |
| 3923 | + return AsyncEmailSecurityResourceWithStreamingResponse(self._client.email_security) |
| 3924 | + |
3855 | 3925 | @cached_property |
3856 | 3926 | def email_routing(self) -> email_routing.AsyncEmailRoutingResourceWithStreamingResponse: |
3857 | 3927 | from .resources.email_routing import AsyncEmailRoutingResourceWithStreamingResponse |
@@ -4106,6 +4176,12 @@ def r2(self) -> r2.AsyncR2ResourceWithStreamingResponse: |
4106 | 4176 |
|
4107 | 4177 | return AsyncR2ResourceWithStreamingResponse(self._client.r2) |
4108 | 4178 |
|
| 4179 | + @cached_property |
| 4180 | + def r2_data_catalog(self) -> r2_data_catalog.AsyncR2DataCatalogResourceWithStreamingResponse: |
| 4181 | + from .resources.r2_data_catalog import AsyncR2DataCatalogResourceWithStreamingResponse |
| 4182 | + |
| 4183 | + return AsyncR2DataCatalogResourceWithStreamingResponse(self._client.r2_data_catalog) |
| 4184 | + |
4109 | 4185 | @cached_property |
4110 | 4186 | def workers_for_platforms(self) -> workers_for_platforms.AsyncWorkersForPlatformsResourceWithStreamingResponse: |
4111 | 4187 | from .resources.workers_for_platforms import AsyncWorkersForPlatformsResourceWithStreamingResponse |
|
0 commit comments