-
Notifications
You must be signed in to change notification settings - Fork 48
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] Make raw JSON REST requests to OpenSearch #403
Comments
This exists in the low-level OpenSearch.Net client, but there's no high-level DSL wrapper. Example of its use can be seen here: #220 (comment) |
await client.LowLevel.DoRequestAsync<VoidResponse>(
HttpMethod.DELETE,
"_search/point_in_time",
CancellationToken.None,
PostData.Serializable(new
{
pit_id = pitId
})); Nice. Documenting it would be a great start! |
Hi @Xtansia, I'd like to request assignment on this issue |
Does it make sense to alias |
A direct alias of I have some ideas for a high-level DSL for the http methods, that I'm going to look into feasibility for. |
Is your feature request related to a problem?
Coming from opensearch-project/opensearch-clients#62, add support for making raw JSON requests.
What solution would you like?
client.get
andclient.post
.The text was updated successfully, but these errors were encountered: