|
47 | 47 | dns, |
48 | 48 | iam, |
49 | 49 | ips, |
| 50 | + moq, |
50 | 51 | rum, |
51 | 52 | ssl, |
52 | 53 | argo, |
|
88 | 89 | addressing, |
89 | 90 | ai_gateway, |
90 | 91 | audit_logs, |
| 92 | + email_auth, |
91 | 93 | hyperdrive, |
92 | 94 | page_rules, |
93 | 95 | zero_trust, |
|
163 | 165 | from .resources.dns.dns import DNSResource, AsyncDNSResource |
164 | 166 | from .resources.iam.iam import IAMResource, AsyncIAMResource |
165 | 167 | from .resources.ips.ips import IPsResource, AsyncIPsResource |
| 168 | + from .resources.moq.moq import MoQResource, AsyncMoQResource |
166 | 169 | from .resources.rum.rum import RUMResource, AsyncRUMResource |
167 | 170 | from .resources.ssl.ssl import SSLResource, AsyncSSLResource |
168 | 171 | from .resources.argo.argo import ArgoResource, AsyncArgoResource |
|
204 | 207 | from .resources.addressing.addressing import AddressingResource, AsyncAddressingResource |
205 | 208 | from .resources.ai_gateway.ai_gateway import AIGatewayResource, AsyncAIGatewayResource |
206 | 209 | from .resources.audit_logs.audit_logs import AuditLogsResource, AsyncAuditLogsResource |
| 210 | + from .resources.email_auth.email_auth import EmailAuthResource, AsyncEmailAuthResource |
207 | 211 | from .resources.hyperdrive.hyperdrive import HyperdriveResource, AsyncHyperdriveResource |
208 | 212 | from .resources.page_rules.page_rules import PageRulesResource, AsyncPageRulesResource |
209 | 213 | from .resources.zero_trust.zero_trust import ZeroTrustResource, AsyncZeroTrustResource |
@@ -557,6 +561,12 @@ def email_security(self) -> EmailSecurityResource: |
557 | 561 |
|
558 | 562 | return EmailSecurityResource(self) |
559 | 563 |
|
| 564 | + @cached_property |
| 565 | + def email_auth(self) -> EmailAuthResource: |
| 566 | + from .resources.email_auth import EmailAuthResource |
| 567 | + |
| 568 | + return EmailAuthResource(self) |
| 569 | + |
560 | 570 | @cached_property |
561 | 571 | def email_routing(self) -> EmailRoutingResource: |
562 | 572 | from .resources.email_routing import EmailRoutingResource |
@@ -965,6 +975,12 @@ def calls(self) -> CallsResource: |
965 | 975 |
|
966 | 976 | return CallsResource(self) |
967 | 977 |
|
| 978 | + @cached_property |
| 979 | + def moq(self) -> MoQResource: |
| 980 | + from .resources.moq import MoQResource |
| 981 | + |
| 982 | + return MoQResource(self) |
| 983 | + |
968 | 984 | @cached_property |
969 | 985 | def cloudforce_one(self) -> CloudforceOneResource: |
970 | 986 | from .resources.cloudforce_one import CloudforceOneResource |
@@ -1509,6 +1525,12 @@ def email_security(self) -> AsyncEmailSecurityResource: |
1509 | 1525 |
|
1510 | 1526 | return AsyncEmailSecurityResource(self) |
1511 | 1527 |
|
| 1528 | + @cached_property |
| 1529 | + def email_auth(self) -> AsyncEmailAuthResource: |
| 1530 | + from .resources.email_auth import AsyncEmailAuthResource |
| 1531 | + |
| 1532 | + return AsyncEmailAuthResource(self) |
| 1533 | + |
1512 | 1534 | @cached_property |
1513 | 1535 | def email_routing(self) -> AsyncEmailRoutingResource: |
1514 | 1536 | from .resources.email_routing import AsyncEmailRoutingResource |
@@ -1917,6 +1939,12 @@ def calls(self) -> AsyncCallsResource: |
1917 | 1939 |
|
1918 | 1940 | return AsyncCallsResource(self) |
1919 | 1941 |
|
| 1942 | + @cached_property |
| 1943 | + def moq(self) -> AsyncMoQResource: |
| 1944 | + from .resources.moq import AsyncMoQResource |
| 1945 | + |
| 1946 | + return AsyncMoQResource(self) |
| 1947 | + |
1920 | 1948 | @cached_property |
1921 | 1949 | def cloudforce_one(self) -> AsyncCloudforceOneResource: |
1922 | 1950 | from .resources.cloudforce_one import AsyncCloudforceOneResource |
@@ -2381,6 +2409,12 @@ def email_security(self) -> email_security.EmailSecurityResourceWithRawResponse: |
2381 | 2409 |
|
2382 | 2410 | return EmailSecurityResourceWithRawResponse(self._client.email_security) |
2383 | 2411 |
|
| 2412 | + @cached_property |
| 2413 | + def email_auth(self) -> email_auth.EmailAuthResourceWithRawResponse: |
| 2414 | + from .resources.email_auth import EmailAuthResourceWithRawResponse |
| 2415 | + |
| 2416 | + return EmailAuthResourceWithRawResponse(self._client.email_auth) |
| 2417 | + |
2384 | 2418 | @cached_property |
2385 | 2419 | def email_routing(self) -> email_routing.EmailRoutingResourceWithRawResponse: |
2386 | 2420 | from .resources.email_routing import EmailRoutingResourceWithRawResponse |
@@ -2793,6 +2827,12 @@ def calls(self) -> calls.CallsResourceWithRawResponse: |
2793 | 2827 |
|
2794 | 2828 | return CallsResourceWithRawResponse(self._client.calls) |
2795 | 2829 |
|
| 2830 | + @cached_property |
| 2831 | + def moq(self) -> moq.MoQResourceWithRawResponse: |
| 2832 | + from .resources.moq import MoQResourceWithRawResponse |
| 2833 | + |
| 2834 | + return MoQResourceWithRawResponse(self._client.moq) |
| 2835 | + |
2796 | 2836 | @cached_property |
2797 | 2837 | def cloudforce_one(self) -> cloudforce_one.CloudforceOneResourceWithRawResponse: |
2798 | 2838 | from .resources.cloudforce_one import CloudforceOneResourceWithRawResponse |
@@ -3084,6 +3124,12 @@ def email_security(self) -> email_security.AsyncEmailSecurityResourceWithRawResp |
3084 | 3124 |
|
3085 | 3125 | return AsyncEmailSecurityResourceWithRawResponse(self._client.email_security) |
3086 | 3126 |
|
| 3127 | + @cached_property |
| 3128 | + def email_auth(self) -> email_auth.AsyncEmailAuthResourceWithRawResponse: |
| 3129 | + from .resources.email_auth import AsyncEmailAuthResourceWithRawResponse |
| 3130 | + |
| 3131 | + return AsyncEmailAuthResourceWithRawResponse(self._client.email_auth) |
| 3132 | + |
3087 | 3133 | @cached_property |
3088 | 3134 | def email_routing(self) -> email_routing.AsyncEmailRoutingResourceWithRawResponse: |
3089 | 3135 | from .resources.email_routing import AsyncEmailRoutingResourceWithRawResponse |
@@ -3496,6 +3542,12 @@ def calls(self) -> calls.AsyncCallsResourceWithRawResponse: |
3496 | 3542 |
|
3497 | 3543 | return AsyncCallsResourceWithRawResponse(self._client.calls) |
3498 | 3544 |
|
| 3545 | + @cached_property |
| 3546 | + def moq(self) -> moq.AsyncMoQResourceWithRawResponse: |
| 3547 | + from .resources.moq import AsyncMoQResourceWithRawResponse |
| 3548 | + |
| 3549 | + return AsyncMoQResourceWithRawResponse(self._client.moq) |
| 3550 | + |
3499 | 3551 | @cached_property |
3500 | 3552 | def cloudforce_one(self) -> cloudforce_one.AsyncCloudforceOneResourceWithRawResponse: |
3501 | 3553 | from .resources.cloudforce_one import AsyncCloudforceOneResourceWithRawResponse |
@@ -3787,6 +3839,12 @@ def email_security(self) -> email_security.EmailSecurityResourceWithStreamingRes |
3787 | 3839 |
|
3788 | 3840 | return EmailSecurityResourceWithStreamingResponse(self._client.email_security) |
3789 | 3841 |
|
| 3842 | + @cached_property |
| 3843 | + def email_auth(self) -> email_auth.EmailAuthResourceWithStreamingResponse: |
| 3844 | + from .resources.email_auth import EmailAuthResourceWithStreamingResponse |
| 3845 | + |
| 3846 | + return EmailAuthResourceWithStreamingResponse(self._client.email_auth) |
| 3847 | + |
3790 | 3848 | @cached_property |
3791 | 3849 | def email_routing(self) -> email_routing.EmailRoutingResourceWithStreamingResponse: |
3792 | 3850 | from .resources.email_routing import EmailRoutingResourceWithStreamingResponse |
@@ -4199,6 +4257,12 @@ def calls(self) -> calls.CallsResourceWithStreamingResponse: |
4199 | 4257 |
|
4200 | 4258 | return CallsResourceWithStreamingResponse(self._client.calls) |
4201 | 4259 |
|
| 4260 | + @cached_property |
| 4261 | + def moq(self) -> moq.MoQResourceWithStreamingResponse: |
| 4262 | + from .resources.moq import MoQResourceWithStreamingResponse |
| 4263 | + |
| 4264 | + return MoQResourceWithStreamingResponse(self._client.moq) |
| 4265 | + |
4202 | 4266 | @cached_property |
4203 | 4267 | def cloudforce_one(self) -> cloudforce_one.CloudforceOneResourceWithStreamingResponse: |
4204 | 4268 | from .resources.cloudforce_one import CloudforceOneResourceWithStreamingResponse |
@@ -4492,6 +4556,12 @@ def email_security(self) -> email_security.AsyncEmailSecurityResourceWithStreami |
4492 | 4556 |
|
4493 | 4557 | return AsyncEmailSecurityResourceWithStreamingResponse(self._client.email_security) |
4494 | 4558 |
|
| 4559 | + @cached_property |
| 4560 | + def email_auth(self) -> email_auth.AsyncEmailAuthResourceWithStreamingResponse: |
| 4561 | + from .resources.email_auth import AsyncEmailAuthResourceWithStreamingResponse |
| 4562 | + |
| 4563 | + return AsyncEmailAuthResourceWithStreamingResponse(self._client.email_auth) |
| 4564 | + |
4495 | 4565 | @cached_property |
4496 | 4566 | def email_routing(self) -> email_routing.AsyncEmailRoutingResourceWithStreamingResponse: |
4497 | 4567 | from .resources.email_routing import AsyncEmailRoutingResourceWithStreamingResponse |
@@ -4910,6 +4980,12 @@ def calls(self) -> calls.AsyncCallsResourceWithStreamingResponse: |
4910 | 4980 |
|
4911 | 4981 | return AsyncCallsResourceWithStreamingResponse(self._client.calls) |
4912 | 4982 |
|
| 4983 | + @cached_property |
| 4984 | + def moq(self) -> moq.AsyncMoQResourceWithStreamingResponse: |
| 4985 | + from .resources.moq import AsyncMoQResourceWithStreamingResponse |
| 4986 | + |
| 4987 | + return AsyncMoQResourceWithStreamingResponse(self._client.moq) |
| 4988 | + |
4913 | 4989 | @cached_property |
4914 | 4990 | def cloudforce_one(self) -> cloudforce_one.AsyncCloudforceOneResourceWithStreamingResponse: |
4915 | 4991 | from .resources.cloudforce_one import AsyncCloudforceOneResourceWithStreamingResponse |
|
0 commit comments