File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -2884,6 +2884,7 @@ components:
28842884 - ci_pipelines
28852885 - incident_analytics
28862886 - product_analytics
2887+ - on_call_events
28872888 example: logs
28882889 type: string
28892890 x-enum-varnames:
@@ -2899,6 +2900,7 @@ components:
28992900 - CI_PIPELINES
29002901 - INCIDENT_ANALYTICS
29012902 - PRODUCT_ANALYTICS
2903+ - ON_CALL_EVENTS
29022904 FormulaAndFunctionMetricAggregation:
29032905 description: The aggregation methods available for metrics queries.
29042906 enum:
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ pub enum FormulaAndFunctionEventsDataSource {
1919 CI_PIPELINES ,
2020 INCIDENT_ANALYTICS ,
2121 PRODUCT_ANALYTICS ,
22+ ON_CALL_EVENTS ,
2223 UnparsedObject ( crate :: datadog:: UnparsedObject ) ,
2324}
2425
@@ -37,6 +38,7 @@ impl ToString for FormulaAndFunctionEventsDataSource {
3738 Self :: CI_PIPELINES => String :: from ( "ci_pipelines" ) ,
3839 Self :: INCIDENT_ANALYTICS => String :: from ( "incident_analytics" ) ,
3940 Self :: PRODUCT_ANALYTICS => String :: from ( "product_analytics" ) ,
41+ Self :: ON_CALL_EVENTS => String :: from ( "on_call_events" ) ,
4042 Self :: UnparsedObject ( v) => v. value . to_string ( ) ,
4143 }
4244 }
@@ -73,6 +75,7 @@ impl<'de> Deserialize<'de> for FormulaAndFunctionEventsDataSource {
7375 "ci_pipelines" => Self :: CI_PIPELINES ,
7476 "incident_analytics" => Self :: INCIDENT_ANALYTICS ,
7577 "product_analytics" => Self :: PRODUCT_ANALYTICS ,
78+ "on_call_events" => Self :: ON_CALL_EVENTS ,
7679 _ => Self :: UnparsedObject ( crate :: datadog:: UnparsedObject {
7780 value : serde_json:: Value :: String ( s. into ( ) ) ,
7881 } ) ,
You can’t perform that action at this time.
0 commit comments