35 lines
623 B
Plaintext
35 lines
623 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.indices.putTemplate({
|
|
name: 'template_1',
|
|
body: {
|
|
index_patterns: [
|
|
'te*',
|
|
'bar*'
|
|
],
|
|
settings: {
|
|
number_of_shards: 1
|
|
},
|
|
mappings: {
|
|
_source: {
|
|
enabled: false
|
|
},
|
|
properties: {
|
|
host_name: {
|
|
type: 'keyword'
|
|
},
|
|
created_at: {
|
|
type: 'date',
|
|
format: 'EEE MMM dd HH:mm:ss Z yyyy'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
console.log(response)
|
|
----
|
|
|