Files
elasticsearch-js/docs/doc_examples/91e106a2affbc8df32cd940684a779ed.asciidoc
2024-12-05 13:28:38 -06:00

18 lines
387 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.transport.request({
method: "PUT",
path: "/_ingest/ip_location/database/my-database-1",
body: {
name: "GeoIP2-Domain",
maxmind: {
account_id: "1234567",
},
},
});
console.log(response);
----