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

22 lines
428 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.putMapping({
index: "my-data-stream",
write_index_only: "true",
properties: {
host: {
properties: {
ip: {
type: "ip",
ignore_malformed: true,
},
},
},
},
});
console.log(response);
----