|
92 | 92 | dns_firewall, |
93 | 93 | healthchecks, |
94 | 94 | security_txt, |
95 | | - smart_shield, |
96 | 95 | abuse_reports, |
97 | 96 | email_routing, |
98 | 97 | magic_transit, |
|
160 | 159 | from .resources.zones.zones import ZonesResource, AsyncZonesResource |
161 | 160 | from .resources.custom_pages import CustomPagesResource, AsyncCustomPagesResource |
162 | 161 | from .resources.security_txt import SecurityTXTResource, AsyncSecurityTXTResource |
163 | | - from .resources.smart_shield import SmartShieldResource, AsyncSmartShieldResource |
164 | 162 | from .resources.abuse_reports import AbuseReportsResource, AsyncAbuseReportsResource |
165 | 163 | from .resources.images.images import ImagesResource, AsyncImagesResource |
166 | 164 | from .resources.queues.queues import QueuesResource, AsyncQueuesResource |
@@ -517,12 +515,6 @@ def rate_limits(self) -> RateLimitsResource: |
517 | 515 |
|
518 | 516 | return RateLimitsResource(self) |
519 | 517 |
|
520 | | - @cached_property |
521 | | - def smart_shield(self) -> SmartShieldResource: |
522 | | - from .resources.smart_shield import SmartShieldResource |
523 | | - |
524 | | - return SmartShieldResource(self) |
525 | | - |
526 | 518 | @cached_property |
527 | 519 | def waiting_rooms(self) -> WaitingRoomsResource: |
528 | 520 | from .resources.waiting_rooms import WaitingRoomsResource |
@@ -1349,12 +1341,6 @@ def rate_limits(self) -> AsyncRateLimitsResource: |
1349 | 1341 |
|
1350 | 1342 | return AsyncRateLimitsResource(self) |
1351 | 1343 |
|
1352 | | - @cached_property |
1353 | | - def smart_shield(self) -> AsyncSmartShieldResource: |
1354 | | - from .resources.smart_shield import AsyncSmartShieldResource |
1355 | | - |
1356 | | - return AsyncSmartShieldResource(self) |
1357 | | - |
1358 | 1344 | @cached_property |
1359 | 1345 | def waiting_rooms(self) -> AsyncWaitingRoomsResource: |
1360 | 1346 | from .resources.waiting_rooms import AsyncWaitingRoomsResource |
@@ -2109,12 +2095,6 @@ def rate_limits(self) -> rate_limits.RateLimitsResourceWithRawResponse: |
2109 | 2095 |
|
2110 | 2096 | return RateLimitsResourceWithRawResponse(self._client.rate_limits) |
2111 | 2097 |
|
2112 | | - @cached_property |
2113 | | - def smart_shield(self) -> smart_shield.SmartShieldResourceWithRawResponse: |
2114 | | - from .resources.smart_shield import SmartShieldResourceWithRawResponse |
2115 | | - |
2116 | | - return SmartShieldResourceWithRawResponse(self._client.smart_shield) |
2117 | | - |
2118 | 2098 | @cached_property |
2119 | 2099 | def waiting_rooms(self) -> waiting_rooms.WaitingRoomsResourceWithRawResponse: |
2120 | 2100 | from .resources.waiting_rooms import WaitingRoomsResourceWithRawResponse |
@@ -2688,12 +2668,6 @@ def rate_limits(self) -> rate_limits.AsyncRateLimitsResourceWithRawResponse: |
2688 | 2668 |
|
2689 | 2669 | return AsyncRateLimitsResourceWithRawResponse(self._client.rate_limits) |
2690 | 2670 |
|
2691 | | - @cached_property |
2692 | | - def smart_shield(self) -> smart_shield.AsyncSmartShieldResourceWithRawResponse: |
2693 | | - from .resources.smart_shield import AsyncSmartShieldResourceWithRawResponse |
2694 | | - |
2695 | | - return AsyncSmartShieldResourceWithRawResponse(self._client.smart_shield) |
2696 | | - |
2697 | 2671 | @cached_property |
2698 | 2672 | def waiting_rooms(self) -> waiting_rooms.AsyncWaitingRoomsResourceWithRawResponse: |
2699 | 2673 | from .resources.waiting_rooms import AsyncWaitingRoomsResourceWithRawResponse |
@@ -3267,12 +3241,6 @@ def rate_limits(self) -> rate_limits.RateLimitsResourceWithStreamingResponse: |
3267 | 3241 |
|
3268 | 3242 | return RateLimitsResourceWithStreamingResponse(self._client.rate_limits) |
3269 | 3243 |
|
3270 | | - @cached_property |
3271 | | - def smart_shield(self) -> smart_shield.SmartShieldResourceWithStreamingResponse: |
3272 | | - from .resources.smart_shield import SmartShieldResourceWithStreamingResponse |
3273 | | - |
3274 | | - return SmartShieldResourceWithStreamingResponse(self._client.smart_shield) |
3275 | | - |
3276 | 3244 | @cached_property |
3277 | 3245 | def waiting_rooms(self) -> waiting_rooms.WaitingRoomsResourceWithStreamingResponse: |
3278 | 3246 | from .resources.waiting_rooms import WaitingRoomsResourceWithStreamingResponse |
@@ -3848,12 +3816,6 @@ def rate_limits(self) -> rate_limits.AsyncRateLimitsResourceWithStreamingRespons |
3848 | 3816 |
|
3849 | 3817 | return AsyncRateLimitsResourceWithStreamingResponse(self._client.rate_limits) |
3850 | 3818 |
|
3851 | | - @cached_property |
3852 | | - def smart_shield(self) -> smart_shield.AsyncSmartShieldResourceWithStreamingResponse: |
3853 | | - from .resources.smart_shield import AsyncSmartShieldResourceWithStreamingResponse |
3854 | | - |
3855 | | - return AsyncSmartShieldResourceWithStreamingResponse(self._client.smart_shield) |
3856 | | - |
3857 | 3819 | @cached_property |
3858 | 3820 | def waiting_rooms(self) -> waiting_rooms.AsyncWaitingRoomsResourceWithStreamingResponse: |
3859 | 3821 | from .resources.waiting_rooms import AsyncWaitingRoomsResourceWithStreamingResponse |
|
0 commit comments