in lib/client.js [289:298]
updateIndex(projectName, logstoreName, index, options) {
const body = Buffer.from(JSON.stringify(index));
const headers = {
'x-log-bodyrawsize': body.byteLength
};
const path = `/logstores/${logstoreName}/index`;
return this._request('PUT', projectName, path, {}, body, headers, options);
}