Migration from transport to rest

Could anyone help me to find corresponding rest API for this (prepare index with indexWriteAlias)???

protected void indexDoc(String indexWriteAlias) {
client.prepareIndex(indexWriteAlias, "rollover")
.setSource("{"foo": "bar"}", XContentType.JSON)
.setRefreshPolicy(WriteRequest.RefreshPolicy.IMMEDIATE)
.execute().actionGet();

}

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.