Files
elasticsearch-js/docs/doc_examples/d4df39f72d3a3b80cd4042f6a21c3f19.asciidoc
2024-12-02 12:10:33 -06:00

16 lines
356 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-2",
body: {
name: "standard_location",
ipinfo: {},
},
});
console.log(response);
----