20 lines
452 B
Plaintext
20 lines
452 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.connector.updateConfiguration({
|
|
connector_id: "my-connector-id",
|
|
values: {
|
|
host: "127.0.0.1",
|
|
port: 5432,
|
|
username: "myuser",
|
|
password: "mypassword",
|
|
database: "chinook",
|
|
schema: "public",
|
|
tables: "album,artist",
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|