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

17 lines
369 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.watcher.ackWatch({
watch_id: "my_watch",
action_id: "test_index",
});
console.log(response);
const response1 = await client.watcher.getWatch({
id: "my_watch",
});
console.log(response1);
----