Files
elasticsearch-js/docs/doc_examples/804a97ff4d0613e6568e4efb19c52021.asciidoc
Tomas Della Vedova 1e1252383d Added doc examples (#1011)
* Added generate-docs-examples script

* Added doc_examples folder wth the initial examples
2019-11-29 14:40:05 +01:00

34 lines
649 B
Plaintext

// This file is autogenerated, DO NOT EDIT
// Use `node scripts/generate-docs-examples.js` to generate the docs examples
[source, js]
----
const response0 = await client.cluster.putSettings({
body: {
persistent: {
'action.auto_create_index': 'twitter,index10,-index1*,+ind*'
}
}
})
console.log(response0)
const response1 = await client.cluster.putSettings({
body: {
persistent: {
'action.auto_create_index': 'false'
}
}
})
console.log(response1)
const response2 = await client.cluster.putSettings({
body: {
persistent: {
'action.auto_create_index': 'true'
}
}
})
console.log(response2)
----