17 lines
376 B
Plaintext
17 lines
376 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: "POST",
|
|
path: "/_snapshot/my_repository/_analyze",
|
|
querystring: {
|
|
blob_count: "10",
|
|
max_blob_size: "1mb",
|
|
timeout: "120s",
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|