38 lines
605 B
Plaintext
38 lines
605 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: "my_watch",
|
|
trigger: {
|
|
schedule: {
|
|
yearly: {
|
|
in: "february",
|
|
on: 29,
|
|
at: "noon",
|
|
},
|
|
},
|
|
},
|
|
input: {
|
|
simple: {
|
|
payload: {
|
|
send: "yes",
|
|
},
|
|
},
|
|
},
|
|
condition: {
|
|
always: {},
|
|
},
|
|
actions: {
|
|
test_index: {
|
|
throttle_period: "15m",
|
|
index: {
|
|
index: "test",
|
|
},
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|