20 lines
457 B
Plaintext
20 lines
457 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: "/_connector/my-connector/_pipeline",
|
|
body: {
|
|
pipeline: {
|
|
extract_binary_content: true,
|
|
name: "my-connector-pipeline",
|
|
reduce_whitespace: true,
|
|
run_ml_inference: true,
|
|
},
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|