Files
elasticsearch-js/docs/doc_examples/981b331db1404b39c1a612a135e4e76d.asciidoc
2024-08-19 10:52:15 -05:00

17 lines
345 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.ingest.putGeoipDatabase({
id: "my-database-id",
body: {
name: "GeoIP2-Domain",
maxmind: {
account_id: "1025402",
},
},
});
console.log(response);
----