29 lines
563 B
Plaintext
29 lines
563 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",
|
|
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);
|
|
----
|