19 lines
495 B
Plaintext
19 lines
495 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",
|
|
body: {
|
|
index_name: "search-google-drive",
|
|
name: "My Connector",
|
|
description: "My Connector to sync data to Elastic index from Google Drive",
|
|
service_type: "google_drive",
|
|
language: "english",
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|