// 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.indices.putTemplate({ name: 'template_1', body: { index_patterns: [ '*' ], order: 0, settings: { number_of_shards: 1 }, mappings: { _source: { enabled: false } } } }) console.log(response0) const response1 = await client.indices.putTemplate({ name: 'template_2', body: { index_patterns: [ 'te*' ], order: 1, settings: { number_of_shards: 1 }, mappings: { _source: { enabled: true } } } }) console.log(response1) ----