mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-07-01 02:43:45 -04:00
[DOCS] Update index docs to match changes in IndexResponse class
IndexResponse.id() -> IndexResponse.getId()
This commit is contained in:
parent
6976eaa2b5
commit
3f721fbb90
1 changed files with 4 additions and 4 deletions
|
@ -166,13 +166,13 @@ IndexResponse response = client.prepareIndex("twitter", "tweet")
|
|||
[source,java]
|
||||
--------------------------------------------------
|
||||
// Index name
|
||||
String _index = response.index();
|
||||
String _index = response.getIndex();
|
||||
// Type name
|
||||
String _type = response.type();
|
||||
String _type = response.getType();
|
||||
// Document ID (generated or not)
|
||||
String _id = response.id();
|
||||
String _id = response.getId();
|
||||
// Version (if it's the first time you index this document, you will get: 1)
|
||||
long _version = response.version();
|
||||
long _version = response.getVersion();
|
||||
--------------------------------------------------
|
||||
|
||||
If you use percolation while indexing, `IndexResponse` object will give
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue