API generation

This commit is contained in:
delvedor
2020-07-03 08:44:01 +02:00
parent aa7d7b02ad
commit 8c4042d913
3 changed files with 12 additions and 4 deletions

View File

@ -12,11 +12,12 @@ function buildXpackInfo (opts) {
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
const acceptedQuerystring = [
'categories'
'categories',
'accept_enterprise'
]
const snakeCase = {
acceptEnterprise: 'accept_enterprise'
}
/**

View File

@ -2573,6 +2573,7 @@ export interface WatcherStop extends Generic {
export interface XpackInfo extends Generic {
categories?: string | string[];
accept_enterprise?: boolean;
}
export interface XpackUsage extends Generic {

View File

@ -2430,7 +2430,7 @@ client.indices.addBlock({
|`string \| string[]` - A comma separated list of indices to add a block to
|`block`
|`string` - The block to add (one of read, write, read_only, metadata, read_only_allow_delete)
|`string` - The block to add (one of read, write, read_only or metadata)
|`timeout`
|`string` - Explicit operation timeout
@ -10293,7 +10293,8 @@ link:{ref}/watcher-api-stop.html[Documentation] +
[source,ts]
----
client.xpack.info({
categories: string | string[]
categories: string | string[],
accept_enterprise: boolean
})
----
link:{ref}/info-api.html[Documentation] +
@ -10302,6 +10303,11 @@ link:{ref}/info-api.html[Documentation] +
|`categories`
|`string \| string[]` - Comma-separated list of info categories. Can be any of: build, license, features
|`accept_enterprise` or `acceptEnterprise`
|`boolean` - Supported for backwards compatibility with 7.x. If this param is used it must be set to true +
WARNING: This parameter has been deprecated.
|===
=== xpack.usage