16 lines
354 B
Plaintext
16 lines
354 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: "test-index",
|
|
settings: {
|
|
number_of_shards: 1,
|
|
number_of_replicas: 1,
|
|
"index.lifecycle.name": "my_policy",
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|