15 lines
323 B
Plaintext
15 lines
323 B
Plaintext
// 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.indices.createFrom({
|
|
source: "my-index",
|
|
dest: "my-new-index",
|
|
create_from: {
|
|
remove_index_blocks: false,
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|