|
36 | 36 | BatchResourceWithStreamingResponse, |
37 | 37 | AsyncBatchResourceWithStreamingResponse, |
38 | 38 | ) |
| 39 | +from .configurations import ( |
| 40 | + ConfigurationsResource, |
| 41 | + AsyncConfigurationsResource, |
| 42 | + ConfigurationsResourceWithRawResponse, |
| 43 | + AsyncConfigurationsResourceWithRawResponse, |
| 44 | + ConfigurationsResourceWithStreamingResponse, |
| 45 | + AsyncConfigurationsResourceWithStreamingResponse, |
| 46 | +) |
39 | 47 | from .parse_configurations import ( |
40 | 48 | ParseConfigurationsResource, |
41 | 49 | AsyncParseConfigurationsResource, |
@@ -65,6 +73,10 @@ def agent_data(self) -> AgentDataResource: |
65 | 73 | def parse_configurations(self) -> ParseConfigurationsResource: |
66 | 74 | return ParseConfigurationsResource(self._client) |
67 | 75 |
|
| 76 | + @cached_property |
| 77 | + def configurations(self) -> ConfigurationsResource: |
| 78 | + return ConfigurationsResource(self._client) |
| 79 | + |
68 | 80 | @cached_property |
69 | 81 | def sheets(self) -> SheetsResource: |
70 | 82 | return SheetsResource(self._client) |
@@ -110,6 +122,10 @@ def agent_data(self) -> AsyncAgentDataResource: |
110 | 122 | def parse_configurations(self) -> AsyncParseConfigurationsResource: |
111 | 123 | return AsyncParseConfigurationsResource(self._client) |
112 | 124 |
|
| 125 | + @cached_property |
| 126 | + def configurations(self) -> AsyncConfigurationsResource: |
| 127 | + return AsyncConfigurationsResource(self._client) |
| 128 | + |
113 | 129 | @cached_property |
114 | 130 | def sheets(self) -> AsyncSheetsResource: |
115 | 131 | return AsyncSheetsResource(self._client) |
@@ -158,6 +174,10 @@ def agent_data(self) -> AgentDataResourceWithRawResponse: |
158 | 174 | def parse_configurations(self) -> ParseConfigurationsResourceWithRawResponse: |
159 | 175 | return ParseConfigurationsResourceWithRawResponse(self._beta.parse_configurations) |
160 | 176 |
|
| 177 | + @cached_property |
| 178 | + def configurations(self) -> ConfigurationsResourceWithRawResponse: |
| 179 | + return ConfigurationsResourceWithRawResponse(self._beta.configurations) |
| 180 | + |
161 | 181 | @cached_property |
162 | 182 | def sheets(self) -> SheetsResourceWithRawResponse: |
163 | 183 | return SheetsResourceWithRawResponse(self._beta.sheets) |
@@ -187,6 +207,10 @@ def agent_data(self) -> AsyncAgentDataResourceWithRawResponse: |
187 | 207 | def parse_configurations(self) -> AsyncParseConfigurationsResourceWithRawResponse: |
188 | 208 | return AsyncParseConfigurationsResourceWithRawResponse(self._beta.parse_configurations) |
189 | 209 |
|
| 210 | + @cached_property |
| 211 | + def configurations(self) -> AsyncConfigurationsResourceWithRawResponse: |
| 212 | + return AsyncConfigurationsResourceWithRawResponse(self._beta.configurations) |
| 213 | + |
190 | 214 | @cached_property |
191 | 215 | def sheets(self) -> AsyncSheetsResourceWithRawResponse: |
192 | 216 | return AsyncSheetsResourceWithRawResponse(self._beta.sheets) |
@@ -216,6 +240,10 @@ def agent_data(self) -> AgentDataResourceWithStreamingResponse: |
216 | 240 | def parse_configurations(self) -> ParseConfigurationsResourceWithStreamingResponse: |
217 | 241 | return ParseConfigurationsResourceWithStreamingResponse(self._beta.parse_configurations) |
218 | 242 |
|
| 243 | + @cached_property |
| 244 | + def configurations(self) -> ConfigurationsResourceWithStreamingResponse: |
| 245 | + return ConfigurationsResourceWithStreamingResponse(self._beta.configurations) |
| 246 | + |
219 | 247 | @cached_property |
220 | 248 | def sheets(self) -> SheetsResourceWithStreamingResponse: |
221 | 249 | return SheetsResourceWithStreamingResponse(self._beta.sheets) |
@@ -245,6 +273,10 @@ def agent_data(self) -> AsyncAgentDataResourceWithStreamingResponse: |
245 | 273 | def parse_configurations(self) -> AsyncParseConfigurationsResourceWithStreamingResponse: |
246 | 274 | return AsyncParseConfigurationsResourceWithStreamingResponse(self._beta.parse_configurations) |
247 | 275 |
|
| 276 | + @cached_property |
| 277 | + def configurations(self) -> AsyncConfigurationsResourceWithStreamingResponse: |
| 278 | + return AsyncConfigurationsResourceWithStreamingResponse(self._beta.configurations) |
| 279 | + |
248 | 280 | @cached_property |
249 | 281 | def sheets(self) -> AsyncSheetsResourceWithStreamingResponse: |
250 | 282 | return AsyncSheetsResourceWithStreamingResponse(self._beta.sheets) |
|
0 commit comments