You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Coming from #830, the OpenSearch API spec has added ISM in opensearch-project/opensearch-api-specification#568. However opensearch-py already has index_management (different name) and the auto-generated implementation is not compatible because it re-orders body and index parameters.
What solution would you like?
Add support for reordering parameters in api generator and swap index and body in the case of ISM for backwards-compat.
Deprecate IndexManagementClient and implement it by inheriting auto-generated IsmClient instead.
What alternatives have you considered?
A breaking change where we delete IndexManagementClient and use the generated IsmClient.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem?
Coming from #830, the OpenSearch API spec has added ISM in opensearch-project/opensearch-api-specification#568. However opensearch-py already has
index_management
(different name) and the auto-generated implementation is not compatible because it re-ordersbody
andindex
parameters.What solution would you like?
IndexManagementClient
and implement it by inheriting auto-generatedIsmClient
instead.What alternatives have you considered?
A breaking change where we delete
IndexManagementClient
and use the generatedIsmClient
.The text was updated successfully, but these errors were encountered: