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