API generation

This commit is contained in:
delvedor
2020-03-04 09:19:06 +01:00
parent 32f3fef14f
commit 6d50c9fa30
7 changed files with 62 additions and 10 deletions

View File

@ -1893,6 +1893,10 @@ export interface MlPutDataFrameAnalytics<T = any> extends Generic {
export interface MlPutDatafeed<T = any> extends Generic {
datafeed_id: string;
ignore_unavailable?: boolean;
allow_no_indices?: boolean;
ignore_throttled?: boolean;
expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all';
body: T;
}
@ -1954,6 +1958,10 @@ export interface MlStopDatafeed extends Generic {
export interface MlUpdateDatafeed<T = any> extends Generic {
datafeed_id: string;
ignore_unavailable?: boolean;
allow_no_indices?: boolean;
ignore_throttled?: boolean;
expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all';
body: T;
}