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

36 lines
642 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*"],
order: 0,
settings: {
number_of_shards: 1,
},
mappings: {
_source: {
enabled: false,
},
},
});
console.log(response);
const response1 = await client.indices.putTemplate({
name: "template_2",
index_patterns: ["tes*"],
order: 1,
settings: {
number_of_shards: 1,
},
mappings: {
_source: {
enabled: true,
},
},
});
console.log(response1);
----