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

28 lines
451 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.putWatch({
id: "test_watch",
trigger: {
schedule: {
hourly: {
minute: [0, 5],
},
},
},
input: {
simple: {
payload: {
send: "yes",
},
},
},
condition: {
always: {},
},
});
console.log(response);
----