API generation

This commit is contained in:
delvedor
2020-12-09 11:39:40 +01:00
parent 1398086f76
commit 9fea1aedc0
6 changed files with 115 additions and 5 deletions

View File

@ -1155,6 +1155,10 @@ export interface IndicesOpen extends Generic {
wait_for_active_shards?: string;
}
export interface IndicesPromoteDataStream extends Generic {
name: string;
}
export interface IndicesPutAlias<T = RequestBody> extends Generic {
index: string | string[];
name: string;
@ -2585,6 +2589,10 @@ export interface WatcherPutWatch<T = RequestBody> extends Generic {
body?: T;
}
export interface WatcherQueryWatches<T = RequestBody> extends Generic {
body?: T;
}
export interface WatcherStart extends Generic {
}