// 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/_scheduling", body: { scheduling: { full: { enabled: true, interval: "0 10 0 * * ?", }, }, }, }); console.log(response); ----