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

23 lines
474 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.executeWatch({
id: "my_watch",
trigger_data: {
triggered_time: "now",
scheduled_time: "now",
},
alternative_input: {
foo: "bar",
},
ignore_condition: true,
action_modes: {
"my-action": "force_simulate",
},
record_execution: true,
});
console.log(response);
----