[apis] regenerate

This commit is contained in:
spalger
2018-03-28 13:59:32 -07:00
parent a49f7adb78
commit bd064aff6b
5 changed files with 9 additions and 24 deletions

View File

@ -1208,7 +1208,8 @@ api.clearScroll = ca({
],
paramAsBody: {
param: 'scrollId',
body: 'scroll_id'
body: 'scroll_id',
castToArray: true
},
method: 'DELETE'
});

View File

@ -1208,7 +1208,8 @@ api.clearScroll = ca({
],
paramAsBody: {
param: 'scrollId',
body: 'scroll_id'
body: 'scroll_id',
castToArray: true
},
method: 'DELETE'
});

View File

@ -1208,7 +1208,8 @@ api.clearScroll = ca({
],
paramAsBody: {
param: 'scrollId',
body: 'scroll_id'
body: 'scroll_id',
castToArray: true
},
method: 'DELETE'
});

View File

@ -2734,15 +2734,14 @@ api.indices.prototype.analyze = ca({
* Perform a [indices.clearCache](https://www.elastic.co/guide/en/elasticsearch/reference/6.x/indices-clearcache.html) request
*
* @param {Object} params - An object with parameters used to carry out this action
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data. This is deprecated. Prefer `fielddata`.
* @param {<<api-param-type-boolean,`Boolean`>>} params.fielddata - Clear field data
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `field_data` parameter (default: all)
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
* @param {<<api-param-type-boolean,`Boolean`>>} params.query - Clear query caches
* @param {<<api-param-type-boolean,`Boolean`>>} params.ignoreUnavailable - Whether specified concrete indices should be ignored when unavailable (missing or closed)
* @param {<<api-param-type-boolean,`Boolean`>>} params.allowNoIndices - Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
* @param {<<api-param-type-string,`String`>>} [params.expandWildcards=open] - Whether to expand wildcard expression to concrete indices that are open, closed or both.
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.index - A comma-separated list of index name to limit the operation
* @param {<<api-param-type-boolean,`Boolean`>>} params.recycler - Clear the recycler cache
* @param {<<api-param-type-boolean,`Boolean`>>} params.requestCache - Clear request cache
* @param {<<api-param-type-boolean,`Boolean`>>} params.request - Clear request cache
*/
@ -2783,9 +2782,6 @@ api.indices.prototype.clearCache = ca({
index: {
type: 'list'
},
recycler: {
type: 'boolean'
},
requestCache: {
type: 'boolean',
name: 'request_cache'

View File

@ -2734,24 +2734,17 @@ api.indices.prototype.analyze = ca({
* Perform a [indices.clearCache](https://www.elastic.co/guide/en/elasticsearch/reference/master/indices-clearcache.html) request
*
* @param {Object} params - An object with parameters used to carry out this action
* @param {<<api-param-type-boolean,`Boolean`>>} params.fieldData - Clear field data
* @param {<<api-param-type-boolean,`Boolean`>>} params.fielddata - Clear field data
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `field_data` parameter (default: all)
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.fields - A comma-separated list of fields to clear when using the `fielddata` parameter (default: all)
* @param {<<api-param-type-boolean,`Boolean`>>} params.query - Clear query caches
* @param {<<api-param-type-boolean,`Boolean`>>} params.ignoreUnavailable - Whether specified concrete indices should be ignored when unavailable (missing or closed)
* @param {<<api-param-type-boolean,`Boolean`>>} params.allowNoIndices - Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
* @param {<<api-param-type-string,`String`>>} [params.expandWildcards=open] - Whether to expand wildcard expression to concrete indices that are open, closed or both.
* @param {<<api-param-type-string,`String`>>, <<api-param-type-string-array,`String[]`>>, <<api-param-type-boolean,`Boolean`>>} params.index - A comma-separated list of index name to limit the operation
* @param {<<api-param-type-boolean,`Boolean`>>} params.recycler - Clear the recycler cache
* @param {<<api-param-type-boolean,`Boolean`>>} params.requestCache - Clear request cache
* @param {<<api-param-type-boolean,`Boolean`>>} params.request - Clear request cache
*/
api.indices.prototype.clearCache = ca({
params: {
fieldData: {
type: 'boolean',
name: 'field_data'
},
fielddata: {
type: 'boolean'
},
@ -2783,13 +2776,6 @@ api.indices.prototype.clearCache = ca({
index: {
type: 'list'
},
recycler: {
type: 'boolean'
},
requestCache: {
type: 'boolean',
name: 'request_cache'
},
request: {
type: 'boolean'
}