Remove obsolete parameters from analyze rest spec (#31795)

This commit also fixes a typo in the analyze high-level client
documentation.
This commit is contained in:
Alan Woodward 2018-07-06 09:05:34 +01:00 committed by GitHub
parent 573613e7ca
commit d3a8094d35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 11 deletions

View File

@ -56,7 +56,7 @@ You can analyze text using the mappings for a particular field in an index:
include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[analyze-field-request] include-tagged::{doc-tests}/IndicesClientDocumentationIT.java[analyze-field-request]
--------------------------------------------------- ---------------------------------------------------
==== Optional arguemnts ==== Optional arguments
The following arguments can also optionally be provided: The following arguments can also optionally be provided:
["source","java",subs="attributes,callouts,macros"] ["source","java",subs="attributes,callouts,macros"]

View File

@ -15,16 +15,6 @@
"index": { "index": {
"type" : "string", "type" : "string",
"description" : "The name of the index to scope the operation" "description" : "The name of the index to scope the operation"
},
"prefer_local": {
"type" : "boolean",
"description" : "With `true`, specify that a local shard should be used if available, with `false`, use a random shard (default: true)"
},
"format": {
"type": "enum",
"options" : ["detailed","text"],
"default": "detailed",
"description": "Format of the output"
} }
} }
}, },