Files
elasticsearch-js/docs/doc_examples/afe30f159937b38d74c869570cfcd369.asciidoc
2024-07-29 17:10:05 -05:00

19 lines
427 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.close({
index: "index_1",
});
console.log(response);
const response1 = await client.snapshot.restore({
repository: "my_repository",
snapshot: "snapshot_2",
wait_for_completion: "true",
indices: "index_1",
});
console.log(response1);
----