[api] regenerate

This commit is contained in:
spalger
2016-05-02 12:14:31 -07:00
parent cbed924673
commit aab28e4fe4

View File

@ -160,8 +160,15 @@ api.cat.prototype.allocation = ca({
options: [ options: [
'b', 'b',
'k', 'k',
'kb',
'm', 'm',
'g' 'mb',
'g',
'gb',
't',
'tb',
'p',
'pb'
] ]
}, },
local: { local: {
@ -272,8 +279,15 @@ api.cat.prototype.fielddata = ca({
options: [ options: [
'b', 'b',
'k', 'k',
'kb',
'm', 'm',
'g' 'mb',
'g',
'gb',
't',
'tb',
'p',
'pb'
] ]
}, },
local: { local: {
@ -664,8 +678,15 @@ api.cat.prototype.recovery = ca({
options: [ options: [
'b', 'b',
'k', 'k',
'kb',
'm', 'm',
'g' 'mb',
'g',
'gb',
't',
'tb',
'p',
'pb'
] ]
}, },
masterTimeout: { masterTimeout: {
@ -940,6 +961,7 @@ api.cat.prototype.tasks = ca({
* *
* @param {Object} params - An object with parameters used to carry out this action * @param {Object} params - An object with parameters used to carry out this action
* @param {String} params.format - a short version of the Accept header, e.g. json, yaml * @param {String} params.format - a short version of the Accept header, e.g. json, yaml
* @param {String} params.size - The multiplier in which to display values
* @param {Boolean} params.local - Return local information, do not retrieve the state from master node (default: false) * @param {Boolean} params.local - Return local information, do not retrieve the state from master node (default: false)
* @param {Date, Number} params.masterTimeout - Explicit operation timeout for connection to master node * @param {Date, Number} params.masterTimeout - Explicit operation timeout for connection to master node
* @param {String, String[], Boolean} params.h - Comma-separated list of column names to display * @param {String, String[], Boolean} params.h - Comma-separated list of column names to display
@ -952,6 +974,17 @@ api.cat.prototype.threadPool = ca({
format: { format: {
type: 'string' type: 'string'
}, },
size: {
type: 'enum',
options: [
'',
'k',
'm',
'g',
't',
'p'
]
},
local: { local: {
type: 'boolean' type: 'boolean'
}, },
@ -4249,7 +4282,7 @@ api.ingest.prototype.simulate = ca({
}, },
urls: [ urls: [
{ {
fmt: '/_ingest/pipeline/<%=id%>/_simulate/', fmt: '/_ingest/pipeline/<%=id%>/_simulate',
req: { req: {
id: { id: {
type: 'string' type: 'string'