Add bytes parameter to cat shards (#38079)

As described in Elasticsearch documentation - https://www.elastic.co/guide/en/elasticsearch/reference/current/cat-shards.html#cat-shards-query-params
This commit is contained in:
YonatanKiron 2019-09-04 03:25:47 +03:00 committed by Ron Buckton
parent d57f1b9a13
commit ae863e389d

View File

@ -9,6 +9,7 @@
// Simon Schick <https://github.com/SimonSchick>
// Paul Brabban <https://github.com/brabster>
// Budi Irawan <https://github.com/deerawan>
// Yonatan Kiron <https://github.com/YonatanKiron>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
@ -899,6 +900,7 @@ export interface CatSegmentsParams extends GenericParams {
export interface CatShardsParams extends CatCommonParams {
index?: NameList;
bytes?: CatBytes;
}
export interface CatSnapshotsParams extends GenericParams {