18 lines
431 B
Plaintext
18 lines
431 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-spo-connector",
|
|
values: {
|
|
tenant_id: "my-tenant-id",
|
|
tenant_name: "my-sharepoint-site",
|
|
client_id: "foo",
|
|
secret_value: "bar",
|
|
site_collections: "*",
|
|
},
|
|
});
|
|
console.log(response);
|
|
----
|