|
88 | 88 | memberships,
|
89 | 89 | page_shield,
|
90 | 90 | rate_limits,
|
91 |
| - url_scanner, |
92 | 91 | dns_firewall,
|
93 | 92 | healthchecks,
|
94 | 93 | security_txt,
|
|
186 | 185 | from .resources.botnet_feed.botnet_feed import BotnetFeedResource, AsyncBotnetFeedResource
|
187 | 186 | from .resources.diagnostics.diagnostics import DiagnosticsResource, AsyncDiagnosticsResource
|
188 | 187 | from .resources.page_shield.page_shield import PageShieldResource, AsyncPageShieldResource
|
189 |
| - from .resources.url_scanner.url_scanner import URLScannerResource, AsyncURLScannerResource |
190 | 188 | from .resources.dns_firewall.dns_firewall import DNSFirewallResource, AsyncDNSFirewallResource
|
191 | 189 | from .resources.healthchecks.healthchecks import HealthchecksResource, AsyncHealthchecksResource
|
192 | 190 | from .resources.email_routing.email_routing import EmailRoutingResource, AsyncEmailRoutingResource
|
@@ -706,12 +704,6 @@ def vectorize(self) -> VectorizeResource:
|
706 | 704 |
|
707 | 705 | return VectorizeResource(self)
|
708 | 706 |
|
709 |
| - @cached_property |
710 |
| - def url_scanner(self) -> URLScannerResource: |
711 |
| - from .resources.url_scanner import URLScannerResource |
712 |
| - |
713 |
| - return URLScannerResource(self) |
714 |
| - |
715 | 707 | @cached_property
|
716 | 708 | def radar(self) -> RadarResource:
|
717 | 709 | from .resources.radar import RadarResource
|
@@ -1477,12 +1469,6 @@ def vectorize(self) -> AsyncVectorizeResource:
|
1477 | 1469 |
|
1478 | 1470 | return AsyncVectorizeResource(self)
|
1479 | 1471 |
|
1480 |
| - @cached_property |
1481 |
| - def url_scanner(self) -> AsyncURLScannerResource: |
1482 |
| - from .resources.url_scanner import AsyncURLScannerResource |
1483 |
| - |
1484 |
| - return AsyncURLScannerResource(self) |
1485 |
| - |
1486 | 1472 | @cached_property
|
1487 | 1473 | def radar(self) -> AsyncRadarResource:
|
1488 | 1474 | from .resources.radar import AsyncRadarResource
|
@@ -2181,12 +2167,6 @@ def vectorize(self) -> vectorize.VectorizeResourceWithRawResponse:
|
2181 | 2167 |
|
2182 | 2168 | return VectorizeResourceWithRawResponse(self._client.vectorize)
|
2183 | 2169 |
|
2184 |
| - @cached_property |
2185 |
| - def url_scanner(self) -> url_scanner.URLScannerResourceWithRawResponse: |
2186 |
| - from .resources.url_scanner import URLScannerResourceWithRawResponse |
2187 |
| - |
2188 |
| - return URLScannerResourceWithRawResponse(self._client.url_scanner) |
2189 |
| - |
2190 | 2170 | @cached_property
|
2191 | 2171 | def radar(self) -> radar.RadarResourceWithRawResponse:
|
2192 | 2172 | from .resources.radar import RadarResourceWithRawResponse
|
@@ -2706,12 +2686,6 @@ def vectorize(self) -> vectorize.AsyncVectorizeResourceWithRawResponse:
|
2706 | 2686 |
|
2707 | 2687 | return AsyncVectorizeResourceWithRawResponse(self._client.vectorize)
|
2708 | 2688 |
|
2709 |
| - @cached_property |
2710 |
| - def url_scanner(self) -> url_scanner.AsyncURLScannerResourceWithRawResponse: |
2711 |
| - from .resources.url_scanner import AsyncURLScannerResourceWithRawResponse |
2712 |
| - |
2713 |
| - return AsyncURLScannerResourceWithRawResponse(self._client.url_scanner) |
2714 |
| - |
2715 | 2689 | @cached_property
|
2716 | 2690 | def radar(self) -> radar.AsyncRadarResourceWithRawResponse:
|
2717 | 2691 | from .resources.radar import AsyncRadarResourceWithRawResponse
|
@@ -3231,12 +3205,6 @@ def vectorize(self) -> vectorize.VectorizeResourceWithStreamingResponse:
|
3231 | 3205 |
|
3232 | 3206 | return VectorizeResourceWithStreamingResponse(self._client.vectorize)
|
3233 | 3207 |
|
3234 |
| - @cached_property |
3235 |
| - def url_scanner(self) -> url_scanner.URLScannerResourceWithStreamingResponse: |
3236 |
| - from .resources.url_scanner import URLScannerResourceWithStreamingResponse |
3237 |
| - |
3238 |
| - return URLScannerResourceWithStreamingResponse(self._client.url_scanner) |
3239 |
| - |
3240 | 3208 | @cached_property
|
3241 | 3209 | def radar(self) -> radar.RadarResourceWithStreamingResponse:
|
3242 | 3210 | from .resources.radar import RadarResourceWithStreamingResponse
|
@@ -3760,12 +3728,6 @@ def vectorize(self) -> vectorize.AsyncVectorizeResourceWithStreamingResponse:
|
3760 | 3728 |
|
3761 | 3729 | return AsyncVectorizeResourceWithStreamingResponse(self._client.vectorize)
|
3762 | 3730 |
|
3763 |
| - @cached_property |
3764 |
| - def url_scanner(self) -> url_scanner.AsyncURLScannerResourceWithStreamingResponse: |
3765 |
| - from .resources.url_scanner import AsyncURLScannerResourceWithStreamingResponse |
3766 |
| - |
3767 |
| - return AsyncURLScannerResourceWithStreamingResponse(self._client.url_scanner) |
3768 |
| - |
3769 | 3731 | @cached_property
|
3770 | 3732 | def radar(self) -> radar.AsyncRadarResourceWithStreamingResponse:
|
3771 | 3733 | from .resources.radar import AsyncRadarResourceWithStreamingResponse
|
|
0 commit comments