|
10 | 10 | SchemasResourceWithStreamingResponse,
|
11 | 11 | AsyncSchemasResourceWithStreamingResponse,
|
12 | 12 | )
|
13 |
| -from .settings import ( |
| 13 | +from ..._compat import cached_property |
| 14 | +from ..._resource import SyncAPIResource, AsyncAPIResource |
| 15 | +from .configurations import ( |
| 16 | + ConfigurationsResource, |
| 17 | + AsyncConfigurationsResource, |
| 18 | + ConfigurationsResourceWithRawResponse, |
| 19 | + AsyncConfigurationsResourceWithRawResponse, |
| 20 | + ConfigurationsResourceWithStreamingResponse, |
| 21 | + AsyncConfigurationsResourceWithStreamingResponse, |
| 22 | +) |
| 23 | +from .settings.settings import ( |
14 | 24 | SettingsResource,
|
15 | 25 | AsyncSettingsResource,
|
16 | 26 | SettingsResourceWithRawResponse,
|
17 | 27 | AsyncSettingsResourceWithRawResponse,
|
18 | 28 | SettingsResourceWithStreamingResponse,
|
19 | 29 | AsyncSettingsResourceWithStreamingResponse,
|
20 | 30 | )
|
21 |
| -from ..._compat import cached_property |
22 |
| -from .discovery import ( |
| 31 | +from .discovery.discovery import ( |
23 | 32 | DiscoveryResource,
|
24 | 33 | AsyncDiscoveryResource,
|
25 | 34 | DiscoveryResourceWithRawResponse,
|
26 | 35 | AsyncDiscoveryResourceWithRawResponse,
|
27 | 36 | DiscoveryResourceWithStreamingResponse,
|
28 | 37 | AsyncDiscoveryResourceWithStreamingResponse,
|
29 | 38 | )
|
30 |
| -from .operations import ( |
| 39 | +from .operations.operations import ( |
31 | 40 | OperationsResource,
|
32 | 41 | AsyncOperationsResource,
|
33 | 42 | OperationsResourceWithRawResponse,
|
34 | 43 | AsyncOperationsResourceWithRawResponse,
|
35 | 44 | OperationsResourceWithStreamingResponse,
|
36 | 45 | AsyncOperationsResourceWithStreamingResponse,
|
37 | 46 | )
|
38 |
| -from ..._resource import SyncAPIResource, AsyncAPIResource |
39 |
| -from .user_schemas import ( |
| 47 | +from .user_schemas.user_schemas import ( |
40 | 48 | UserSchemasResource,
|
41 | 49 | AsyncUserSchemasResource,
|
42 | 50 | UserSchemasResourceWithRawResponse,
|
43 | 51 | AsyncUserSchemasResourceWithRawResponse,
|
44 | 52 | UserSchemasResourceWithStreamingResponse,
|
45 | 53 | AsyncUserSchemasResourceWithStreamingResponse,
|
46 | 54 | )
|
47 |
| -from .configurations import ( |
48 |
| - ConfigurationsResource, |
49 |
| - AsyncConfigurationsResource, |
50 |
| - ConfigurationsResourceWithRawResponse, |
51 |
| - AsyncConfigurationsResourceWithRawResponse, |
52 |
| - ConfigurationsResourceWithStreamingResponse, |
53 |
| - AsyncConfigurationsResourceWithStreamingResponse, |
54 |
| -) |
55 |
| -from .settings.settings import SettingsResource, AsyncSettingsResource |
56 |
| -from .discovery.discovery import DiscoveryResource, AsyncDiscoveryResource |
57 |
| -from .expression_template import ( |
| 55 | +from .expression_template.expression_template import ( |
58 | 56 | ExpressionTemplateResource,
|
59 | 57 | AsyncExpressionTemplateResource,
|
60 | 58 | ExpressionTemplateResourceWithRawResponse,
|
61 | 59 | AsyncExpressionTemplateResourceWithRawResponse,
|
62 | 60 | ExpressionTemplateResourceWithStreamingResponse,
|
63 | 61 | AsyncExpressionTemplateResourceWithStreamingResponse,
|
64 | 62 | )
|
65 |
| -from .operations.operations import OperationsResource, AsyncOperationsResource |
66 |
| -from .user_schemas.user_schemas import UserSchemasResource, AsyncUserSchemasResource |
67 |
| -from .expression_template.expression_template import ExpressionTemplateResource, AsyncExpressionTemplateResource |
68 | 63 |
|
69 | 64 | __all__ = ["APIGatewayResource", "AsyncAPIGatewayResource"]
|
70 | 65 |
|
|
0 commit comments