|
52 | 52 | ConfigurationsResourceWithStreamingResponse,
|
53 | 53 | AsyncConfigurationsResourceWithStreamingResponse,
|
54 | 54 | )
|
55 |
| -from .schema_validationimport ( |
56 |
| -SchemaValidationResource, |
57 |
| -AsyncSchemaValidationResource, |
58 |
| -SchemaValidationResourceWithRawResponse, |
59 |
| -AsyncSchemaValidationResourceWithRawResponse, |
60 |
| -SchemaValidationResourceWithStreamingResponse, |
61 |
| -AsyncSchemaValidationResourceWithStreamingResponse, |
62 |
| -) |
63 | 55 | from .settings.settingsimportSettingsResource,AsyncSettingsResource
|
64 | 56 | from .discovery.discoveryimportDiscoveryResource,AsyncDiscoveryResource
|
65 | 57 | from .operations.operationsimportOperationsResource,AsyncOperationsResource
|
@@ -93,10 +85,6 @@ def settings(self) -> SettingsResource:
|
93 | 85 | defuser_schemas(self)->UserSchemasResource:
|
94 | 86 | returnUserSchemasResource(self._client)
|
95 | 87 |
|
96 |
| -@cached_property |
97 |
| -defschema_validation(self)->SchemaValidationResource: |
98 |
| -returnSchemaValidationResource(self._client) |
99 |
| - |
100 | 88 | @cached_property
|
101 | 89 | defwith_raw_response(self)->APIGatewayResourceWithRawResponse:
|
102 | 90 | returnAPIGatewayResourceWithRawResponse(self)
|
@@ -131,10 +119,6 @@ def settings(self) -> AsyncSettingsResource:
|
131 | 119 | defuser_schemas(self)->AsyncUserSchemasResource:
|
132 | 120 | returnAsyncUserSchemasResource(self._client)
|
133 | 121 |
|
134 |
| -@cached_property |
135 |
| -defschema_validation(self)->AsyncSchemaValidationResource: |
136 |
| -returnAsyncSchemaValidationResource(self._client) |
137 |
| - |
138 | 122 | @cached_property
|
139 | 123 | defwith_raw_response(self)->AsyncAPIGatewayResourceWithRawResponse:
|
140 | 124 | returnAsyncAPIGatewayResourceWithRawResponse(self)
|
@@ -172,10 +156,6 @@ def settings(self) -> SettingsResourceWithRawResponse:
|
172 | 156 | defuser_schemas(self)->UserSchemasResourceWithRawResponse:
|
173 | 157 | returnUserSchemasResourceWithRawResponse(self._api_gateway.user_schemas)
|
174 | 158 |
|
175 |
| -@cached_property |
176 |
| -defschema_validation(self)->SchemaValidationResourceWithRawResponse: |
177 |
| -returnSchemaValidationResourceWithRawResponse(self._api_gateway.schema_validation) |
178 |
| - |
179 | 159 |
|
180 | 160 | classAsyncAPIGatewayResourceWithRawResponse:
|
181 | 161 | def__init__(self,api_gateway:AsyncAPIGatewayResource)->None:
|
@@ -205,10 +185,6 @@ def settings(self) -> AsyncSettingsResourceWithRawResponse:
|
205 | 185 | defuser_schemas(self)->AsyncUserSchemasResourceWithRawResponse:
|
206 | 186 | returnAsyncUserSchemasResourceWithRawResponse(self._api_gateway.user_schemas)
|
207 | 187 |
|
208 |
| -@cached_property |
209 |
| -defschema_validation(self)->AsyncSchemaValidationResourceWithRawResponse: |
210 |
| -returnAsyncSchemaValidationResourceWithRawResponse(self._api_gateway.schema_validation) |
211 |
| - |
212 | 188 |
|
213 | 189 | classAPIGatewayResourceWithStreamingResponse:
|
214 | 190 | def__init__(self,api_gateway:APIGatewayResource)->None:
|
@@ -238,10 +214,6 @@ def settings(self) -> SettingsResourceWithStreamingResponse:
|
238 | 214 | defuser_schemas(self)->UserSchemasResourceWithStreamingResponse:
|
239 | 215 | returnUserSchemasResourceWithStreamingResponse(self._api_gateway.user_schemas)
|
240 | 216 |
|
241 |
| -@cached_property |
242 |
| -defschema_validation(self)->SchemaValidationResourceWithStreamingResponse: |
243 |
| -returnSchemaValidationResourceWithStreamingResponse(self._api_gateway.schema_validation) |
244 |
| - |
245 | 217 |
|
246 | 218 | classAsyncAPIGatewayResourceWithStreamingResponse:
|
247 | 219 | def__init__(self,api_gateway:AsyncAPIGatewayResource)->None:
|
@@ -270,7 +242,3 @@ def settings(self) -> AsyncSettingsResourceWithStreamingResponse:
|
270 | 242 | @cached_property
|
271 | 243 | defuser_schemas(self)->AsyncUserSchemasResourceWithStreamingResponse:
|
272 | 244 | returnAsyncUserSchemasResourceWithStreamingResponse(self._api_gateway.user_schemas)
|
273 |
| - |
274 |
| -@cached_property |
275 |
| -defschema_validation(self)->AsyncSchemaValidationResourceWithStreamingResponse: |
276 |
| -returnAsyncSchemaValidationResourceWithStreamingResponse(self._api_gateway.schema_validation) |