29 lines
577 B
Plaintext
29 lines
577 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.updateFiltering({
|
|
connector_id: "my-g-drive-connector",
|
|
rules: [
|
|
{
|
|
field: "file_extension",
|
|
id: "exclude-txt-files",
|
|
order: 0,
|
|
policy: "exclude",
|
|
rule: "equals",
|
|
value: "txt",
|
|
},
|
|
{
|
|
field: "_",
|
|
id: "DEFAULT",
|
|
order: 1,
|
|
policy: "include",
|
|
rule: "regex",
|
|
value: ".*",
|
|
},
|
|
],
|
|
});
|
|
console.log(response);
|
|
----
|