mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
[RAM] Add new attribute snoozeEndTime to alert saved objects (#125992)
* Add snooze_end_time property * Switch property name to camelcase and add to types * Switch to strict_date_time * Remove number from types Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
parent
891b6cd83b
commit
568a5578fd
2 changed files with 5 additions and 0 deletions
|
@ -155,6 +155,10 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"snoozeEndTime": {
|
||||
"type": "date",
|
||||
"format": "strict_date_time"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -250,6 +250,7 @@ export interface RawRule extends SavedObjectAttributes {
|
|||
meta?: AlertMeta;
|
||||
executionStatus: RawRuleExecutionStatus;
|
||||
monitoring?: RuleMonitoring;
|
||||
snoozeEndTime?: string;
|
||||
}
|
||||
|
||||
export type AlertInfoParams = Pick<
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue