0cc991e3f7f8511a34730e154b3c5edc.asciidoc 266 B

12345678910111213141516
  1. // docs/reindex.asciidoc:25
  2. [source, php]
  3. ----
  4. $params = [
  5. 'body' => [
  6. 'source' => [
  7. 'index' => 'twitter',
  8. ],
  9. 'dest' => [
  10. 'index' => 'new_twitter',
  11. ],
  12. ],
  13. ];
  14. $response = $client->reindex($params);
  15. ----