Skip to content

Commit

Permalink
[ML] Adding daily_model_snapshot_retention_after_days to types and sc…
Browse files Browse the repository at this point in the history
…hemas (#65417) (#65433)
  • Loading branch information
jgowdyelastic authored May 6, 2020
1 parent f2cb92c commit fcb8ad2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export interface Job {
groups: string[];
model_plot_config?: ModelPlotConfig;
model_snapshot_retention_days?: number;
daily_model_snapshot_retention_after_days?: number;
renormalization_window_days?: number;
results_index_name?: string;
results_retention_days?: number;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ export const anomalyDetectionJobSchema = {
model_snapshot_id: schema.maybe(schema.string()),
model_snapshot_min_version: schema.maybe(schema.string()),
model_snapshot_retention_days: schema.maybe(schema.number()),
daily_model_snapshot_retention_after_days: schema.maybe(schema.number()),
renormalization_window_days: schema.maybe(schema.number()),
results_index_name: schema.maybe(schema.string()),
results_retention_days: schema.maybe(schema.number()),
Expand Down

0 comments on commit fcb8ad2

Please sign in to comment.