Auto-generated code for 8.15 (#2363)

This commit is contained in:
Elastic Machine
2024-09-24 17:04:11 +02:00
committed by GitHub
parent 15a450eba4
commit a8927727b1
41 changed files with 349 additions and 79 deletions

View File

@ -0,0 +1,18 @@
// This file is autogenerated, DO NOT EDIT
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
[source, js]
----
const response = await client.reindex({
wait_for_completion: "false",
source: {
index: "test-data",
size: 50,
},
dest: {
index: "azure-openai-embeddings",
pipeline: "azure_openai_embeddings_pipeline",
},
});
console.log(response);
----