|
26 | 26 | IPsResourceWithStreamingResponse,
|
27 | 27 | AsyncIPsResourceWithStreamingResponse,
|
28 | 28 | )
|
29 |
| -from .whois import ( |
30 |
| - WhoisResource, |
31 |
| - AsyncWhoisResource, |
32 |
| - WhoisResourceWithRawResponse, |
33 |
| - AsyncWhoisResourceWithRawResponse, |
34 |
| - WhoisResourceWithStreamingResponse, |
35 |
| - AsyncWhoisResourceWithStreamingResponse, |
36 |
| -) |
37 | 29 | from .asn.asn import ASNResource, AsyncASNResource
|
38 | 30 | from .domains import (
|
39 | 31 | DomainsResource,
|
@@ -129,10 +121,6 @@ def ip_lists(self) -> IPListsResource:
|
129 | 121 | def miscategorizations(self) -> MiscategorizationsResource:
|
130 | 122 | return MiscategorizationsResource(self._client)
|
131 | 123 |
|
132 |
| - @cached_property |
133 |
| - def whois(self) -> WhoisResource: |
134 |
| - return WhoisResource(self._client) |
135 |
| - |
136 | 124 | @cached_property
|
137 | 125 | def indicator_feeds(self) -> IndicatorFeedsResource:
|
138 | 126 | return IndicatorFeedsResource(self._client)
|
@@ -183,10 +171,6 @@ def ip_lists(self) -> AsyncIPListsResource:
|
183 | 171 | def miscategorizations(self) -> AsyncMiscategorizationsResource:
|
184 | 172 | return AsyncMiscategorizationsResource(self._client)
|
185 | 173 |
|
186 |
| - @cached_property |
187 |
| - def whois(self) -> AsyncWhoisResource: |
188 |
| - return AsyncWhoisResource(self._client) |
189 |
| - |
190 | 174 | @cached_property
|
191 | 175 | def indicator_feeds(self) -> AsyncIndicatorFeedsResource:
|
192 | 176 | return AsyncIndicatorFeedsResource(self._client)
|
@@ -240,10 +224,6 @@ def ip_lists(self) -> IPListsResourceWithRawResponse:
|
240 | 224 | def miscategorizations(self) -> MiscategorizationsResourceWithRawResponse:
|
241 | 225 | return MiscategorizationsResourceWithRawResponse(self._intel.miscategorizations)
|
242 | 226 |
|
243 |
| - @cached_property |
244 |
| - def whois(self) -> WhoisResourceWithRawResponse: |
245 |
| - return WhoisResourceWithRawResponse(self._intel.whois) |
246 |
| - |
247 | 227 | @cached_property
|
248 | 228 | def indicator_feeds(self) -> IndicatorFeedsResourceWithRawResponse:
|
249 | 229 | return IndicatorFeedsResourceWithRawResponse(self._intel.indicator_feeds)
|
@@
A3E2
-289,10 +269,6 @@ def ip_lists(self) -> AsyncIPListsResourceWithRawResponse:
|
289 | 269 | def miscategorizations(self) -> AsyncMiscategorizationsResourceWithRawResponse:
|
290 | 270 | return AsyncMiscategorizationsResourceWithRawResponse(self._intel.miscategorizations)
|
291 | 271 |
|
292 |
| - @cached_property |
293 |
| - def whois(self) -> AsyncWhoisResourceWithRawResponse: |
294 |
| - return AsyncWhoisResourceWithRawResponse(self._intel.whois) |
295 |
| - |
296 | 272 | @cached_property
|
297 | 273 | def indicator_feeds(self) -> AsyncIndicatorFeedsResourceWithRawResponse:
|
298 | 274 | return AsyncIndicatorFeedsResourceWithRawResponse(self._intel.indicator_feeds)
|
@@ -338,10 +314,6 @@ def ip_lists(self) -> IPListsResourceWithStreamingResponse:
|
338 | 314 | def miscategorizations(self) -> MiscategorizationsResourceWithStreamingResponse:
|
339 | 315 | return MiscategorizationsResourceWithStreamingResponse(self._intel.miscategorizations)
|
340 | 316 |
|
341 |
| - @cached_property |
342 |
| - def whois(self) -> WhoisResourceWithStreamingResponse: |
343 |
| - return WhoisResourceWithStreamingResponse(self._intel.whois) |
344 |
| - |
345 | 317 | @cached_property
|
346 | 318 | def indicator_feeds(self) -> IndicatorFeedsResourceWithStreamingResponse:
|
347 | 319 | return IndicatorFeedsResourceWithStreamingResponse(self._intel.indicator_feeds)
|
@@ -387,10 +359,6 @@ def ip_lists(self) -> AsyncIPListsResourceWithStreamingResponse:
|
387 | 359 | def miscategorizations(self) -> AsyncMiscategorizationsResourceWithStreamingResponse:
|
388 | 360 | return AsyncMiscategorizationsResourceWithStreamingResponse(self._intel.miscategorizations)
|
389 | 361 |
|
390 |
| - @cached_property |
391 |
| - def whois(self) -> AsyncWhoisResourceWithStreamingResponse: |
392 |
| - return AsyncWhoisResourceWithStreamingResponse(self._intel.whois) |
393 |
| - |
394 | 362 | @cached_property
|
395 | 363 | def indicator_feeds(self) -> AsyncIndicatorFeedsResourceWithStreamingResponse:
|
396 | 364 | return AsyncIndicatorFeedsResourceWithStreamingResponse(self._intel.indicator_feeds)
|
|
0 commit comments