|
8 | 8 |
|
9 | 9 | from ...._types import Body, Omit, Query, Headers, NotGiven, omit, not_given |
10 | 10 | from ...._utils import maybe_transform, async_maybe_transform |
11 | | -from .downloads import ( |
12 | | - DownloadsResource, |
13 | | - AsyncDownloadsResource, |
14 | | - DownloadsResourceWithRawResponse, |
15 | | - AsyncDownloadsResourceWithRawResponse, |
16 | | - DownloadsResourceWithStreamingResponse, |
17 | | - AsyncDownloadsResourceWithStreamingResponse, |
18 | | -) |
19 | 11 | from .snapshots import ( |
20 | 12 | SnapshotsResource, |
21 | 13 | AsyncSnapshotsResource, |
@@ -61,10 +53,6 @@ def snapshots(self) -> SnapshotsResource: |
61 | 53 | def permissions(self) -> PermissionsResource: |
62 | 54 | return PermissionsResource(self._client) |
63 | 55 |
|
64 | | - @cached_property |
65 | | - def downloads(self) -> DownloadsResource: |
66 | | - return DownloadsResource(self._client) |
67 | | - |
68 | 56 | @cached_property |
69 | 57 | def with_raw_response(self) -> IndicatorFeedsResourceWithRawResponse: |
70 | 58 | """ |
@@ -330,10 +318,6 @@ def snapshots(self) -> AsyncSnapshotsResource: |
330 | 318 | def permissions(self) -> AsyncPermissionsResource: |
331 | 319 | return AsyncPermissionsResource(self._client) |
332 | 320 |
|
333 | | - @cached_property |
334 | | - def downloads(self) -> AsyncDownloadsResource: |
335 | | - return AsyncDownloadsResource(self._client) |
336 | | - |
337 | 321 | @cached_property |
338 | 322 | def with_raw_response(self) -> AsyncIndicatorFeedsResourceWithRawResponse: |
339 | 323 | """ |
@@ -618,10 +602,6 @@ def snapshots(self) -> SnapshotsResourceWithRawResponse: |
618 | 602 | def permissions(self) -> PermissionsResourceWithRawResponse: |
619 | 603 | return PermissionsResourceWithRawResponse(self._indicator_feeds.permissions) |
620 | 604 |
|
621 | | - @cached_property |
622 | | - def downloads(self) -> DownloadsResourceWithRawResponse: |
623 | | - return DownloadsResourceWithRawResponse(self._indicator_feeds.downloads) |
624 | | - |
625 | 605 |
|
626 | 606 | class AsyncIndicatorFeedsResourceWithRawResponse: |
627 | 607 | def __init__(self, indicator_feeds: AsyncIndicatorFeedsResource) -> None: |
@@ -651,10 +631,6 @@ def snapshots(self) -> AsyncSnapshotsResourceWithRawResponse: |
651 | 631 | def permissions(self) -> AsyncPermissionsResourceWithRawResponse: |
652 | 632 | return AsyncPermissionsResourceWithRawResponse(self._indicator_feeds.permissions) |
653 | 633 |
|
654 | | - @cached_property |
655 | | - def downloads(self) -> AsyncDownloadsResourceWithRawResponse: |
656 | | - return AsyncDownloadsResourceWithRawResponse(self._indicator_feeds.downloads) |
657 | | - |
658 | 634 |
|
659 | 635 | class IndicatorFeedsResourceWithStreamingResponse: |
660 | 636 | def __init__(self, indicator_feeds: IndicatorFeedsResource) -> None: |
@@ -684,10 +660,6 @@ def snapshots(self) -> SnapshotsResourceWithStreamingResponse: |
684 | 660 | def permissions(self) -> PermissionsResourceWithStreamingResponse: |
685 | 661 | return PermissionsResourceWithStreamingResponse(self._indicator_feeds.permissions) |
686 | 662 |
|
687 | | - @cached_property |
688 | | - def downloads(self) -> DownloadsResourceWithStreamingResponse: |
689 | | - return DownloadsResourceWithStreamingResponse(self._indicator_feeds.downloads) |
690 | | - |
691 | 663 |
|
692 | 664 | class AsyncIndicatorFeedsResourceWithStreamingResponse: |
693 | 665 | def __init__(self, indicator_feeds: AsyncIndicatorFeedsResource) -> None: |
@@ -716,7 +688,3 @@ def snapshots(self) -> AsyncSnapshotsResourceWithStreamingResponse: |
716 | 688 | @cached_property |
717 | 689 | def permissions(self) -> AsyncPermissionsResourceWithStreamingResponse: |
718 | 690 | return AsyncPermissionsResourceWithStreamingResponse(self._indicator_feeds.permissions) |
719 | | - |
720 | | - @cached_property |
721 | | - def downloads(self) -> AsyncDownloadsResourceWithStreamingResponse: |
722 | | - return AsyncDownloadsResourceWithStreamingResponse(self._indicator_feeds.downloads) |
0 commit comments