0bbd30b9be3e54ff3028b9f4459634d2.asciidoc 405 B

1234567891011121314151617181920
  1. // indices/put-mapping.asciidoc:171
  2. [source, php]
  3. ----
  4. $params = [
  5. 'index' => 'my_index',
  6. 'body' => [
  7. 'properties' => [
  8. 'name' => [
  9. 'properties' => [
  10. 'last' => [
  11. 'type' => 'text',
  12. ],
  13. ],
  14. ],
  15. ],
  16. ],
  17. ];
  18. $response = $client->indices()->putMapping($params);
  19. ----