Skip to content

Commit fa07de3

Browse files
authored
Master API generation (#922)
1 parent dd8491d commit fa07de3

File tree

120 files changed

+545
-117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+545
-117
lines changed

api/api/bulk.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function buildBulk (opts) {
1111
// eslint-disable-next-line no-unused-vars
1212
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
1313
/**
14-
* Perform a [bulk](http://www.elastic.co/guide/en/elasticsearch/reference/master/docs-bulk.html) request
14+
* Perform a [bulk](https://www.elastic.co/guide/en/elasticsearch/reference/master/docs-bulk.html) request
1515
*
1616
* @param {string} index - Default index for items which don't provide one
1717
* @param {string} type - Default document type for items which don't provide one

api/api/cat.aliases.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function buildCatAliases (opts) {
1111
// eslint-disable-next-line no-unused-vars
1212
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
1313
/**
14-
* Perform a [cat.aliases](http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-alias.html) request
14+
* Perform a [cat.aliases](https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-alias.html) request
1515
*
1616
* @param {list} name - A comma-separated list of alias names to return
1717
* @param {string} format - a short version of the Accept header, e.g. json, yaml

api/api/cat.allocation.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function buildCatAllocation (opts) {
1111
// eslint-disable-next-line no-unused-vars
1212
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
1313
/**
14-
* Perform a [cat.allocation](http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-allocation.html) request
14+
* Perform a [cat.allocation](https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-allocation.html) request
1515
*
1616
* @param {list} node_id - A comma-separated list of node IDs or names to limit the returned information
1717
* @param {string} format - a short version of the Accept header, e.g. json, yaml

api/api/cat.count.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function buildCatCount (opts) {
1111
// eslint-disable-next-line no-unused-vars
1212
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
1313
/**
14-
* Perform a [cat.count](http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-count.html) request
14+
* Perform a [cat.count](https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-count.html) request
1515
*
1616
* @param {list} index - A comma-separated list of index names to limit the returned information
1717
* @param {string} format - a short version of the Accept header, e.g. json, yaml

api/api/cat.fielddata.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function buildCatFielddata (opts) {
1111
// eslint-disable-next-line no-unused-vars
1212
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
1313
/**
14-
* Perform a [cat.fielddata](http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-fielddata.html) request
14+
* Perform a [cat.fielddata](https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-fielddata.html) request
1515
*
1616
* @param {list} fields - A comma-separated list of fields to return the fielddata size
1717
* @param {string} format - a short version of the Accept header, e.g. json, yaml

api/api/cat.health.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function buildCatHealth (opts) {
1111
// eslint-disable-next-line no-unused-vars
1212
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
1313
/**
14-
* Perform a [cat.health](http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-health.html) request
14+
* Perform a [cat.health](https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-health.html) request
1515
*
1616
* @param {string} format - a short version of the Accept header, e.g. json, yaml
1717
* @param {boolean} local - Return local information, do not retrieve the state from master node (default: false)

api/api/cat.help.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function buildCatHelp (opts) {
1111
// eslint-disable-next-line no-unused-vars
1212
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
1313
/**
14-
* Perform a [cat.help](http://www.elastic.co/guide/en/elasticsearch/reference/master/cat.html) request
14+
* Perform a [cat.help](https://www.elastic.co/guide/en/elasticsearch/reference/master/cat.html) request
1515
*
1616
* @param {boolean} help - Return help information
1717
* @param {list} s - Comma-separated list of column names or column aliases to sort by

api/api/cat.indices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function buildCatIndices (opts) {
1111
// eslint-disable-next-line no-unused-vars
1212
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
1313
/**
14-
* Perform a [cat.indices](http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-indices.html) request
14+
* Perform a [cat.indices](https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-indices.html) request
1515
*
1616
* @param {list} index - A comma-separated list of index names to limit the returned information
1717
* @param {string} format - a short version of the Accept header, e.g. json, yaml

api/api/cat.master.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function buildCatMaster (opts) {
1111
// eslint-disable-next-line no-unused-vars
1212
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
1313
/**
14-
* Perform a [cat.master](http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-master.html) request
14+
* Perform a [cat.master](https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-master.html) request
1515
*
1616
* @param {string} format - a short version of the Accept header, e.g. json, yaml
1717
* @param {boolean} local - Return local information, do not retrieve the state from master node (default: false)

api/api/cat.nodeattrs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function buildCatNodeattrs (opts) {
1111
// eslint-disable-next-line no-unused-vars
1212
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
1313
/**
14-
* Perform a [cat.nodeattrs](http://www.elastic.co/guide/en/elasticsearch/reference/master/cat-nodeattrs.html) request
14+
* Perform a [cat.nodeattrs](https://www.elastic.co/guide/en/elasticsearch/reference/master/cat-nodeattrs.html) request
1515
*
1616
* @param {string} format - a short version of the Accept header, e.g. json, yaml
1717
* @param {boolean} local - Return local information, do not retrieve the state from master node (default: false)

0 commit comments

Comments
 (0)