19 lines
427 B
Plaintext
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);
|
|
----
|