44 lines
868 B
Plaintext
44 lines
868 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.create({
|
|
index: "my-index-000001",
|
|
mappings: {
|
|
dynamic_templates: [
|
|
{
|
|
named_analyzers: {
|
|
match_mapping_type: "string",
|
|
match: "*",
|
|
mapping: {
|
|
type: "text",
|
|
analyzer: "{name}",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
no_doc_values: {
|
|
match_mapping_type: "*",
|
|
mapping: {
|
|
type: "{dynamic_type}",
|
|
doc_values: false,
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
});
|
|
console.log(response);
|
|
|
|
const response1 = await client.index({
|
|
index: "my-index-000001",
|
|
id: 1,
|
|
document: {
|
|
english: "Some English text",
|
|
count: 5,
|
|
},
|
|
});
|
|
console.log(response1);
|
|
----
|