|
75 | 75 | async_to_streamed_response_wrapper, |
76 | 76 | ) |
77 | 77 | from ...._base_client import make_request_options |
78 | | -from .indicator_types import ( |
79 | | - IndicatorTypesResource, |
80 | | - AsyncIndicatorTypesResource, |
81 | | - IndicatorTypesResourceWithRawResponse, |
82 | | - AsyncIndicatorTypesResourceWithRawResponse, |
83 | | - IndicatorTypesResourceWithStreamingResponse, |
84 | | - AsyncIndicatorTypesResourceWithStreamingResponse, |
85 | | -) |
86 | 78 | from .datasets.datasets import ( |
87 | 79 | DatasetsResource, |
88 | 80 | AsyncDatasetsResource, |
@@ -132,10 +124,6 @@ def countries(self) -> CountriesResource: |
132 | 124 | def datasets(self) -> DatasetsResource: |
133 | 125 | return DatasetsResource(self._client) |
134 | 126 |
|
135 | | - @cached_property |
136 | | - def indicator_types(self) -> IndicatorTypesResource: |
137 | | - return IndicatorTypesResource(self._client) |
138 | | - |
139 | 127 | @cached_property |
140 | 128 | def raw(self) -> RawResource: |
141 | 129 | return RawResource(self._client) |
@@ -528,10 +516,6 @@ def countries(self) -> AsyncCountriesResource: |
528 | 516 | def datasets(self) -> AsyncDatasetsResource: |
529 | 517 | return AsyncDatasetsResource(self._client) |
530 | 518 |
|
531 | | - @cached_property |
532 | | - def indicator_types(self) -> AsyncIndicatorTypesResource: |
533 | | - return AsyncIndicatorTypesResource(self._client) |
534 | | - |
535 | 519 | @cached_property |
536 | 520 | def raw(self) -> AsyncRawResource: |
537 | 521 | return AsyncRawResource(self._client) |
@@ -946,10 +930,6 @@ def countries(self) -> CountriesResourceWithRawResponse: |
946 | 930 | def datasets(self) -> DatasetsResourceWithRawResponse: |
947 | 931 | return DatasetsResourceWithRawResponse(self._threat_events.datasets) |
948 | 932 |
|
949 | | - @cached_property |
950 | | - def indicator_types(self) -> IndicatorTypesResourceWithRawResponse: |
951 | | - return IndicatorTypesResourceWithRawResponse(self._threat_events.indicator_types) |
952 | | - |
953 | 933 | @cached_property |
954 | 934 | def raw(self) -> RawResourceWithRawResponse: |
955 | 935 | return RawResourceWithRawResponse(self._threat_events.raw) |
@@ -1010,10 +990,6 @@ def countries(self) -> AsyncCountriesResourceWithRawResponse: |
1010 | 990 | def datasets(self) -> AsyncDatasetsResourceWithRawResponse: |
1011 | 991 | return AsyncDatasetsResourceWithRawResponse(self._threat_events.datasets) |
1012 | 992 |
|
1013 | | - @cached_property |
1014 | | - def indicator_types(self) -> AsyncIndicatorTypesResourceWithRawResponse: |
1015 | | - return AsyncIndicatorTypesResourceWithRawResponse(self._threat_events.indicator_types) |
1016 | | - |
1017 | 993 | @cached_property |
1018 | 994 | def raw(self) -> AsyncRawResourceWithRawResponse: |
1019 | 995 | return AsyncRawResourceWithRawResponse(self._threat_events.raw) |
@@ -1074,10 +1050,6 @@ def countries(self) -> CountriesResourceWithStreamingResponse: |
1074 | 1050 | def datasets(self) -> DatasetsResourceWithStreamingResponse: |
1075 | 1051 | return DatasetsResourceWithStreamingResponse(self._threat_events.datasets) |
1076 | 1052 |
|
1077 | | - @cached_property |
1078 | | - def indicator_types(self) -> IndicatorTypesResourceWithStreamingResponse: |
1079 | | - return IndicatorTypesResourceWithStreamingResponse(self._threat_events.indicator_types) |
1080 | | - |
1081 | 1053 | @cached_property |
1082 | 1054 | def raw(self) -> RawResourceWithStreamingResponse: |
1083 | 1055 | return RawResourceWithStreamingResponse(self._threat_events.raw) |
@@ -1138,10 +1110,6 @@ def countries(self) -> AsyncCountriesResourceWithStreamingResponse: |
1138 | 1110 | def datasets(self) -> AsyncDatasetsResourceWithStreamingResponse: |
1139 | 1111 | return AsyncDatasetsResourceWithStreamingResponse(self._threat_events.datasets) |
1140 | 1112 |
|
1141 | | - @cached_property |
1142 | | - def indicator_types(self) -> AsyncIndicatorTypesResourceWithStreamingResponse: |
1143 | | - return AsyncIndicatorTypesResourceWithStreamingResponse(self._threat_events.indicator_types) |
1144 | | - |
1145 | 1113 | @cached_property |
1146 | 1114 | def raw(self) -> AsyncRawResourceWithStreamingResponse: |
1147 | 1115 | return AsyncRawResourceWithStreamingResponse(self._threat_events.raw) |
|
0 commit comments