in lib/client.js [278:287]
createIndex(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('POST', projectName, path, {}, body, headers, options);
}